From 97504f7b0c3b14e2fa76966cede260e8a5e00e25 Mon Sep 17 00:00:00 2001 From: Foteini Giannaropoulou Date: Wed, 3 Jul 2024 15:23:03 +0300 Subject: [PATCH 001/254] Jetpack Sync: Switch 'jetpack_connection_active_plugins' to a callable (#38137) * Jetpack Sync: Switch 'jetpack_connection_active_plugins' to a callable --- projects/packages/sync/README.md | 2 +- ...jetpack_connection_active_plugins-callable | 5 ++ .../packages/sync/src/class-data-settings.php | 22 +++--- projects/packages/sync/src/class-defaults.php | 64 +++++++-------- .../packages/sync/src/class-functions.php | 12 +++ .../sync/src/class-package-version.php | 2 +- .../tests/php/data-test-data-settings.php | 74 +++++++++-------- ...jetpack_connection_active_plugins-callable | 5 ++ .../test_class.jetpack-sync-callables.php | 79 ++++++++++--------- .../sync/test_class.jetpack-sync-options.php | 1 - 10 files changed, 143 insertions(+), 123 deletions(-) create mode 100644 projects/packages/sync/changelog/update-sync-make-jetpack_connection_active_plugins-callable create mode 100644 projects/plugins/jetpack/changelog/update-sync-make-jetpack_connection_active_plugins-callable diff --git a/projects/packages/sync/README.md b/projects/packages/sync/README.md index de6e861a79239..a5cfdd57b870c 100644 --- a/projects/packages/sync/README.md +++ b/projects/packages/sync/README.md @@ -91,7 +91,6 @@ It's important to note that we consider a list of certain options required for S - `jetpack_sync_settings_post_types_blacklist`, // Sync related option - `jetpack_sync_settings_taxonomies_blacklist`, // Sync related option - `jetpack_sync_settings_dedicated_sync_enabled`, // Sync related option -- `jetpack_connection_active_plugins`, // Connection related option - `blog_charset`, // Generic site option - `blog_public`, // Generic site option - `blogdescription`, // Generic site option @@ -143,6 +142,7 @@ It's important to note that we consider a list of certain callables required for - `wp_get_environment_type` - `wp_max_upload_size` - `wp_version` +- `jetpack_connection_active_plugins` // Connection related callable Passing a list of callables will result in syncing those callables plus the required ones. diff --git a/projects/packages/sync/changelog/update-sync-make-jetpack_connection_active_plugins-callable b/projects/packages/sync/changelog/update-sync-make-jetpack_connection_active_plugins-callable new file mode 100644 index 0000000000000..5f495338d21d1 --- /dev/null +++ b/projects/packages/sync/changelog/update-sync-make-jetpack_connection_active_plugins-callable @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Jetpack Sync: Switch 'jetpack_connection_active_plugins' to a callable + + diff --git a/projects/packages/sync/src/class-data-settings.php b/projects/packages/sync/src/class-data-settings.php index 2ce2cb6e674f7..965f64a33e308 100644 --- a/projects/packages/sync/src/class-data-settings.php +++ b/projects/packages/sync/src/class-data-settings.php @@ -24,16 +24,17 @@ class Data_Settings { 'Automattic\\Jetpack\\Sync\\Modules\\Updates', ), 'jetpack_sync_callable_whitelist' => array( - 'site_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'site_url' ), - 'home_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'home_url' ), - 'get_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_plugins' ), - 'get_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_themes' ), - 'paused_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_plugins' ), - 'paused_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_themes' ), - 'timezone' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_timezone' ), - 'wp_get_environment_type' => 'wp_get_environment_type', - 'wp_max_upload_size' => 'wp_max_upload_size', - 'wp_version' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'wp_version' ), + 'site_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'site_url' ), + 'home_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'home_url' ), + 'get_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_plugins' ), + 'get_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_themes' ), + 'jetpack_connection_active_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_jetpack_connection_active_plugins' ), + 'paused_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_plugins' ), + 'paused_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_themes' ), + 'timezone' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_timezone' ), + 'wp_get_environment_type' => 'wp_get_environment_type', + 'wp_max_upload_size' => 'wp_max_upload_size', + 'wp_version' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'wp_version' ), ), 'jetpack_sync_constants_whitelist' => array( 'ABSPATH', @@ -73,7 +74,6 @@ class Data_Settings { /** * Connection related options */ - 'jetpack_connection_active_plugins', 'jetpack_package_versions', /** * Generic site options diff --git a/projects/packages/sync/src/class-defaults.php b/projects/packages/sync/src/class-defaults.php index dbe710a11bb38..a435a05283a4d 100644 --- a/projects/packages/sync/src/class-defaults.php +++ b/projects/packages/sync/src/class-defaults.php @@ -78,7 +78,6 @@ class Defaults { 'jetpack_available_modules', 'jetpack_comment_form_color_scheme', 'jetpack_comment_likes_enabled', - 'jetpack_connection_active_plugins', 'jetpack_excluded_extensions', 'jetpack_mailchimp', 'jetpack_options', @@ -317,37 +316,38 @@ public static function get_constants_whitelist() { * @var array Default whitelist of callables. */ public static $default_callable_whitelist = array( - 'get_loaded_extensions' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_loaded_extensions' ), - 'get_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_plugins' ), - 'get_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_themes' ), - 'get_plugins_action_links' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_plugins_action_links' ), - 'has_file_system_write_access' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'file_system_write_access' ), - 'home_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'home_url' ), - 'hosting_provider' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_hosting_provider' ), - 'is_fse_theme' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_is_fse_theme' ), - 'is_main_network' => array( __CLASS__, 'is_multi_network' ), - 'is_multi_site' => 'is_multisite', - 'is_version_controlled' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'is_version_controlled' ), - 'locale' => 'get_locale', - 'main_network_site' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'main_network_site_url' ), - 'main_network_site_wpcom_id' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'main_network_site_wpcom_id' ), - 'paused_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_plugins' ), - 'paused_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_themes' ), - 'post_type_features' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_post_type_features' ), - 'post_types' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_post_types' ), - 'rest_api_allowed_post_types' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'rest_api_allowed_post_types' ), - 'rest_api_allowed_public_metadata' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'rest_api_allowed_public_metadata' ), - 'roles' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'roles' ), - 'shortcodes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_shortcodes' ), - 'site_icon_url' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'site_icon_url' ), - 'site_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'site_url' ), - 'taxonomies' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_taxonomies' ), - 'theme_support' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_theme_support' ), - 'timezone' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_timezone' ), - 'wp_get_environment_type' => 'wp_get_environment_type', - 'wp_max_upload_size' => 'wp_max_upload_size', - 'wp_version' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'wp_version' ), - 'active_modules' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_active_modules' ), + 'get_loaded_extensions' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_loaded_extensions' ), + 'get_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_plugins' ), + 'get_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_themes' ), + 'get_plugins_action_links' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_plugins_action_links' ), + 'has_file_system_write_access' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'file_system_write_access' ), + 'home_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'home_url' ), + 'hosting_provider' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_hosting_provider' ), + 'is_fse_theme' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_is_fse_theme' ), + 'is_main_network' => array( __CLASS__, 'is_multi_network' ), + 'is_multi_site' => 'is_multisite', + 'is_version_controlled' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'is_version_controlled' ), + 'locale' => 'get_locale', + 'main_network_site' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'main_network_site_url' ), + 'main_network_site_wpcom_id' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'main_network_site_wpcom_id' ), + 'paused_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_plugins' ), + 'paused_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_themes' ), + 'post_type_features' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_post_type_features' ), + 'post_types' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_post_types' ), + 'rest_api_allowed_post_types' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'rest_api_allowed_post_types' ), + 'rest_api_allowed_public_metadata' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'rest_api_allowed_public_metadata' ), + 'roles' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'roles' ), + 'shortcodes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_shortcodes' ), + 'site_icon_url' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'site_icon_url' ), + 'site_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'site_url' ), + 'taxonomies' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_taxonomies' ), + 'theme_support' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_theme_support' ), + 'timezone' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_timezone' ), + 'wp_get_environment_type' => 'wp_get_environment_type', + 'wp_max_upload_size' => 'wp_max_upload_size', + 'wp_version' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'wp_version' ), + 'active_modules' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_active_modules' ), + 'jetpack_connection_active_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_jetpack_connection_active_plugins' ), ); /** diff --git a/projects/packages/sync/src/class-functions.php b/projects/packages/sync/src/class-functions.php index 3e2e5a5e62659..f2df72f7bb5aa 100644 --- a/projects/packages/sync/src/class-functions.php +++ b/projects/packages/sync/src/class-functions.php @@ -7,6 +7,7 @@ namespace Automattic\Jetpack\Sync; +use Automattic\Jetpack\Connection\Manager; use Automattic\Jetpack\Connection\Urls; use Automattic\Jetpack\Constants; use Automattic\Jetpack\Modules as Jetpack_Modules; @@ -709,4 +710,15 @@ public static function get_loaded_extensions() { return $enabled_extensions; } + + /** + * Return the list of active connected Jetpack plugins. + * + * @since $$next_version$$ + * + * @return array + */ + public static function get_jetpack_connection_active_plugins() { + return ( new Manager() )->get_connected_plugins(); + } } diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index 0a4f1cc750a1e..a65bacb617e52 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.1.4'; + const PACKAGE_VERSION = '3.1.5-alpha'; const PACKAGE_SLUG = 'sync'; diff --git a/projects/packages/sync/tests/php/data-test-data-settings.php b/projects/packages/sync/tests/php/data-test-data-settings.php index 6b1f81eb8a98c..2551a364754c6 100644 --- a/projects/packages/sync/tests/php/data-test-data-settings.php +++ b/projects/packages/sync/tests/php/data-test-data-settings.php @@ -145,17 +145,18 @@ public static function data_test_2() { 'jetpack_sync_options_contentless' => \Automattic\Jetpack\Sync\Defaults::$default_options_contentless, 'jetpack_sync_constants_whitelist' => \Automattic\Jetpack\Sync\Defaults::$default_constants_whitelist, 'jetpack_sync_callable_whitelist' => array( - 'site_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'site_url' ), - 'home_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'home_url' ), - 'get_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_plugins' ), - 'get_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_themes' ), - 'paused_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_plugins' ), - 'paused_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_themes' ), - 'timezone' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_timezone' ), - 'wp_get_environment_type' => 'wp_get_environment_type', - 'wp_max_upload_size' => 'wp_max_upload_size', - 'wp_version' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'wp_version' ), - 'test_input_2_callable' => array( 'Automattic\\Jetpack\\Sync\\Test_Input_2', 'test_method_input_2' ), + 'site_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'site_url' ), + 'home_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'home_url' ), + 'jetpack_connection_active_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_jetpack_connection_active_plugins' ), + 'get_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_plugins' ), + 'get_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_themes' ), + 'paused_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_plugins' ), + 'paused_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_themes' ), + 'timezone' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_timezone' ), + 'wp_get_environment_type' => 'wp_get_environment_type', + 'wp_max_upload_size' => 'wp_max_upload_size', + 'wp_version' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'wp_version' ), + 'test_input_2_callable' => array( 'Automattic\\Jetpack\\Sync\\Test_Input_2', 'test_method_input_2' ), ), 'jetpack_sync_multisite_callable_whitelist' => \Automattic\Jetpack\Sync\Defaults::$default_multisite_callable_whitelist, 'jetpack_sync_post_meta_whitelist' => array(), @@ -234,7 +235,6 @@ public static function data_test_3() { 'jetpack_sync_settings_dedicated_sync_enabled', 'jetpack_sync_settings_custom_queue_table_enabled', 'jetpack_sync_settings_wpcom_rest_api_enabled', - 'jetpack_connection_active_plugins', 'jetpack_package_versions', 'blog_charset', 'blog_public', @@ -271,17 +271,18 @@ public static function data_test_3() { 'DUMMY_CONSTANT', ), 'jetpack_sync_callable_whitelist' => array( - 'site_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'site_url' ), - 'home_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'home_url' ), - 'get_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_plugins' ), - 'get_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_themes' ), - 'paused_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_plugins' ), - 'paused_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_themes' ), - 'timezone' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_timezone' ), - 'wp_get_environment_type' => 'wp_get_environment_type', - 'wp_max_upload_size' => 'wp_max_upload_size', - 'wp_version' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'wp_version' ), - 'test_input_2_callable' => array( 'Automattic\\Jetpack\\Sync\\Test_Input_2', 'test_method_input_2' ), + 'site_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'site_url' ), + 'home_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'home_url' ), + 'get_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_plugins' ), + 'get_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_themes' ), + 'jetpack_connection_active_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_jetpack_connection_active_plugins' ), + 'paused_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_plugins' ), + 'paused_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_themes' ), + 'timezone' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_timezone' ), + 'wp_get_environment_type' => 'wp_get_environment_type', + 'wp_max_upload_size' => 'wp_max_upload_size', + 'wp_version' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'wp_version' ), + 'test_input_2_callable' => array( 'Automattic\\Jetpack\\Sync\\Test_Input_2', 'test_method_input_2' ), ), 'jetpack_sync_multisite_callable_whitelist' => array(), 'jetpack_sync_post_meta_whitelist' => array(), @@ -523,7 +524,6 @@ public static function data_test_7() { 'jetpack_sync_settings_dedicated_sync_enabled', 'jetpack_sync_settings_custom_queue_table_enabled', 'jetpack_sync_settings_wpcom_rest_api_enabled', - 'jetpack_connection_active_plugins', 'jetpack_package_versions', 'blog_charset', 'blog_public', @@ -577,7 +577,6 @@ public static function data_test_7_1() { 'jetpack_sync_settings_dedicated_sync_enabled', 'jetpack_sync_settings_custom_queue_table_enabled', 'jetpack_sync_settings_wpcom_rest_api_enabled', - 'jetpack_connection_active_plugins', 'jetpack_package_versions', 'blog_charset', 'blog_public', @@ -634,7 +633,6 @@ public static function data_test_7_2() { 'jetpack_sync_settings_dedicated_sync_enabled', 'jetpack_sync_settings_custom_queue_table_enabled', 'jetpack_sync_settings_wpcom_rest_api_enabled', - 'jetpack_connection_active_plugins', 'jetpack_package_versions', 'blog_charset', 'blog_public', @@ -871,7 +869,6 @@ public static function data_test_10() { 'jetpack_sync_settings_dedicated_sync_enabled', 'jetpack_sync_settings_custom_queue_table_enabled', 'jetpack_sync_settings_wpcom_rest_api_enabled', - 'jetpack_connection_active_plugins', 'jetpack_package_versions', 'blog_charset', 'blog_public', @@ -911,20 +908,21 @@ public static function data_test_10() { 'test_input_10_constant_b', ), 'jetpack_sync_callable_whitelist' => array( - 'test_input_10_callable' => array( + 'test_input_10_callable' => array( 'callable_class', 'callable_method', ), - 'site_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'site_url' ), - 'home_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'home_url' ), - 'get_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_plugins' ), - 'get_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_themes' ), - 'paused_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_plugins' ), - 'paused_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_themes' ), - 'timezone' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_timezone' ), - 'wp_get_environment_type' => 'wp_get_environment_type', - 'wp_max_upload_size' => 'wp_max_upload_size', - 'wp_version' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'wp_version' ), + 'site_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'site_url' ), + 'home_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'home_url' ), + 'jetpack_connection_active_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_jetpack_connection_active_plugins' ), + 'get_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_plugins' ), + 'get_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_themes' ), + 'paused_plugins' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_plugins' ), + 'paused_themes' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_paused_themes' ), + 'timezone' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'get_timezone' ), + 'wp_get_environment_type' => 'wp_get_environment_type', + 'wp_max_upload_size' => 'wp_max_upload_size', + 'wp_version' => array( 'Automattic\\Jetpack\\Sync\\Functions', 'wp_version' ), ), 'jetpack_sync_multisite_callable_whitelist' => array( 'test_input_10_multisite_callable' => array( diff --git a/projects/plugins/jetpack/changelog/update-sync-make-jetpack_connection_active_plugins-callable b/projects/plugins/jetpack/changelog/update-sync-make-jetpack_connection_active_plugins-callable new file mode 100644 index 0000000000000..d520a783f3816 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-sync-make-jetpack_connection_active_plugins-callable @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Jetpack: Update Sync related unit tests + + diff --git a/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-callables.php b/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-callables.php index 07722506a9c05..db8fc251c7b15 100644 --- a/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-callables.php +++ b/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-callables.php @@ -102,45 +102,46 @@ public function test_sync_callable_whitelist() { Blocks::jetpack_register_block( 'jetpack/test' ); $callables = array( - 'wp_max_upload_size' => wp_max_upload_size(), - 'is_main_network' => Jetpack::is_multi_network(), - 'is_multi_site' => is_multisite(), - 'main_network_site' => Urls::main_network_site_url(), - 'single_user_site' => Jetpack::is_single_user_site(), - 'updates' => Jetpack::get_updates(), - 'home_url' => Urls::home_url(), - 'site_url' => Urls::site_url(), - 'has_file_system_write_access' => Functions::file_system_write_access(), - 'is_version_controlled' => Functions::is_version_controlled(), - 'taxonomies' => Functions::get_taxonomies(), - 'post_types' => Functions::get_post_types(), - 'post_type_features' => Functions::get_post_type_features(), - 'rest_api_allowed_post_types' => Functions::rest_api_allowed_post_types(), - 'rest_api_allowed_public_metadata' => Functions::rest_api_allowed_public_metadata(), - 'sso_is_two_step_required' => Helpers::is_two_step_required(), - 'sso_should_hide_login_form' => Helpers::should_hide_login_form(), - 'sso_match_by_email' => Helpers::match_by_email(), - 'sso_new_user_override' => Helpers::new_user_override(), - 'sso_bypass_default_login_form' => Helpers::bypass_login_forward_wpcom(), - 'wp_version' => Functions::wp_version(), - 'get_plugins' => Functions::get_plugins(), - 'get_plugins_action_links' => Functions::get_plugins_action_links(), - 'active_modules' => Jetpack::get_active_modules(), - 'hosting_provider' => Functions::get_hosting_provider(), - 'locale' => get_locale(), - 'site_icon_url' => Functions::site_icon_url(), - 'shortcodes' => Functions::get_shortcodes(), - 'roles' => Functions::roles(), - 'timezone' => Functions::get_timezone(), - 'available_jetpack_blocks' => Jetpack_Gutenberg::get_availability(), - 'paused_themes' => Functions::get_paused_themes(), - 'paused_plugins' => Functions::get_paused_plugins(), - 'main_network_site_wpcom_id' => Functions::main_network_site_wpcom_id(), - 'theme_support' => Functions::get_theme_support(), - 'wp_get_environment_type' => wp_get_environment_type(), - 'is_fse_theme' => Functions::get_is_fse_theme(), - 'get_themes' => Functions::get_themes(), - 'get_loaded_extensions' => Functions::get_loaded_extensions(), + 'wp_max_upload_size' => wp_max_upload_size(), + 'is_main_network' => Jetpack::is_multi_network(), + 'is_multi_site' => is_multisite(), + 'main_network_site' => Urls::main_network_site_url(), + 'single_user_site' => Jetpack::is_single_user_site(), + 'updates' => Jetpack::get_updates(), + 'home_url' => Urls::home_url(), + 'site_url' => Urls::site_url(), + 'has_file_system_write_access' => Functions::file_system_write_access(), + 'is_version_controlled' => Functions::is_version_controlled(), + 'taxonomies' => Functions::get_taxonomies(), + 'post_types' => Functions::get_post_types(), + 'post_type_features' => Functions::get_post_type_features(), + 'rest_api_allowed_post_types' => Functions::rest_api_allowed_post_types(), + 'rest_api_allowed_public_metadata' => Functions::rest_api_allowed_public_metadata(), + 'sso_is_two_step_required' => Helpers::is_two_step_required(), + 'sso_should_hide_login_form' => Helpers::should_hide_login_form(), + 'sso_match_by_email' => Helpers::match_by_email(), + 'sso_new_user_override' => Helpers::new_user_override(), + 'sso_bypass_default_login_form' => Helpers::bypass_login_forward_wpcom(), + 'wp_version' => Functions::wp_version(), + 'get_plugins' => Functions::get_plugins(), + 'get_plugins_action_links' => Functions::get_plugins_action_links(), + 'active_modules' => Jetpack::get_active_modules(), + 'hosting_provider' => Functions::get_hosting_provider(), + 'locale' => get_locale(), + 'site_icon_url' => Functions::site_icon_url(), + 'shortcodes' => Functions::get_shortcodes(), + 'roles' => Functions::roles(), + 'timezone' => Functions::get_timezone(), + 'available_jetpack_blocks' => Jetpack_Gutenberg::get_availability(), + 'paused_themes' => Functions::get_paused_themes(), + 'paused_plugins' => Functions::get_paused_plugins(), + 'main_network_site_wpcom_id' => Functions::main_network_site_wpcom_id(), + 'theme_support' => Functions::get_theme_support(), + 'wp_get_environment_type' => wp_get_environment_type(), + 'is_fse_theme' => Functions::get_is_fse_theme(), + 'get_themes' => Functions::get_themes(), + 'get_loaded_extensions' => Functions::get_loaded_extensions(), + 'jetpack_connection_active_plugins' => Functions::get_jetpack_connection_active_plugins(), ); if ( function_exists( 'wp_cache_is_enabled' ) ) { diff --git a/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-options.php b/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-options.php index 328d190ebab06..b29e617fc16e4 100644 --- a/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-options.php +++ b/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-options.php @@ -231,7 +231,6 @@ public function test_sync_default_options() { 'jetpack-memberships-has-connected-account' => true, 'jetpack_publicize_options' => array(), 'jetpack_social_notes_config' => array(), - 'jetpack_connection_active_plugins' => array( 'jetpack' ), 'jetpack_social_settings' => array( 'image' => true ), 'jetpack_social_autoconvert_images' => array( 'enabled' => true ), 'jetpack_sync_non_blocking' => false, From 891a3f4541d08cfe5a8d05edd784e3f6d6dea755 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gergely=20M=C3=A1rk=20Juh=C3=A1sz?= <36671565+gmjuhasz@users.noreply.github.com> Date: Wed, 3 Jul 2024 14:45:42 +0200 Subject: [PATCH 002/254] Classic theme helper | Remove wp-slug until plugin is approved (#38175) * Remove slug until the plugin is approved * changelog * Fixup versions --- .../changelog/remove-classic-theme-helper-wp-plugin-slug | 4 ++++ projects/plugins/classic-theme-helper-plugin/composer.json | 1 - projects/plugins/classic-theme-helper-plugin/composer.lock | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 projects/plugins/classic-theme-helper-plugin/changelog/remove-classic-theme-helper-wp-plugin-slug diff --git a/projects/plugins/classic-theme-helper-plugin/changelog/remove-classic-theme-helper-wp-plugin-slug b/projects/plugins/classic-theme-helper-plugin/changelog/remove-classic-theme-helper-wp-plugin-slug new file mode 100644 index 0000000000000..c2ea76e098d7a --- /dev/null +++ b/projects/plugins/classic-theme-helper-plugin/changelog/remove-classic-theme-helper-wp-plugin-slug @@ -0,0 +1,4 @@ +Significance: patch +Type: removed + +Removed wp slug until plugin is approved diff --git a/projects/plugins/classic-theme-helper-plugin/composer.json b/projects/plugins/classic-theme-helper-plugin/composer.json index d439ae5449195..77b58b7fda046 100644 --- a/projects/plugins/classic-theme-helper-plugin/composer.json +++ b/projects/plugins/classic-theme-helper-plugin/composer.json @@ -57,7 +57,6 @@ "mirror-repo": "Automattic/classic-theme-plugin", "release-branch-prefix": "classic-theme-plugin", "beta-plugin-slug": "classic-theme-helper-plugin", - "wp-plugin-slug": "classic-theme-helper-plugin", "changelogger": { "versioning": "semver" } diff --git a/projects/plugins/classic-theme-helper-plugin/composer.lock b/projects/plugins/classic-theme-helper-plugin/composer.lock index cfff1fa8f049d..bbde1f338069e 100644 --- a/projects/plugins/classic-theme-helper-plugin/composer.lock +++ b/projects/plugins/classic-theme-helper-plugin/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "37d376f477c972d17866ba617e05e65f", + "content-hash": "4cc54a7de0dd0b5f40570ba71b33fc96", "packages": [ { "name": "automattic/jetpack-a8c-mc-stats", From ef820adb2227dd99dc6267d060bedfebb1247950 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gergely=20M=C3=A1rk=20Juh=C3=A1sz?= <36671565+gmjuhasz@users.noreply.github.com> Date: Wed, 3 Jul 2024 15:15:09 +0200 Subject: [PATCH 003/254] Changelog and readme.txt edits. (#38172) --- projects/js-packages/api/CHANGELOG.md | 5 +++++ .../api/changelog/renovate-wordpress-monorepo | 4 ---- projects/js-packages/api/package.json | 2 +- projects/js-packages/base-styles/CHANGELOG.md | 5 +++++ .../base-styles/changelog/renovate-wordpress-monorepo | 4 ---- projects/js-packages/base-styles/package.json | 2 +- projects/js-packages/boost-score-api/CHANGELOG.md | 5 +++++ .../changelog/renovate-wordpress-monorepo | 4 ---- projects/js-packages/boost-score-api/package.json | 2 +- projects/js-packages/components/CHANGELOG.md | 5 +++++ .../components/changelog/renovate-wordpress-monorepo | 4 ---- projects/js-packages/components/package.json | 2 +- projects/js-packages/connection/CHANGELOG.md | 5 +++++ .../connection/changelog/renovate-wordpress-monorepo | 4 ---- projects/js-packages/connection/package.json | 2 +- .../i18n-loader-webpack-plugin/CHANGELOG.md | 5 +++++ .../changelog/renovate-wordpress-monorepo | 4 ---- .../i18n-loader-webpack-plugin/package.json | 2 +- projects/js-packages/idc/CHANGELOG.md | 4 ++++ .../idc/changelog/renovate-wordpress-monorepo | 4 ---- projects/js-packages/idc/package.json | 2 +- projects/js-packages/licensing/CHANGELOG.md | 4 ++++ .../licensing/changelog/renovate-wordpress-monorepo | 4 ---- projects/js-packages/licensing/package.json | 2 +- projects/js-packages/publicize-components/CHANGELOG.md | 5 +++++ .../changelog/renovate-wordpress-monorepo | 4 ---- projects/js-packages/publicize-components/package.json | 2 +- .../js-packages/shared-extension-utils/CHANGELOG.md | 5 +++++ .../changelog/renovate-wordpress-monorepo | 4 ---- .../js-packages/shared-extension-utils/package.json | 2 +- projects/js-packages/webpack-config/CHANGELOG.md | 4 ++++ .../changelog/renovate-wordpress-monorepo | 4 ---- projects/js-packages/webpack-config/package.json | 2 +- projects/packages/assets/CHANGELOG.md | 5 +++++ .../assets/changelog/renovate-wordpress-monorepo | 4 ---- projects/packages/connection/CHANGELOG.md | 5 +++++ .../connection/changelog/renovate-wordpress-monorepo | 4 ---- .../packages/connection/src/class-package-version.php | 2 +- projects/packages/jitm/CHANGELOG.md | 5 +++++ .../jitm/changelog/renovate-wordpress-monorepo | 4 ---- projects/packages/jitm/src/class-jitm.php | 2 +- projects/packages/my-jetpack/CHANGELOG.md | 5 +++++ .../my-jetpack/changelog/renovate-wordpress-monorepo | 4 ---- projects/packages/my-jetpack/package.json | 2 +- projects/packages/my-jetpack/src/class-initializer.php | 2 +- projects/packages/publicize/CHANGELOG.md | 5 +++++ .../publicize/changelog/renovate-wordpress-monorepo | 4 ---- projects/packages/publicize/package.json | 2 +- projects/plugins/social/CHANGELOG.md | 10 ++++++++++ .../plugins/social/changelog/add-ga-deprecation-notice | 5 ----- .../changelog/fix-broken-connections-link-in-editor | 4 ---- .../changelog/fix-e2e-tests-navigating-to-block-editor | 4 ---- projects/plugins/social/changelog/fix-eslint-e2e | 5 ----- .../changelog/fix-social-admin-pricing-table-not-shown | 4 ---- projects/plugins/social/changelog/port-wpcomsh-1904 | 5 ----- .../social/changelog/remove-ref-to-removed-idc-package | 5 ----- .../changelog/remove-social-share-as-a-social-post | 5 ----- .../social/changelog/renovate-wordpress-monorepo | 4 ---- .../social/changelog/update-backport-social-4.5.1 | 4 ---- ...e-coditionally-render-connection-footer-with-unlock | 5 ----- ...ack-ai-add-title-optimization-video-to-product-page | 5 ----- projects/plugins/social/changelog/update-tested-to-6-6 | 4 ---- projects/plugins/social/composer.json | 2 +- projects/plugins/social/jetpack-social.php | 2 +- projects/plugins/social/readme.txt | 10 ++++++++-- 65 files changed, 113 insertions(+), 143 deletions(-) delete mode 100644 projects/js-packages/api/changelog/renovate-wordpress-monorepo delete mode 100644 projects/js-packages/base-styles/changelog/renovate-wordpress-monorepo delete mode 100644 projects/js-packages/boost-score-api/changelog/renovate-wordpress-monorepo delete mode 100644 projects/js-packages/components/changelog/renovate-wordpress-monorepo delete mode 100644 projects/js-packages/connection/changelog/renovate-wordpress-monorepo delete mode 100644 projects/js-packages/i18n-loader-webpack-plugin/changelog/renovate-wordpress-monorepo delete mode 100644 projects/js-packages/idc/changelog/renovate-wordpress-monorepo delete mode 100644 projects/js-packages/licensing/changelog/renovate-wordpress-monorepo delete mode 100644 projects/js-packages/publicize-components/changelog/renovate-wordpress-monorepo delete mode 100644 projects/js-packages/shared-extension-utils/changelog/renovate-wordpress-monorepo delete mode 100644 projects/js-packages/webpack-config/changelog/renovate-wordpress-monorepo delete mode 100644 projects/packages/assets/changelog/renovate-wordpress-monorepo delete mode 100644 projects/packages/connection/changelog/renovate-wordpress-monorepo delete mode 100644 projects/packages/jitm/changelog/renovate-wordpress-monorepo delete mode 100644 projects/packages/my-jetpack/changelog/renovate-wordpress-monorepo delete mode 100644 projects/packages/publicize/changelog/renovate-wordpress-monorepo delete mode 100644 projects/plugins/social/changelog/add-ga-deprecation-notice delete mode 100644 projects/plugins/social/changelog/fix-broken-connections-link-in-editor delete mode 100644 projects/plugins/social/changelog/fix-e2e-tests-navigating-to-block-editor delete mode 100644 projects/plugins/social/changelog/fix-eslint-e2e delete mode 100644 projects/plugins/social/changelog/fix-social-admin-pricing-table-not-shown delete mode 100644 projects/plugins/social/changelog/port-wpcomsh-1904 delete mode 100644 projects/plugins/social/changelog/remove-ref-to-removed-idc-package delete mode 100644 projects/plugins/social/changelog/remove-social-share-as-a-social-post delete mode 100644 projects/plugins/social/changelog/renovate-wordpress-monorepo delete mode 100644 projects/plugins/social/changelog/update-backport-social-4.5.1 delete mode 100644 projects/plugins/social/changelog/update-coditionally-render-connection-footer-with-unlock delete mode 100644 projects/plugins/social/changelog/update-jetpack-ai-add-title-optimization-video-to-product-page delete mode 100644 projects/plugins/social/changelog/update-tested-to-6-6 diff --git a/projects/js-packages/api/CHANGELOG.md b/projects/js-packages/api/CHANGELOG.md index d0c21669d7d9e..b8c99fdae57b9 100644 --- a/projects/js-packages/api/CHANGELOG.md +++ b/projects/js-packages/api/CHANGELOG.md @@ -2,6 +2,10 @@ ### This is a list detailing changes for the Jetpack RNA Components package releases. +## [0.17.9] - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## [0.17.8] - 2024-06-05 ### Changed - Updated package dependencies. [#37669] @@ -334,6 +338,7 @@ - Add the API methods left behind by the previous PR. - Initial release of jetpack-api package +[0.17.9]: https://github.com/Automattic/jetpack-api/compare/v0.17.8...v0.17.9 [0.17.8]: https://github.com/Automattic/jetpack-api/compare/v0.17.7...v0.17.8 [0.17.7]: https://github.com/Automattic/jetpack-api/compare/v0.17.6...v0.17.7 [0.17.6]: https://github.com/Automattic/jetpack-api/compare/v0.17.5...v0.17.6 diff --git a/projects/js-packages/api/changelog/renovate-wordpress-monorepo b/projects/js-packages/api/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/js-packages/api/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/js-packages/api/package.json b/projects/js-packages/api/package.json index 44151cf1b34a2..8f77f7a57c21c 100644 --- a/projects/js-packages/api/package.json +++ b/projects/js-packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/jetpack-api", - "version": "0.17.9-alpha", + "version": "0.17.9", "description": "Jetpack Api Package", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/api/#readme", "bugs": { diff --git a/projects/js-packages/base-styles/CHANGELOG.md b/projects/js-packages/base-styles/CHANGELOG.md index 8e93a25cb3cd0..0352dcea8046d 100644 --- a/projects/js-packages/base-styles/CHANGELOG.md +++ b/projects/js-packages/base-styles/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.28] - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## [0.6.27] - 2024-06-17 ### Added - Add color variable [#37802] @@ -293,6 +297,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated package dependencies. - Use Node 16.7.0 in tooling. This shouldn't change the behavior of the code itself. +[0.6.28]: https://github.com/Automattic/jetpack-base-styles/compare/0.6.27...0.6.28 [0.6.27]: https://github.com/Automattic/jetpack-base-styles/compare/0.6.26...0.6.27 [0.6.26]: https://github.com/Automattic/jetpack-base-styles/compare/0.6.25...0.6.26 [0.6.25]: https://github.com/Automattic/jetpack-base-styles/compare/0.6.24...0.6.25 diff --git a/projects/js-packages/base-styles/changelog/renovate-wordpress-monorepo b/projects/js-packages/base-styles/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/js-packages/base-styles/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/js-packages/base-styles/package.json b/projects/js-packages/base-styles/package.json index c09e3c4337bb6..c8ae9e3431955 100644 --- a/projects/js-packages/base-styles/package.json +++ b/projects/js-packages/base-styles/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/jetpack-base-styles", - "version": "0.6.28-alpha", + "version": "0.6.28", "description": "Jetpack components base styles", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/base-styles/#readme", "bugs": { diff --git a/projects/js-packages/boost-score-api/CHANGELOG.md b/projects/js-packages/boost-score-api/CHANGELOG.md index b1c01729f50a6..89d718060608f 100644 --- a/projects/js-packages/boost-score-api/CHANGELOG.md +++ b/projects/js-packages/boost-score-api/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.33] - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## [0.1.32] - 2024-06-13 ### Changed - Updated package dependencies. [#37830] @@ -143,6 +147,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Create package for the boost score bar API [#30781] +[0.1.33]: https://github.com/Automattic/jetpack-boost-score-api/compare/v0.1.32...v0.1.33 [0.1.32]: https://github.com/Automattic/jetpack-boost-score-api/compare/v0.1.31...v0.1.32 [0.1.31]: https://github.com/Automattic/jetpack-boost-score-api/compare/v0.1.30...v0.1.31 [0.1.30]: https://github.com/Automattic/jetpack-boost-score-api/compare/v0.1.29...v0.1.30 diff --git a/projects/js-packages/boost-score-api/changelog/renovate-wordpress-monorepo b/projects/js-packages/boost-score-api/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/js-packages/boost-score-api/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/js-packages/boost-score-api/package.json b/projects/js-packages/boost-score-api/package.json index e1ed1fc85b636..b5e0ad40adc08 100644 --- a/projects/js-packages/boost-score-api/package.json +++ b/projects/js-packages/boost-score-api/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/jetpack-boost-score-api", - "version": "0.1.33-alpha", + "version": "0.1.33", "description": "A package to get the Jetpack Boost score of a site", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/boost-score-api/#readme", "bugs": { diff --git a/projects/js-packages/components/CHANGELOG.md b/projects/js-packages/components/CHANGELOG.md index ade67d24c98b4..3699489de5797 100644 --- a/projects/js-packages/components/CHANGELOG.md +++ b/projects/js-packages/components/CHANGELOG.md @@ -2,6 +2,10 @@ ### This is a list detailing changes for the Jetpack RNA Components package releases. +## [0.54.3] - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## [0.54.2] - 2024-06-25 ### Added - Added social preview for Threads [#38003] @@ -1079,6 +1083,7 @@ ### Changed - Update node version requirement to 14.16.1 +[0.54.3]: https://github.com/Automattic/jetpack-components/compare/0.54.2...0.54.3 [0.54.2]: https://github.com/Automattic/jetpack-components/compare/0.54.1...0.54.2 [0.54.1]: https://github.com/Automattic/jetpack-components/compare/0.54.0...0.54.1 [0.54.0]: https://github.com/Automattic/jetpack-components/compare/0.53.10...0.54.0 diff --git a/projects/js-packages/components/changelog/renovate-wordpress-monorepo b/projects/js-packages/components/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/js-packages/components/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/js-packages/components/package.json b/projects/js-packages/components/package.json index 3526c97c71e6c..1ee1f5b78e415 100644 --- a/projects/js-packages/components/package.json +++ b/projects/js-packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/jetpack-components", - "version": "0.54.3-alpha", + "version": "0.54.3", "description": "Jetpack Components Package", "author": "Automattic", "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/connection/CHANGELOG.md b/projects/js-packages/connection/CHANGELOG.md index 33ba4e5683d3e..1b6c9a0aea42b 100644 --- a/projects/js-packages/connection/CHANGELOG.md +++ b/projects/js-packages/connection/CHANGELOG.md @@ -2,6 +2,10 @@ ### This is a list detailing changes for the Jetpack RNA Connection Component releases. +## [0.33.19] - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## [0.33.18] - 2024-06-21 ### Changed - Update dependencies. @@ -793,6 +797,7 @@ - `Main` and `ConnectUser` components added. - `JetpackRestApiClient` API client added. +[0.33.19]: https://github.com/Automattic/jetpack-connection-js/compare/v0.33.18...v0.33.19 [0.33.18]: https://github.com/Automattic/jetpack-connection-js/compare/v0.33.17...v0.33.18 [0.33.17]: https://github.com/Automattic/jetpack-connection-js/compare/v0.33.16...v0.33.17 [0.33.16]: https://github.com/Automattic/jetpack-connection-js/compare/v0.33.15...v0.33.16 diff --git a/projects/js-packages/connection/changelog/renovate-wordpress-monorepo b/projects/js-packages/connection/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/js-packages/connection/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/js-packages/connection/package.json b/projects/js-packages/connection/package.json index 4095cd7659aec..37b0e211878cf 100644 --- a/projects/js-packages/connection/package.json +++ b/projects/js-packages/connection/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/jetpack-connection", - "version": "0.33.19-alpha", + "version": "0.33.19", "description": "Jetpack Connection Component", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/connection/#readme", "bugs": { diff --git a/projects/js-packages/i18n-loader-webpack-plugin/CHANGELOG.md b/projects/js-packages/i18n-loader-webpack-plugin/CHANGELOG.md index 08b2135f2505c..b08baacb4a968 100644 --- a/projects/js-packages/i18n-loader-webpack-plugin/CHANGELOG.md +++ b/projects/js-packages/i18n-loader-webpack-plugin/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.53] - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## [2.0.52] - 2024-06-05 ### Changed - Updated package dependencies. [#37669] @@ -237,6 +241,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release. +[2.0.53]: https://github.com/Automattic/i18n-loader-webpack-plugin/compare/v2.0.52...v2.0.53 [2.0.52]: https://github.com/Automattic/i18n-loader-webpack-plugin/compare/v2.0.51...v2.0.52 [2.0.51]: https://github.com/Automattic/i18n-loader-webpack-plugin/compare/v2.0.50...v2.0.51 [2.0.50]: https://github.com/Automattic/i18n-loader-webpack-plugin/compare/v2.0.49...v2.0.50 diff --git a/projects/js-packages/i18n-loader-webpack-plugin/changelog/renovate-wordpress-monorepo b/projects/js-packages/i18n-loader-webpack-plugin/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/js-packages/i18n-loader-webpack-plugin/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/js-packages/i18n-loader-webpack-plugin/package.json b/projects/js-packages/i18n-loader-webpack-plugin/package.json index 4396a9dd701ac..d11744eee7c71 100644 --- a/projects/js-packages/i18n-loader-webpack-plugin/package.json +++ b/projects/js-packages/i18n-loader-webpack-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/i18n-loader-webpack-plugin", - "version": "2.0.53-alpha", + "version": "2.0.53", "description": "A Webpack plugin to load WordPress i18n when Webpack lazy-loads a bundle.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/i18n-loader-webpack-plugin/#readme", "bugs": { diff --git a/projects/js-packages/idc/CHANGELOG.md b/projects/js-packages/idc/CHANGELOG.md index ee456b99fca35..7c476a3c520e3 100644 --- a/projects/js-packages/idc/CHANGELOG.md +++ b/projects/js-packages/idc/CHANGELOG.md @@ -2,6 +2,10 @@ ### This is a list detailing changes for the Jetpack RNA IDC package releases. +## 0.11.3 - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## 0.11.2 - 2024-06-21 ### Changed - Update dependencies. diff --git a/projects/js-packages/idc/changelog/renovate-wordpress-monorepo b/projects/js-packages/idc/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/js-packages/idc/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/js-packages/idc/package.json b/projects/js-packages/idc/package.json index 4e4603626b813..20e88c8601adc 100644 --- a/projects/js-packages/idc/package.json +++ b/projects/js-packages/idc/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/jetpack-idc", - "version": "0.11.3-alpha", + "version": "0.11.3", "description": "Jetpack Connection Component", "author": "Automattic", "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/licensing/CHANGELOG.md b/projects/js-packages/licensing/CHANGELOG.md index 977ec683f69c3..7640848ce8c89 100644 --- a/projects/js-packages/licensing/CHANGELOG.md +++ b/projects/js-packages/licensing/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.12.18 - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## 0.12.17 - 2024-06-21 ### Changed - Update dependencies. [#37979] diff --git a/projects/js-packages/licensing/changelog/renovate-wordpress-monorepo b/projects/js-packages/licensing/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/js-packages/licensing/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/js-packages/licensing/package.json b/projects/js-packages/licensing/package.json index 22548f3fa04c7..b5bfa7af7f5a9 100644 --- a/projects/js-packages/licensing/package.json +++ b/projects/js-packages/licensing/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-licensing", - "version": "0.12.18-alpha", + "version": "0.12.18", "description": "Jetpack licensing flow", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/licensing/#readme", "bugs": { diff --git a/projects/js-packages/publicize-components/CHANGELOG.md b/projects/js-packages/publicize-components/CHANGELOG.md index 95e8dd1bc8b90..179cfaa6dd48a 100644 --- a/projects/js-packages/publicize-components/CHANGELOG.md +++ b/projects/js-packages/publicize-components/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.55.1] - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## [0.55.0] - 2024-07-01 ### Added - Added "Save to media library" button for images generated by SIG [#38106] @@ -765,6 +769,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Updated package dependencies. [#24470] +[0.55.1]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.55.0...v0.55.1 [0.55.0]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.54.6...v0.55.0 [0.54.6]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.54.5...v0.54.6 [0.54.5]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.54.4...v0.54.5 diff --git a/projects/js-packages/publicize-components/changelog/renovate-wordpress-monorepo b/projects/js-packages/publicize-components/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/js-packages/publicize-components/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/js-packages/publicize-components/package.json b/projects/js-packages/publicize-components/package.json index 2b74fbcc8ddd7..a9bcad791a093 100644 --- a/projects/js-packages/publicize-components/package.json +++ b/projects/js-packages/publicize-components/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize-components", - "version": "0.55.1-alpha", + "version": "0.55.1", "description": "A library of JS components required by the Publicize editor plugin", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/publicize-components/#readme", "bugs": { diff --git a/projects/js-packages/shared-extension-utils/CHANGELOG.md b/projects/js-packages/shared-extension-utils/CHANGELOG.md index 9e65688c739ff..67317f1ad7c28 100644 --- a/projects/js-packages/shared-extension-utils/CHANGELOG.md +++ b/projects/js-packages/shared-extension-utils/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.14.17] - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## [0.14.16] - 2024-06-21 ### Changed - Update dependencies. [#37356] @@ -396,6 +400,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Core: prepare utility for release +[0.14.17]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.14.16...0.14.17 [0.14.16]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.14.15...0.14.16 [0.14.15]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.14.14...0.14.15 [0.14.14]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.14.13...0.14.14 diff --git a/projects/js-packages/shared-extension-utils/changelog/renovate-wordpress-monorepo b/projects/js-packages/shared-extension-utils/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/js-packages/shared-extension-utils/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/js-packages/shared-extension-utils/package.json b/projects/js-packages/shared-extension-utils/package.json index 2394f4c03fe8b..2caf50c61809f 100644 --- a/projects/js-packages/shared-extension-utils/package.json +++ b/projects/js-packages/shared-extension-utils/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/jetpack-shared-extension-utils", - "version": "0.14.17-alpha", + "version": "0.14.17", "description": "Utility functions used by the block editor extensions", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/shared-extension-utils/#readme", "bugs": { diff --git a/projects/js-packages/webpack-config/CHANGELOG.md b/projects/js-packages/webpack-config/CHANGELOG.md index 44f1af03bf6a2..f9feb666e73fd 100644 --- a/projects/js-packages/webpack-config/CHANGELOG.md +++ b/projects/js-packages/webpack-config/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 3.2.10 - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## 3.2.9 - 2024-06-13 ### Changed - Updated package dependencies. [#37822] diff --git a/projects/js-packages/webpack-config/changelog/renovate-wordpress-monorepo b/projects/js-packages/webpack-config/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/js-packages/webpack-config/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/js-packages/webpack-config/package.json b/projects/js-packages/webpack-config/package.json index d4a6904434702..3f54cb8195be1 100644 --- a/projects/js-packages/webpack-config/package.json +++ b/projects/js-packages/webpack-config/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-webpack-config", - "version": "3.2.10-alpha", + "version": "3.2.10", "description": "Library of pieces for webpack config in Jetpack projects.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/webpack-config/#readme", "bugs": { diff --git a/projects/packages/assets/CHANGELOG.md b/projects/packages/assets/CHANGELOG.md index 1ae8fa1944160..ac73c438cfefa 100644 --- a/projects/packages/assets/CHANGELOG.md +++ b/projects/packages/assets/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.1.13] - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## [2.1.12] - 2024-06-05 ### Changed - Updated package dependencies. [#37669] @@ -454,6 +458,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Statically access asset tools +[2.1.13]: https://github.com/Automattic/jetpack-assets/compare/v2.1.12...v2.1.13 [2.1.12]: https://github.com/Automattic/jetpack-assets/compare/v2.1.11...v2.1.12 [2.1.11]: https://github.com/Automattic/jetpack-assets/compare/v2.1.10...v2.1.11 [2.1.10]: https://github.com/Automattic/jetpack-assets/compare/v2.1.9...v2.1.10 diff --git a/projects/packages/assets/changelog/renovate-wordpress-monorepo b/projects/packages/assets/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/packages/assets/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/packages/connection/CHANGELOG.md b/projects/packages/connection/CHANGELOG.md index a48820a8beb43..481d6e644829f 100644 --- a/projects/packages/connection/CHANGELOG.md +++ b/projects/packages/connection/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.11.1] - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## [2.11.0] - 2024-06-26 ### Added - Add blog_id to tracks data [#37902] @@ -1123,6 +1127,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Separate the connection library into its own package. +[2.11.1]: https://github.com/Automattic/jetpack-connection/compare/v2.11.0...v2.11.1 [2.11.0]: https://github.com/Automattic/jetpack-connection/compare/v2.10.2...v2.11.0 [2.10.2]: https://github.com/Automattic/jetpack-connection/compare/v2.10.1...v2.10.2 [2.10.1]: https://github.com/Automattic/jetpack-connection/compare/v2.10.0...v2.10.1 diff --git a/projects/packages/connection/changelog/renovate-wordpress-monorepo b/projects/packages/connection/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/packages/connection/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/packages/connection/src/class-package-version.php b/projects/packages/connection/src/class-package-version.php index 3af7d9eb0cd1e..f89c3f7496dee 100644 --- a/projects/packages/connection/src/class-package-version.php +++ b/projects/packages/connection/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '2.11.1-alpha'; + const PACKAGE_VERSION = '2.11.1'; const PACKAGE_SLUG = 'connection'; diff --git a/projects/packages/jitm/CHANGELOG.md b/projects/packages/jitm/CHANGELOG.md index ea243d252436c..4cce80ff7befb 100644 --- a/projects/packages/jitm/CHANGELOG.md +++ b/projects/packages/jitm/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.1.13] - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## [3.1.12] - 2024-06-05 ### Changed - Updated package dependencies. [#37669] @@ -727,6 +731,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Update Jetpack to use new JITM package +[3.1.13]: https://github.com/Automattic/jetpack-jitm/compare/v3.1.12...v3.1.13 [3.1.12]: https://github.com/Automattic/jetpack-jitm/compare/v3.1.11...v3.1.12 [3.1.11]: https://github.com/Automattic/jetpack-jitm/compare/v3.1.10...v3.1.11 [3.1.10]: https://github.com/Automattic/jetpack-jitm/compare/v3.1.9...v3.1.10 diff --git a/projects/packages/jitm/changelog/renovate-wordpress-monorepo b/projects/packages/jitm/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/packages/jitm/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/packages/jitm/src/class-jitm.php b/projects/packages/jitm/src/class-jitm.php index c9eee636df9ba..6138a060982cb 100644 --- a/projects/packages/jitm/src/class-jitm.php +++ b/projects/packages/jitm/src/class-jitm.php @@ -20,7 +20,7 @@ */ class JITM { - const PACKAGE_VERSION = '3.1.13-alpha'; + const PACKAGE_VERSION = '3.1.13'; /** * The configuration method that is called from the jetpack-config package. diff --git a/projects/packages/my-jetpack/CHANGELOG.md b/projects/packages/my-jetpack/CHANGELOG.md index 336dbccebce69..485e836a04eb3 100644 --- a/projects/packages/my-jetpack/CHANGELOG.md +++ b/projects/packages/my-jetpack/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.27.1] - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## [4.27.0] - 2024-07-01 ### Added - Add the Google Analytics deprecation notice. [#38078] @@ -1552,6 +1556,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Created package +[4.27.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.27.0...4.27.1 [4.27.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.26.0...4.27.0 [4.26.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.25.4...4.26.0 [4.25.4]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.25.3...4.25.4 diff --git a/projects/packages/my-jetpack/changelog/renovate-wordpress-monorepo b/projects/packages/my-jetpack/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/packages/my-jetpack/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/packages/my-jetpack/package.json b/projects/packages/my-jetpack/package.json index aeca4bdcb386b..b8e0651e89a20 100644 --- a/projects/packages/my-jetpack/package.json +++ b/projects/packages/my-jetpack/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-my-jetpack", - "version": "4.27.1-alpha", + "version": "4.27.1", "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/my-jetpack/#readme", "bugs": { diff --git a/projects/packages/my-jetpack/src/class-initializer.php b/projects/packages/my-jetpack/src/class-initializer.php index a6b4db1257930..6ac6a629c53c8 100644 --- a/projects/packages/my-jetpack/src/class-initializer.php +++ b/projects/packages/my-jetpack/src/class-initializer.php @@ -37,7 +37,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '4.27.1-alpha'; + const PACKAGE_VERSION = '4.27.1'; /** * HTML container ID for the IDC screen on My Jetpack page. diff --git a/projects/packages/publicize/CHANGELOG.md b/projects/packages/publicize/CHANGELOG.md index a9795690311f1..e74b6104059fc 100644 --- a/projects/packages/publicize/CHANGELOG.md +++ b/projects/packages/publicize/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.47.1] - 2024-07-03 +### Changed +- Updated package dependencies. [#38132] + ## [0.47.0] - 2024-07-01 ### Removed - Removed share as a social post toggle [#37964] @@ -610,6 +614,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated package dependencies. - Update package.json metadata. +[0.47.1]: https://github.com/Automattic/jetpack-publicize/compare/v0.47.0...v0.47.1 [0.47.0]: https://github.com/Automattic/jetpack-publicize/compare/v0.46.3...v0.47.0 [0.46.3]: https://github.com/Automattic/jetpack-publicize/compare/v0.46.2...v0.46.3 [0.46.2]: https://github.com/Automattic/jetpack-publicize/compare/v0.46.1...v0.46.2 diff --git a/projects/packages/publicize/changelog/renovate-wordpress-monorepo b/projects/packages/publicize/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/packages/publicize/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/packages/publicize/package.json b/projects/packages/publicize/package.json index 4249777ca12db..b47c13691b3b5 100644 --- a/projects/packages/publicize/package.json +++ b/projects/packages/publicize/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize", - "version": "0.47.1-alpha", + "version": "0.47.1", "description": "Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/publicize/#readme", "bugs": { diff --git a/projects/plugins/social/CHANGELOG.md b/projects/plugins/social/CHANGELOG.md index a3635d2064007..c3303d195ccba 100644 --- a/projects/plugins/social/CHANGELOG.md +++ b/projects/plugins/social/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 4.5.2 - 2024-07-03 +### Changed +- General: indicate compatibility with the upcoming version of WordPress - 6.6. [#37962] +- Updated package dependencies. [#37917] [#38132] + +### Fixed +- Fixed E2E tests navigating to block editor [#37875] +- Fixed the admin page pricing table not shown [#37877] +- Social: Fixed broken connections reconnect link to point it to new connections UI [#37869] + ## 4.5.1 - 2024-06-18 ### Fixed - My Jetpack: Update My Jetpack to a more stable version. [#37911] diff --git a/projects/plugins/social/changelog/add-ga-deprecation-notice b/projects/plugins/social/changelog/add-ga-deprecation-notice deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/add-ga-deprecation-notice +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/fix-broken-connections-link-in-editor b/projects/plugins/social/changelog/fix-broken-connections-link-in-editor deleted file mode 100644 index d957858867aa8..0000000000000 --- a/projects/plugins/social/changelog/fix-broken-connections-link-in-editor +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Social: Fixed broken connections reconnect link to point it to new connections UI diff --git a/projects/plugins/social/changelog/fix-e2e-tests-navigating-to-block-editor b/projects/plugins/social/changelog/fix-e2e-tests-navigating-to-block-editor deleted file mode 100644 index 36333dcecb239..0000000000000 --- a/projects/plugins/social/changelog/fix-e2e-tests-navigating-to-block-editor +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Fixed E2E tests navigating to block editor diff --git a/projects/plugins/social/changelog/fix-eslint-e2e b/projects/plugins/social/changelog/fix-eslint-e2e deleted file mode 100644 index 262fa2706f9c7..0000000000000 --- a/projects/plugins/social/changelog/fix-eslint-e2e +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: fixed -Comment: Fix eslint issues in tests/e2e. No change to functionality. - - diff --git a/projects/plugins/social/changelog/fix-social-admin-pricing-table-not-shown b/projects/plugins/social/changelog/fix-social-admin-pricing-table-not-shown deleted file mode 100644 index c7c10b5bac2c6..0000000000000 --- a/projects/plugins/social/changelog/fix-social-admin-pricing-table-not-shown +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Fixed the admin page pricing table not shown diff --git a/projects/plugins/social/changelog/port-wpcomsh-1904 b/projects/plugins/social/changelog/port-wpcomsh-1904 deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/port-wpcomsh-1904 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/remove-ref-to-removed-idc-package b/projects/plugins/social/changelog/remove-ref-to-removed-idc-package deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/remove-ref-to-removed-idc-package +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/remove-social-share-as-a-social-post b/projects/plugins/social/changelog/remove-social-share-as-a-social-post deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/remove-social-share-as-a-social-post +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/renovate-wordpress-monorepo b/projects/plugins/social/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/plugins/social/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/plugins/social/changelog/update-backport-social-4.5.1 b/projects/plugins/social/changelog/update-backport-social-4.5.1 deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/plugins/social/changelog/update-backport-social-4.5.1 +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/plugins/social/changelog/update-coditionally-render-connection-footer-with-unlock b/projects/plugins/social/changelog/update-coditionally-render-connection-footer-with-unlock deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/update-coditionally-render-connection-footer-with-unlock +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/update-jetpack-ai-add-title-optimization-video-to-product-page b/projects/plugins/social/changelog/update-jetpack-ai-add-title-optimization-video-to-product-page deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/update-jetpack-ai-add-title-optimization-video-to-product-page +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/update-tested-to-6-6 b/projects/plugins/social/changelog/update-tested-to-6-6 deleted file mode 100644 index 6cf57dbe55f90..0000000000000 --- a/projects/plugins/social/changelog/update-tested-to-6-6 +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -General: indicate compatibility with the upcoming version of WordPress - 6.6. diff --git a/projects/plugins/social/composer.json b/projects/plugins/social/composer.json index 7d8631e68c67a..27c9849d8071d 100644 --- a/projects/plugins/social/composer.json +++ b/projects/plugins/social/composer.json @@ -84,6 +84,6 @@ "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true }, - "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_socialⓥ4_5_2_alpha" + "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_socialⓥ4_5_2" } } diff --git a/projects/plugins/social/jetpack-social.php b/projects/plugins/social/jetpack-social.php index c5c11cfe13694..855d11146cfc4 100644 --- a/projects/plugins/social/jetpack-social.php +++ b/projects/plugins/social/jetpack-social.php @@ -4,7 +4,7 @@ * Plugin Name: Jetpack Social * Plugin URI: https://wordpress.org/plugins/jetpack-social * Description: Share your site’s posts on several social media networks automatically when you publish a new post. - * Version: 4.5.2-alpha + * Version: 4.5.2 * Author: Automattic - Jetpack Social team * Author URI: https://jetpack.com/social/ * License: GPLv2 or later diff --git a/projects/plugins/social/readme.txt b/projects/plugins/social/readme.txt index 84498082c7c15..686444cbb48eb 100644 --- a/projects/plugins/social/readme.txt +++ b/projects/plugins/social/readme.txt @@ -102,9 +102,15 @@ The easiest way is to use the Custom Message option in the publishing options bo 6. Managing Social media accounts in the post editor == Changelog == -### 4.5.1 - 2024-06-18 +### 4.5.2 - 2024-07-03 +#### Changed +- General: indicate compatibility with the upcoming version of WordPress - 6.6. +- Updated package dependencies. + #### Fixed -- My Jetpack: Update My Jetpack to a more stable version. +- Fixed E2E tests navigating to block editor +- Fixed the admin page pricing table not shown +- Social: Fixed broken connections reconnect link to point it to new connections UI == Upgrade Notice == From af985a6d89ab555014d92a2ad733f93f836b1f1e Mon Sep 17 00:00:00 2001 From: Foteini Giannaropoulou Date: Wed, 3 Jul 2024 17:16:55 +0300 Subject: [PATCH 004/254] Jetpack Sync: Ensure we always sync heartbeat data and active plugins no matter the consumer config (#38135) * Jetpack Sync: Update Sync modules and options that we always need to sync --- projects/packages/sync/README.md | 2 ++ .../sync/changelog/update-sync-must-sync-data-settings | 4 ++++ projects/packages/sync/composer.json | 2 +- projects/packages/sync/src/class-data-settings.php | 2 ++ projects/packages/sync/src/class-package-version.php | 2 +- .../packages/sync/tests/php/data-test-data-settings.php | 9 +++++++++ .../changelog/update-sync-must-sync-data-settings | 5 +++++ .../plugins/automattic-for-agencies-client/composer.lock | 4 ++-- .../backup/changelog/update-sync-must-sync-data-settings | 5 +++++ projects/plugins/backup/composer.lock | 4 ++-- .../boost/changelog/update-sync-must-sync-data-settings | 5 +++++ projects/plugins/boost/composer.lock | 4 ++-- .../changelog/update-sync-must-sync-data-settings | 5 +++++ projects/plugins/jetpack/composer.lock | 4 ++-- .../changelog/update-sync-must-sync-data-settings | 5 +++++ projects/plugins/migration/composer.lock | 4 ++-- .../changelog/update-sync-must-sync-data-settings | 5 +++++ projects/plugins/mu-wpcom-plugin/composer.lock | 4 ++-- .../changelog/update-sync-must-sync-data-settings | 5 +++++ projects/plugins/protect/composer.lock | 4 ++-- .../search/changelog/update-sync-must-sync-data-settings | 5 +++++ projects/plugins/search/composer.lock | 4 ++-- .../social/changelog/update-sync-must-sync-data-settings | 5 +++++ projects/plugins/social/composer.json | 2 +- projects/plugins/social/composer.lock | 4 ++-- projects/plugins/social/jetpack-social.php | 2 +- .../changelog/update-sync-must-sync-data-settings | 5 +++++ projects/plugins/starter-plugin/composer.lock | 4 ++-- .../changelog/update-sync-must-sync-data-settings | 5 +++++ projects/plugins/videopress/composer.lock | 4 ++-- .../changelog/update-sync-must-sync-data-settings | 5 +++++ projects/plugins/wpcomsh/composer.lock | 4 ++-- 32 files changed, 105 insertions(+), 28 deletions(-) create mode 100644 projects/packages/sync/changelog/update-sync-must-sync-data-settings create mode 100644 projects/plugins/automattic-for-agencies-client/changelog/update-sync-must-sync-data-settings create mode 100644 projects/plugins/backup/changelog/update-sync-must-sync-data-settings create mode 100644 projects/plugins/boost/changelog/update-sync-must-sync-data-settings create mode 100644 projects/plugins/jetpack/changelog/update-sync-must-sync-data-settings create mode 100644 projects/plugins/migration/changelog/update-sync-must-sync-data-settings create mode 100644 projects/plugins/mu-wpcom-plugin/changelog/update-sync-must-sync-data-settings create mode 100644 projects/plugins/protect/changelog/update-sync-must-sync-data-settings create mode 100644 projects/plugins/search/changelog/update-sync-must-sync-data-settings create mode 100644 projects/plugins/social/changelog/update-sync-must-sync-data-settings create mode 100644 projects/plugins/starter-plugin/changelog/update-sync-must-sync-data-settings create mode 100644 projects/plugins/videopress/changelog/update-sync-must-sync-data-settings create mode 100644 projects/plugins/wpcomsh/changelog/update-sync-must-sync-data-settings diff --git a/projects/packages/sync/README.md b/projects/packages/sync/README.md index a5cfdd57b870c..f83dc098b74e3 100644 --- a/projects/packages/sync/README.md +++ b/projects/packages/sync/README.md @@ -66,6 +66,7 @@ the following modules will be enabled no matter the configuration: - `Automattic\\Jetpack\\Sync\\Modules\\Callables` - `Automattic\\Jetpack\\Sync\\Modules\\Constants` - `Automattic\\Jetpack\\Sync\\Modules\\Full_Sync_Immediately` +- `Automattic\\Jetpack\\Sync\\Modules\\Stats` - `Automattic\\Jetpack\\Sync\\Modules\\Updates` ##### `jetpack_sync_options_whitelist` / `jetpack_sync_options_contentless` @@ -99,6 +100,7 @@ It's important to note that we consider a list of certain options required for S - `stylesheet`, // Generic site option - `time_format`, // Generic site option - `timezone_string`, // Generic site option +- `active_plugins`, // Generic site option Passing a list of options will result in syncing those options plus the required ones. diff --git a/projects/packages/sync/changelog/update-sync-must-sync-data-settings b/projects/packages/sync/changelog/update-sync-must-sync-data-settings new file mode 100644 index 0000000000000..d3fa4978b105b --- /dev/null +++ b/projects/packages/sync/changelog/update-sync-must-sync-data-settings @@ -0,0 +1,4 @@ +Significance: minor +Type: changed + +Jetpack Sync: Ensure we always sync heartbeat data and active plugins no matter the consumer config diff --git a/projects/packages/sync/composer.json b/projects/packages/sync/composer.json index eed2016dec83a..ac75f524b7799 100644 --- a/projects/packages/sync/composer.json +++ b/projects/packages/sync/composer.json @@ -59,7 +59,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.1.x-dev" + "dev-trunk": "3.2.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/packages/sync/src/class-data-settings.php b/projects/packages/sync/src/class-data-settings.php index 965f64a33e308..9fb90681a76f2 100644 --- a/projects/packages/sync/src/class-data-settings.php +++ b/projects/packages/sync/src/class-data-settings.php @@ -22,6 +22,7 @@ class Data_Settings { 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync_Immediately', // enable Initial Sync on Site Connection. 'Automattic\\Jetpack\\Sync\\Modules\\Options', 'Automattic\\Jetpack\\Sync\\Modules\\Updates', + 'Automattic\\Jetpack\\Sync\\Modules\\Stats', // Daily heartbeat data. ), 'jetpack_sync_callable_whitelist' => array( 'site_url' => array( 'Automattic\\Jetpack\\Connection\\Urls', 'site_url' ), @@ -86,6 +87,7 @@ class Data_Settings { 'stylesheet', 'time_format', 'timezone_string', + 'active_plugins', ), ); diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index a65bacb617e52..d42c5ab45285f 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.1.5-alpha'; + const PACKAGE_VERSION = '3.2.0-alpha'; const PACKAGE_SLUG = 'sync'; diff --git a/projects/packages/sync/tests/php/data-test-data-settings.php b/projects/packages/sync/tests/php/data-test-data-settings.php index 2551a364754c6..b7a18ef06379c 100644 --- a/projects/packages/sync/tests/php/data-test-data-settings.php +++ b/projects/packages/sync/tests/php/data-test-data-settings.php @@ -33,6 +33,7 @@ public static function data_test_1() { 'Automattic\Jetpack\Sync\Modules\Full_Sync_Immediately', 'Automattic\Jetpack\Sync\Modules\Options', 'Automattic\Jetpack\Sync\Modules\Updates', + 'Automattic\Jetpack\Sync\Modules\Stats', ), 'jetpack_sync_options_whitelist' => \Automattic\Jetpack\Sync\Defaults::$default_options_whitelist, 'jetpack_sync_options_contentless' => \Automattic\Jetpack\Sync\Defaults::$default_options_contentless, @@ -79,6 +80,7 @@ public static function data_test_1_2() { 'Automattic\Jetpack\Sync\Modules\Full_Sync_Immediately', 'Automattic\Jetpack\Sync\Modules\Constants', 'Automattic\Jetpack\Sync\Modules\Updates', + 'Automattic\Jetpack\Sync\Modules\Stats', ), 'jetpack_sync_options_whitelist' => \Automattic\Jetpack\Sync\Defaults::$default_options_whitelist, 'jetpack_sync_options_contentless' => \Automattic\Jetpack\Sync\Defaults::$default_options_contentless, @@ -244,6 +246,7 @@ public static function data_test_3() { 'stylesheet', 'time_format', 'timezone_string', + 'active_plugins', 'test_input_3_option_a', ), 'jetpack_sync_options_contentless' => array(), @@ -533,6 +536,7 @@ public static function data_test_7() { 'stylesheet', 'time_format', 'timezone_string', + 'active_plugins', ), 'jetpack_sync_options_contentless' => \Automattic\Jetpack\Sync\Defaults::$default_options_contentless, 'jetpack_sync_constants_whitelist' => \Automattic\Jetpack\Sync\Defaults::$default_constants_whitelist, @@ -586,6 +590,7 @@ public static function data_test_7_1() { 'stylesheet', 'time_format', 'timezone_string', + 'active_plugins', ), 'jetpack_sync_options_contentless' => \Automattic\Jetpack\Sync\Defaults::$default_options_contentless, 'jetpack_sync_constants_whitelist' => \Automattic\Jetpack\Sync\Defaults::$default_constants_whitelist, @@ -622,6 +627,7 @@ public static function data_test_7_2() { 'Automattic\Jetpack\Sync\Modules\Full_Sync_Immediately', 'Automattic\Jetpack\Sync\Modules\Options', 'Automattic\Jetpack\Sync\Modules\Updates', + 'Automattic\Jetpack\Sync\Modules\Stats', ), 'jetpack_sync_options_whitelist' => array( 'jetpack_sync_non_blocking', @@ -642,6 +648,7 @@ public static function data_test_7_2() { 'stylesheet', 'time_format', 'timezone_string', + 'active_plugins', ), 'jetpack_sync_options_contentless' => \Automattic\Jetpack\Sync\Defaults::$default_options_contentless, 'jetpack_sync_constants_whitelist' => \Automattic\Jetpack\Sync\Defaults::$default_constants_whitelist, @@ -858,6 +865,7 @@ public static function data_test_10() { 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync_Immediately', 'Automattic\\Jetpack\\Sync\\Modules\\Options', 'Automattic\\Jetpack\\Sync\\Modules\\Updates', + 'Automattic\\Jetpack\\Sync\\Modules\\Stats', ), 'jetpack_sync_options_whitelist' => array( 'jetpack_sync_non_blocking', @@ -878,6 +886,7 @@ public static function data_test_10() { 'stylesheet', 'time_format', 'timezone_string', + 'active_plugins', 'test_input_10_option_a', 'test_input_10_option_b', 'test_input_10_option_c', diff --git a/projects/plugins/automattic-for-agencies-client/changelog/update-sync-must-sync-data-settings b/projects/plugins/automattic-for-agencies-client/changelog/update-sync-must-sync-data-settings new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/automattic-for-agencies-client/changelog/update-sync-must-sync-data-settings @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/automattic-for-agencies-client/composer.lock b/projects/plugins/automattic-for-agencies-client/composer.lock index 66a746c9c2bcd..b5632b7274ee5 100644 --- a/projects/plugins/automattic-for-agencies-client/composer.lock +++ b/projects/plugins/automattic-for-agencies-client/composer.lock @@ -862,7 +862,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "6b8af670d924432fb2457a8eb59cb32330bfc25a" + "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" }, "require": { "automattic/jetpack-connection": "@dev", @@ -895,7 +895,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.1.x-dev" + "dev-trunk": "3.2.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/backup/changelog/update-sync-must-sync-data-settings b/projects/plugins/backup/changelog/update-sync-must-sync-data-settings new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/backup/changelog/update-sync-must-sync-data-settings @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/backup/composer.lock b/projects/plugins/backup/composer.lock index 03daa2ed6c2e7..2ed0f51039a8d 100644 --- a/projects/plugins/backup/composer.lock +++ b/projects/plugins/backup/composer.lock @@ -1526,7 +1526,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "6b8af670d924432fb2457a8eb59cb32330bfc25a" + "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1559,7 +1559,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.1.x-dev" + "dev-trunk": "3.2.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/boost/changelog/update-sync-must-sync-data-settings b/projects/plugins/boost/changelog/update-sync-must-sync-data-settings new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/boost/changelog/update-sync-must-sync-data-settings @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/boost/composer.lock b/projects/plugins/boost/composer.lock index a3b704166282b..5cfad81aa26ea 100644 --- a/projects/plugins/boost/composer.lock +++ b/projects/plugins/boost/composer.lock @@ -1510,7 +1510,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "6b8af670d924432fb2457a8eb59cb32330bfc25a" + "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1543,7 +1543,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.1.x-dev" + "dev-trunk": "3.2.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/jetpack/changelog/update-sync-must-sync-data-settings b/projects/plugins/jetpack/changelog/update-sync-must-sync-data-settings new file mode 100644 index 0000000000000..a1c1831fa1ef7 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-sync-must-sync-data-settings @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated composer.lock. + + diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index 94863f21c3b3d..d73c8ba62b5a4 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -2598,7 +2598,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "6b8af670d924432fb2457a8eb59cb32330bfc25a" + "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2631,7 +2631,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.1.x-dev" + "dev-trunk": "3.2.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/migration/changelog/update-sync-must-sync-data-settings b/projects/plugins/migration/changelog/update-sync-must-sync-data-settings new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/migration/changelog/update-sync-must-sync-data-settings @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/migration/composer.lock b/projects/plugins/migration/composer.lock index 903c8b0950e9f..1bd19c04c1b5a 100644 --- a/projects/plugins/migration/composer.lock +++ b/projects/plugins/migration/composer.lock @@ -1526,7 +1526,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "6b8af670d924432fb2457a8eb59cb32330bfc25a" + "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1559,7 +1559,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.1.x-dev" + "dev-trunk": "3.2.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/mu-wpcom-plugin/changelog/update-sync-must-sync-data-settings b/projects/plugins/mu-wpcom-plugin/changelog/update-sync-must-sync-data-settings new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/mu-wpcom-plugin/changelog/update-sync-must-sync-data-settings @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/mu-wpcom-plugin/composer.lock b/projects/plugins/mu-wpcom-plugin/composer.lock index fafc0bcb612a5..0126fc55e076d 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.lock +++ b/projects/plugins/mu-wpcom-plugin/composer.lock @@ -1437,7 +1437,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "6b8af670d924432fb2457a8eb59cb32330bfc25a" + "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1470,7 +1470,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.1.x-dev" + "dev-trunk": "3.2.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/protect/changelog/update-sync-must-sync-data-settings b/projects/plugins/protect/changelog/update-sync-must-sync-data-settings new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/protect/changelog/update-sync-must-sync-data-settings @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/protect/composer.lock b/projects/plugins/protect/composer.lock index df269136d2920..473917adbd2e5 100644 --- a/projects/plugins/protect/composer.lock +++ b/projects/plugins/protect/composer.lock @@ -1578,7 +1578,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "6b8af670d924432fb2457a8eb59cb32330bfc25a" + "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1611,7 +1611,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.1.x-dev" + "dev-trunk": "3.2.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/search/changelog/update-sync-must-sync-data-settings b/projects/plugins/search/changelog/update-sync-must-sync-data-settings new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/search/changelog/update-sync-must-sync-data-settings @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/search/composer.lock b/projects/plugins/search/composer.lock index 51610853f58f8..9ccb947482da6 100644 --- a/projects/plugins/search/composer.lock +++ b/projects/plugins/search/composer.lock @@ -1531,7 +1531,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "6b8af670d924432fb2457a8eb59cb32330bfc25a" + "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1564,7 +1564,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.1.x-dev" + "dev-trunk": "3.2.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/social/changelog/update-sync-must-sync-data-settings b/projects/plugins/social/changelog/update-sync-must-sync-data-settings new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/social/changelog/update-sync-must-sync-data-settings @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/social/composer.json b/projects/plugins/social/composer.json index 27c9849d8071d..c79f8fcbe7954 100644 --- a/projects/plugins/social/composer.json +++ b/projects/plugins/social/composer.json @@ -84,6 +84,6 @@ "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true }, - "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_socialⓥ4_5_2" + "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_socialⓥ4_5_3_alpha" } } diff --git a/projects/plugins/social/composer.lock b/projects/plugins/social/composer.lock index 0d987cbd6e595..b3016af53efa4 100644 --- a/projects/plugins/social/composer.lock +++ b/projects/plugins/social/composer.lock @@ -1521,7 +1521,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "6b8af670d924432fb2457a8eb59cb32330bfc25a" + "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1554,7 +1554,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.1.x-dev" + "dev-trunk": "3.2.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/social/jetpack-social.php b/projects/plugins/social/jetpack-social.php index 855d11146cfc4..f3bd3a204b52a 100644 --- a/projects/plugins/social/jetpack-social.php +++ b/projects/plugins/social/jetpack-social.php @@ -4,7 +4,7 @@ * Plugin Name: Jetpack Social * Plugin URI: https://wordpress.org/plugins/jetpack-social * Description: Share your site’s posts on several social media networks automatically when you publish a new post. - * Version: 4.5.2 + * Version: 4.5.3-alpha * Author: Automattic - Jetpack Social team * Author URI: https://jetpack.com/social/ * License: GPLv2 or later diff --git a/projects/plugins/starter-plugin/changelog/update-sync-must-sync-data-settings b/projects/plugins/starter-plugin/changelog/update-sync-must-sync-data-settings new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/starter-plugin/changelog/update-sync-must-sync-data-settings @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/starter-plugin/composer.lock b/projects/plugins/starter-plugin/composer.lock index 9b9007e430f8a..234a0e2e6218b 100644 --- a/projects/plugins/starter-plugin/composer.lock +++ b/projects/plugins/starter-plugin/composer.lock @@ -1382,7 +1382,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "6b8af670d924432fb2457a8eb59cb32330bfc25a" + "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1415,7 +1415,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.1.x-dev" + "dev-trunk": "3.2.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/videopress/changelog/update-sync-must-sync-data-settings b/projects/plugins/videopress/changelog/update-sync-must-sync-data-settings new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/videopress/changelog/update-sync-must-sync-data-settings @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/videopress/composer.lock b/projects/plugins/videopress/composer.lock index 3d3dbfd46f446..d7599493c8639 100644 --- a/projects/plugins/videopress/composer.lock +++ b/projects/plugins/videopress/composer.lock @@ -1382,7 +1382,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "6b8af670d924432fb2457a8eb59cb32330bfc25a" + "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1415,7 +1415,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.1.x-dev" + "dev-trunk": "3.2.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/wpcomsh/changelog/update-sync-must-sync-data-settings b/projects/plugins/wpcomsh/changelog/update-sync-must-sync-data-settings new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/update-sync-must-sync-data-settings @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index cd0fcc68d056c..19c674f0cc8d4 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -1636,7 +1636,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "6b8af670d924432fb2457a8eb59cb32330bfc25a" + "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1669,7 +1669,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.1.x-dev" + "dev-trunk": "3.2.x-dev" }, "dependencies": { "test-only": [ From 8ee2523fd4ac82a335f17a8a6c5f189ded0972a2 Mon Sep 17 00:00:00 2001 From: Addison Stavlo Date: Wed, 3 Jul 2024 10:52:09 -0400 Subject: [PATCH 005/254] Jetpack mu and wpcomsh - hide wpcom items for non wpcom site users (#38155) * hide wpcom items for non connected users * remove marketplace link as well * consolidate early return conditionals * add changelogs * update changelog * update wpcomsh version * update jmw version * composer goo... * another changelog.... * oh my lord the changelog had a newline in it... * another plugin to version bump... --- .../add-hide-wpcom-wpadmin-items-from-non-wpcom-users | 4 ++++ projects/packages/jetpack-mu-wpcom/composer.json | 2 +- projects/packages/jetpack-mu-wpcom/package.json | 2 +- .../jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php | 6 +++--- .../src/features/wpcom-site-menu/wpcom-site-menu.php | 2 +- .../src/features/wpcom-themes/wpcom-themes.php | 4 ++-- .../add-hide-wpcom-wpadmin-items-from-non-wpcom-users | 4 ++++ projects/plugins/mu-wpcom-plugin/composer.json | 2 +- projects/plugins/mu-wpcom-plugin/composer.lock | 4 ++-- projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php | 2 +- projects/plugins/mu-wpcom-plugin/package.json | 2 +- .../add-hide-wpcom-wpadmin-items-from-non-wpcom-users | 4 ++++ projects/plugins/wpcomsh/composer.json | 2 +- projects/plugins/wpcomsh/composer.lock | 4 ++-- projects/plugins/wpcomsh/package.json | 2 +- projects/plugins/wpcomsh/wpcom-plugins/plugins.php | 3 +++ projects/plugins/wpcomsh/wpcomsh.php | 4 ++-- 17 files changed, 34 insertions(+), 19 deletions(-) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/add-hide-wpcom-wpadmin-items-from-non-wpcom-users create mode 100644 projects/plugins/mu-wpcom-plugin/changelog/add-hide-wpcom-wpadmin-items-from-non-wpcom-users create mode 100644 projects/plugins/wpcomsh/changelog/add-hide-wpcom-wpadmin-items-from-non-wpcom-users diff --git a/projects/packages/jetpack-mu-wpcom/changelog/add-hide-wpcom-wpadmin-items-from-non-wpcom-users b/projects/packages/jetpack-mu-wpcom/changelog/add-hide-wpcom-wpadmin-items-from-non-wpcom-users new file mode 100644 index 0000000000000..139fbc24b1564 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/add-hide-wpcom-wpadmin-items-from-non-wpcom-users @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Adds checks to remove wpcom items and links in wp-admin for users who are not connected to wpcom. diff --git a/projects/packages/jetpack-mu-wpcom/composer.json b/projects/packages/jetpack-mu-wpcom/composer.json index 0a9304ce5600c..f2bfe60b99159 100644 --- a/projects/packages/jetpack-mu-wpcom/composer.json +++ b/projects/packages/jetpack-mu-wpcom/composer.json @@ -61,7 +61,7 @@ }, "autotagger": true, "branch-alias": { - "dev-trunk": "5.42.x-dev" + "dev-trunk": "5.43.x-dev" }, "textdomain": "jetpack-mu-wpcom", "version-constants": { diff --git a/projects/packages/jetpack-mu-wpcom/package.json b/projects/packages/jetpack-mu-wpcom/package.json index d0ee8d304beed..bb905f25fadd3 100644 --- a/projects/packages/jetpack-mu-wpcom/package.json +++ b/projects/packages/jetpack-mu-wpcom/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-mu-wpcom", - "version": "5.42.2-alpha", + "version": "5.43.0-alpha", "description": "Enhances your site with features powered by WordPress.com", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/jetpack-mu-wpcom/#readme", "bugs": { diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index b62ea5e4352dc..d5cfd788387d9 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -13,7 +13,7 @@ * Jetpack_Mu_Wpcom main class. */ class Jetpack_Mu_Wpcom { - const PACKAGE_VERSION = '5.42.2-alpha'; + const PACKAGE_VERSION = '5.43.0-alpha'; const PKG_DIR = __DIR__ . '/../'; const BASE_DIR = __DIR__ . '/'; const BASE_FILE = __FILE__; @@ -291,7 +291,7 @@ public static function load_verbum_comments_admin() { * @return void */ public static function load_wpcom_command_palette() { - if ( is_agency_managed_site() ) { + if ( is_agency_managed_site() || ! current_user_has_wpcom_account() ) { return; } require_once __DIR__ . '/features/wpcom-command-palette/wpcom-command-palette.php'; @@ -319,7 +319,7 @@ public static function load_wpcom_admin_interface() { * Load WPCOM Site Management widget. */ public static function load_wpcom_site_management_widget() { - if ( is_agency_managed_site() ) { + if ( is_agency_managed_site() || ! current_user_has_wpcom_account() || ! current_user_can( 'manage_options' ) ) { return; } if ( function_exists( 'wpcom_is_nav_redesign_enabled' ) && wpcom_is_nav_redesign_enabled() ) { diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php index 4b9e340f700a0..373bb6620e860 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php @@ -563,7 +563,7 @@ function wpcom_add_plugins_menu() { } } - if ( ! $is_nav_redesign_enabled || $is_agency_managed_site ) { + if ( ! $is_nav_redesign_enabled || $is_agency_managed_site || ! current_user_has_wpcom_account() ) { return; } diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php index c7bb9dbbb1fd4..b2e9240c33d26 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php @@ -13,7 +13,7 @@ * Displays a banner before the theme browser that links to the WP.com Theme Showcase. */ function wpcom_themes_show_banner() { - if ( is_agency_managed_site() ) { + if ( is_agency_managed_site() || ! current_user_has_wpcom_account() ) { return; } $site_slug = wp_parse_url( home_url(), PHP_URL_HOST ); @@ -58,7 +58,7 @@ function wpcom_themes_add_theme_showcase_menu() { if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { return; } - if ( is_agency_managed_site() ) { + if ( is_agency_managed_site() || ! current_user_has_wpcom_account() ) { return; } diff --git a/projects/plugins/mu-wpcom-plugin/changelog/add-hide-wpcom-wpadmin-items-from-non-wpcom-users b/projects/plugins/mu-wpcom-plugin/changelog/add-hide-wpcom-wpadmin-items-from-non-wpcom-users new file mode 100644 index 0000000000000..15580dfa092cf --- /dev/null +++ b/projects/plugins/mu-wpcom-plugin/changelog/add-hide-wpcom-wpadmin-items-from-non-wpcom-users @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Composer lock update. diff --git a/projects/plugins/mu-wpcom-plugin/composer.json b/projects/plugins/mu-wpcom-plugin/composer.json index 9a02e38b609e2..82c945937e641 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.json +++ b/projects/plugins/mu-wpcom-plugin/composer.json @@ -46,6 +46,6 @@ ] }, "config": { - "autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_3_3_alpha" + "autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_4_0_alpha" } } diff --git a/projects/plugins/mu-wpcom-plugin/composer.lock b/projects/plugins/mu-wpcom-plugin/composer.lock index 0126fc55e076d..374d96d280fca 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.lock +++ b/projects/plugins/mu-wpcom-plugin/composer.lock @@ -937,7 +937,7 @@ "dist": { "type": "path", "url": "../../packages/jetpack-mu-wpcom", - "reference": "b0e59b4274535901640ddc2f61fa092bef3631fd" + "reference": "7b072fbd9b7aad2b804a90afa14f307aaa2c12db" }, "require": { "automattic/jetpack-assets": "@dev", @@ -970,7 +970,7 @@ }, "autotagger": true, "branch-alias": { - "dev-trunk": "5.42.x-dev" + "dev-trunk": "5.43.x-dev" }, "textdomain": "jetpack-mu-wpcom", "version-constants": { diff --git a/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php b/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php index 0e369cf372034..b18fb38d85961 100644 --- a/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php +++ b/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php @@ -3,7 +3,7 @@ * * Plugin Name: WordPress.com Features * Description: Test plugin for the jetpack-mu-wpcom package - * Version: 2.3.3-alpha + * Version: 2.4.0-alpha * Author: Automattic * License: GPLv2 or later * Text Domain: jetpack-mu-wpcom-plugin diff --git a/projects/plugins/mu-wpcom-plugin/package.json b/projects/plugins/mu-wpcom-plugin/package.json index c4b4a788f77f7..3e431f18a402b 100644 --- a/projects/plugins/mu-wpcom-plugin/package.json +++ b/projects/plugins/mu-wpcom-plugin/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-mu-wpcom-plugin", - "version": "2.3.3-alpha", + "version": "2.4.0-alpha", "description": "Test plugin for the jetpack-mu-wpcom package", "homepage": "https://jetpack.com", "bugs": { diff --git a/projects/plugins/wpcomsh/changelog/add-hide-wpcom-wpadmin-items-from-non-wpcom-users b/projects/plugins/wpcomsh/changelog/add-hide-wpcom-wpadmin-items-from-non-wpcom-users new file mode 100644 index 0000000000000..65371a6b06192 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/add-hide-wpcom-wpadmin-items-from-non-wpcom-users @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Added a check to hide the plugins banner for non-wpcom connected users. diff --git a/projects/plugins/wpcomsh/composer.json b/projects/plugins/wpcomsh/composer.json index 04b657502cf23..1098de7cb1343 100644 --- a/projects/plugins/wpcomsh/composer.json +++ b/projects/plugins/wpcomsh/composer.json @@ -130,7 +130,7 @@ "composer/installers": true, "roots/wordpress-core-installer": true }, - "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_27_3_alpha" + "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_28_0_alpha" }, "extra": { "mirror-repo": "Automattic/wpcom-site-helper", diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index 19c674f0cc8d4..153cbbe789207 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -1074,7 +1074,7 @@ "dist": { "type": "path", "url": "../../packages/jetpack-mu-wpcom", - "reference": "b0e59b4274535901640ddc2f61fa092bef3631fd" + "reference": "7b072fbd9b7aad2b804a90afa14f307aaa2c12db" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1107,7 +1107,7 @@ }, "autotagger": true, "branch-alias": { - "dev-trunk": "5.42.x-dev" + "dev-trunk": "5.43.x-dev" }, "textdomain": "jetpack-mu-wpcom", "version-constants": { diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index dd25e2f735091..732fcf9e89431 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -3,7 +3,7 @@ "name": "@automattic/jetpack-wpcomsh", "description": "A helper for connecting WordPress.com sites to external host infrastructure.", "homepage": "https://jetpack.com", - "version": "3.27.3-alpha", + "version": "3.28.0-alpha", "bugs": { "url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh" }, diff --git a/projects/plugins/wpcomsh/wpcom-plugins/plugins.php b/projects/plugins/wpcomsh/wpcom-plugins/plugins.php index f8a85b2a97ac6..f03ab13f22662 100644 --- a/projects/plugins/wpcomsh/wpcom-plugins/plugins.php +++ b/projects/plugins/wpcomsh/wpcom-plugins/plugins.php @@ -21,6 +21,9 @@ function wpcomsh_plugins_show_banner() { if ( ! empty( get_option( 'is_fully_managed_agency_site' ) ) ) { return; } + if ( function_exists( 'current_user_has_wpcom_account' ) && ! current_user_has_wpcom_account() ) { + return; + } $site_slug = wp_parse_url( home_url(), PHP_URL_HOST ); $wpcom_logo = plugins_url( 'images/wpcom-logo.svg', __FILE__ ); diff --git a/projects/plugins/wpcomsh/wpcomsh.php b/projects/plugins/wpcomsh/wpcomsh.php index a96d1818f1f9a..f89f56bae46c1 100644 --- a/projects/plugins/wpcomsh/wpcomsh.php +++ b/projects/plugins/wpcomsh/wpcomsh.php @@ -2,7 +2,7 @@ /** * Plugin Name: WordPress.com Site Helper * Description: A helper for connecting WordPress.com sites to external host infrastructure. - * Version: 3.27.3-alpha + * Version: 3.28.0-alpha * Author: Automattic * Author URI: http://automattic.com/ * @@ -10,7 +10,7 @@ */ // Increase version number if you change something in wpcomsh. -define( 'WPCOMSH_VERSION', '3.27.3-alpha' ); +define( 'WPCOMSH_VERSION', '3.28.0-alpha' ); // If true, Typekit fonts will be available in addition to Google fonts add_filter( 'jetpack_fonts_enable_typekit', '__return_true' ); From b87a1a0b986cb572c02d50da64b26cb035861d3e Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Wed, 3 Jul 2024 12:33:56 -0400 Subject: [PATCH 006/254] Disable jetpackedgephp74 and jetpackedge82 pending rename (#38176) We're planning to rename these sites to jetpackedgephpold and jetpackedgephpnew to better reflect their purpose. To avoid potential disruption, though, we have to comment out the references to the old names while we're doing that. See p1720019588866209-slack-C05Q5HSS013 for details. --- .../files/jetpack-staging-sites/k6-shared.js | 2 ++ .../update-jetpack-staging-sites.sh | 25 ++++++++++--------- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/.github/files/jetpack-staging-sites/k6-shared.js b/.github/files/jetpack-staging-sites/k6-shared.js index fb79f2da89856..e62eb047c0a6e 100644 --- a/.github/files/jetpack-staging-sites/k6-shared.js +++ b/.github/files/jetpack-staging-sites/k6-shared.js @@ -14,6 +14,7 @@ export const sites = [ note: 'normal site', blog_id: '215379549', }, + /* Comment out pending rename. p1720019588866209-slack-C05Q5HSS013 { url: 'https://jetpackedgephp74.wpcomstaging.com', note: 'php 7.4', @@ -24,6 +25,7 @@ export const sites = [ note: 'php 8.2', blog_id: '215380000', }, + */ { url: 'https://jetpackedgeecomm.wpcomstaging.com', note: 'ecommerce plan', diff --git a/.github/files/jetpack-staging-sites/update-jetpack-staging-sites.sh b/.github/files/jetpack-staging-sites/update-jetpack-staging-sites.sh index 15299517da7c1..118a72da426bd 100755 --- a/.github/files/jetpack-staging-sites/update-jetpack-staging-sites.sh +++ b/.github/files/jetpack-staging-sites/update-jetpack-staging-sites.sh @@ -18,18 +18,6 @@ SITES='{ "ssh_string": "jetpackedge.wordpress.com@sftp.wp.com", "blog_id": "215379549" }, - "jetpackedgephp74.wpcomstaging.com": { - "url": "https://jetpackedgephp74.wpcomstaging.com/", - "note": "php 7.4", - "ssh_string": "jetpackedgephp74.wordpress.com@sftp.wp.com", - "blog_id": "215379848" - }, - "jetpackedgephp82.wpcomstaging.com": { - "url": "https://jetpackedgephp82.wpcomstaging.com/", - "note": "php 8.2", - "ssh_string": "jetpackedgephp82.wordpress.com@sftp.wp.com", - "blog_id": "215380000" - }, "jetpackedgeecomm.wpcomstaging.com": { "url": "https://jetpackedgeecomm.wpcomstaging.com/", "note": "ecommerce plan", @@ -55,6 +43,19 @@ SITES='{ "blog_id": "215380213" } }' +# Removed from the above pending a rename. p1720019588866209-slack-C05Q5HSS013 +# "jetpackedgephp74.wpcomstaging.com": { +# "url": "https://jetpackedgephp74.wpcomstaging.com/", +# "note": "php 7.4", +# "ssh_string": "jetpackedgephp74.wordpress.com@sftp.wp.com", +# "blog_id": "215379848" +# }, +# "jetpackedgephp82.wpcomstaging.com": { +# "url": "https://jetpackedgephp82.wpcomstaging.com/", +# "note": "php 8.2", +# "ssh_string": "jetpackedgephp82.wordpress.com@sftp.wp.com", +# "blog_id": "215380000" +# }, #################################################### ## Fetch plugin data from the Jetpack Beta Builder. From b113b2e035e564f92c540ac710c73d89424c5591 Mon Sep 17 00:00:00 2001 From: Omar Alshaker Date: Wed, 3 Jul 2024 19:17:08 +0200 Subject: [PATCH 007/254] =?UTF-8?q?WordPress.com:=20Add=20the=20Help=20Cen?= =?UTF-8?q?ter=20App=20=E2=9C=A8=20(#38093)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../packages/jetpack-mu-wpcom/.gitattributes | 5 +- projects/packages/jetpack-mu-wpcom/.gitignore | 1 + .../bin/download-help-center-languages.js | 68 ++++ .../changelog/move-help-center | 4 + .../packages/jetpack-mu-wpcom/package.json | 2 +- .../src/class-jetpack-mu-wpcom.php | 4 + .../src/features/custom-css/custom-css.php | 7 + .../src/features/help-center/README.md | 62 +++ .../help-center/class-help-center.php | 381 ++++++++++++++++++ ...class-wp-rest-help-center-authenticate.php | 78 ++++ ...rest-help-center-email-support-enabled.php | 53 +++ .../class-wp-rest-help-center-fetch-post.php | 103 +++++ .../class-wp-rest-help-center-forum.php | 105 +++++ ...-wp-rest-help-center-jetpack-search-ai.php | 65 +++ .../class-wp-rest-help-center-odie.php | 352 ++++++++++++++++ .../class-wp-rest-help-center-search.php | 73 ++++ .../class-wp-rest-help-center-sibyl.php | 60 +++ ...s-wp-rest-help-center-support-activity.php | 53 +++ ...ass-wp-rest-help-center-support-status.php | 90 +++++ .../class-wp-rest-help-center-ticket.php | 92 +++++ .../class-wp-rest-help-center-user-fields.php | 66 +++ .../changelog/move-help-center | 5 + .../wpcomsh/changelog/move-help-center | 5 + 23 files changed, 1732 insertions(+), 2 deletions(-) create mode 100644 projects/packages/jetpack-mu-wpcom/bin/download-help-center-languages.js create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/move-help-center create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/help-center/README.md create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-authenticate.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-email-support-enabled.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-fetch-post.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-forum.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-jetpack-search-ai.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-odie.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-search.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-sibyl.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-support-activity.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-support-status.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-ticket.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-user-fields.php create mode 100644 projects/plugins/mu-wpcom-plugin/changelog/move-help-center create mode 100644 projects/plugins/wpcomsh/changelog/move-help-center diff --git a/projects/packages/jetpack-mu-wpcom/.gitattributes b/projects/packages/jetpack-mu-wpcom/.gitattributes index b08f3e3ad859e..123a3889465f0 100644 --- a/projects/packages/jetpack-mu-wpcom/.gitattributes +++ b/projects/packages/jetpack-mu-wpcom/.gitattributes @@ -6,7 +6,10 @@ package.json export-ignore # Files to include in the mirror repo, but excluded via gitignore # Remember to end all directories with `/**` to properly tag every file. # /src/js/example.min.js production-include -src/build/** production-include +src/build/** production-include + +# We don't want langauges files in git, but we do want them rsynced. +src/features/help-center/languages/** production-include # Files to exclude from the mirror repo, but included in the monorepo. # Remember to end all directories with `/**` to properly tag every file. diff --git a/projects/packages/jetpack-mu-wpcom/.gitignore b/projects/packages/jetpack-mu-wpcom/.gitignore index 8397d5bb2e301..b8c2e07945268 100644 --- a/projects/packages/jetpack-mu-wpcom/.gitignore +++ b/projects/packages/jetpack-mu-wpcom/.gitignore @@ -4,3 +4,4 @@ vendor/ node_modules/ wordpress/ playwright-report/ +src/features/help-center/languages/ diff --git a/projects/packages/jetpack-mu-wpcom/bin/download-help-center-languages.js b/projects/packages/jetpack-mu-wpcom/bin/download-help-center-languages.js new file mode 100644 index 0000000000000..8f80edf8cd3e1 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/bin/download-help-center-languages.js @@ -0,0 +1,68 @@ +const fs = require( 'fs' ); +const https = require( 'https' ); +const path = require( 'path' ); + +[ + 'ar', + 'de-ch', + 'de', + 'de_formal', + 'el-po', + 'es-cl', + 'es-mx', + 'es', + 'fr-be', + 'fr-ca', + 'fr-ch', + 'fr', + 'he', + 'id', + 'it', + 'ja', + 'ko', + 'nl', + 'pt-br', + 'ro', + 'ru', + 'sv', + 'tr', + 'zh-cn', + 'zh-sg', + 'zh-tw', +].forEach( lang => { + const url = `https://widgets.wp.com/help-center/languages/${ lang }-v1.1.json`; + const dir = path.resolve( 'src', 'features', 'help-center', 'languages' ); + const dest = path.resolve( dir, `${ lang }-help-center.json` ); + + fs.mkdirSync( dir, { recursive: true } ); + + https.get( url, response => { + let data = ''; + + response.on( 'data', chunk => { + data += chunk; + } ); + + response + .on( 'end', () => { + const dataParsed = JSON.parse( data ); + dataParsed[ '' ][ 'plural-forms' ] = dataParsed[ '' ].plural_forms; + dataParsed[ '' ].lang = dataParsed[ '' ].language; + + const JED = { + 'translation-revision-date': new Date().toISOString(), + generator: 'Jetpack', + domain: 'jetpack-mu-wpcom', + locale_data: { + messages: dataParsed, + }, + }; + + fs.writeFileSync( dest, JSON.stringify( JED ) ); + } ) + .on( 'error', error => { + // eslint-disable-next-line no-console + console.error( `Downloading Help Center languages (${ lang }) failed with error:`, error ); + } ); + } ); +} ); diff --git a/projects/packages/jetpack-mu-wpcom/changelog/move-help-center b/projects/packages/jetpack-mu-wpcom/changelog/move-help-center new file mode 100644 index 0000000000000..88df58c20b65a --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/move-help-center @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Added Help Center (migration from ETK) diff --git a/projects/packages/jetpack-mu-wpcom/package.json b/projects/packages/jetpack-mu-wpcom/package.json index bb905f25fadd3..e48b7da1d58ed 100644 --- a/projects/packages/jetpack-mu-wpcom/package.json +++ b/projects/packages/jetpack-mu-wpcom/package.json @@ -16,7 +16,7 @@ "author": "Automattic", "scripts": { "build": "echo 'Not implemented.'", - "build-js": "pnpm clean && webpack", + "build-js": "pnpm clean && webpack && node bin/download-help-center-languages.js", "build-production": "echo 'Not implemented.'", "build-production-js": "NODE_ENV=production BABEL_ENV=production pnpm build-js", "lint": "eslint --ext .js,.jsx,.cjs,.mjs,.ts,.tsx .", diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index d5cfd788387d9..b31ea26cb571d 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -85,6 +85,10 @@ public static function load_features() { require_once __DIR__ . '/features/cloudflare-analytics/cloudflare-analytics.php'; require_once __DIR__ . '/features/error-reporting/error-reporting.php'; require_once __DIR__ . '/features/first-posts-stream/first-posts-stream-helpers.php'; + // To avoid potential collisions with ETK. + if ( ! class_exists( 'A8C\FSE\Help_Center' ) ) { + require_once __DIR__ . '/features/help-center/class-help-center.php'; + } require_once __DIR__ . '/features/import-customizations/import-customizations.php'; require_once __DIR__ . '/features/marketplace-products-updater/class-marketplace-products-updater.php'; require_once __DIR__ . '/features/media/heif-support.php'; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/custom-css/custom-css.php b/projects/packages/jetpack-mu-wpcom/src/features/custom-css/custom-css.php index fd47560deb629..bb7ef3b786e84 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/custom-css/custom-css.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/custom-css/custom-css.php @@ -582,6 +582,8 @@ public static function sanitize_css( $css, $args = array() ) { /** * Override $content_width in customizer previews. + * + * @suppress PhanNonClassMethodCall -- Phan doesn't know the type of wp_customize. */ public static function preview_content_width() { global $wp_customize; @@ -647,6 +649,8 @@ public static function skip_stylesheet() { * * @param bool $skip_value Should the stylesheet be skipped. * + * @suppress PhanNonClassMethodCall -- Phan doesn't know the type of wp_customize. + * * @return null|bool */ public static function preview_skip_stylesheet( $skip_value ) { @@ -811,6 +815,8 @@ public static function customize_register( $wp_customize ) { * * @param mixed $css Value of the setting. * + * @suppress PhanNonClassMethodCall -- Phan doesn't know the type of wp_customize. + * * @return mixed|string */ public static function sanitize_css_callback( $css ) { @@ -850,6 +856,7 @@ public static function is_preview() { * * @param string $css Custom CSS content. * + * @suppress PhanNonClassMethodCall -- Phan doesn't know the type of wp_customize. * @return mixed */ public static function customize_preview_wp_get_custom_css( $css ) { diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/README.md b/projects/packages/jetpack-mu-wpcom/src/features/help-center/README.md new file mode 100644 index 0000000000000..0ca916d98f8d6 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/README.md @@ -0,0 +1,62 @@ +# Help Center + +image + +The Help Center is the main tool our customers use to reach for support. + +## Development + +The Help Center is a bit complicated because it runs in multiple different environments. + +1. In Calypso. +2. In Simple sites + - as a plugin to Gutenberg editor. + - as a wpadminbar menu item. +4. In Atomic sites + - as a plugin to Gutenberg editor. + - A plugin when the site is connected to Jetpack. + - A minimal plugin when the site is disconnected from Jetpack. This plugiy simple links to wp.com/help. + - as a wpadminbar menu item. + - A menu item that opens the Help Center when connected to Jetpack. + - A minimal plugin when the site is disconnected from Jetpack. This plugiy simple links to wp.com/help. + +### How to develop the Help Center + +#### In Calypso + +Follow the classic Calypso development setup. Run `yarn start` and edit away. Nothing else should be needed. + +#### In Simple sites + +0. Go to Calypso repository root. +1. cd into `packages/help-center`. +2. run `yarn dev --sync`. +3. Sandbox your site and `widgets.wp.com`. +4. Your changes should be reflected on the site live. + +#### In Atomic sites + +If you're making changes to JS and CSS files in Calypso (widgets.wp.com), you can follow the same instructions of Simple sites. **Be proxied during development so Jetpack gives JS files random cache busters**. + +If you're making changes to PHP files, use the normal `jetpack-mu-wpcom` development flow. + +> [!IMPORTANT] +> If you make changes to the *.asset.json files, i.e add or remove dependencies, these files won't be synced with the site as Jetpack pulls these files via network. And since Jetpack pulls from production and not your sandbox, you'll have to deploy first for these changes to take effect. + +If you do want to modify PHP files. Please follow the development process of [`jetpack-mu-plugin`](https://github.com/Automattic/jetpack/blob/trunk/projects/packages/jetpack-mu-wpcom/README.md). + +### Translations + +Translation are download from `widgets.wp.com/help-center/languages` during `jetpack-mu-plugin` build process. Please cd into `projects/packages/jetpack-mu-wpcom` and run: + +1. pnpm run build-production-js +2. jetpack rsync mu-wpcom-plugin + +This will update the translations files. + +### Deployment + +After every change to the Help Center PHP files, you'll have to deploy `jetpack-mu-plugin`. + +> [!IMPORTANT] +> If you add new phrases to the Help Center. They will only be translated in Atomic sites after `jetpack-mu-plugin` is released. Which happens twice a day. diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php new file mode 100644 index 0000000000000..616ca34424fc4 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php @@ -0,0 +1,381 @@ +add_menu( + array( + 'id' => 'help-center', + 'title' => self::download_asset( 'widgets.wp.com/help-center/help-icon.svg', false ), + 'parent' => 'top-secondary', + 'href' => $this->get_help_center_url(), + 'meta' => array( + 'html' => '
', + 'class' => 'menupop', + 'target' => '_blank', + ), + ) + ); + }, + 100000 + ); + } + + // If the user is not connected, the Help Center icon will link to the support page. + // The disconnected version is significantly smaller than the connected version. + wp_enqueue_script( + 'help-center', + 'https://widgets.wp.com/help-center/help-center-' . $variant . '.min.js', + is_array( $script_dependencies ) ? $script_dependencies : array(), + $version, + true + ); + + wp_enqueue_style( + 'help-center-style', + 'https://widgets.wp.com/help-center/help-center-' . $variant . ( is_rtl() ? '.rtl.css' : '.css' ), + array(), + $version + ); + + // This information is only needed for the connected version of the help center. + if ( $variant !== 'wp-admin-disconnected' && $variant !== 'gutenberg-disconnected' ) { + // Adds feature flags for development. + wp_add_inline_script( + 'help-center', + 'const helpCenterFeatureFlags = ' . wp_json_encode( + array( + 'loadNextStepsTutorial' => self::is_next_steps_tutorial_enabled(), + ) + ), + 'before' + ); + + $user_id = get_current_user_id(); + $user_data = get_userdata( $user_id ); + $username = $user_data->user_login; + $user_email = $user_data->user_email; + $display_name = $user_data->display_name; + $avatar_url = function_exists( 'wpcom_get_avatar_url' ) ? wpcom_get_avatar_url( $user_email, 64, '', true )[0] : get_avatar_url( $user_id ); + + wp_add_inline_script( + 'help-center', + 'const helpCenterData = ' . wp_json_encode( + array( + 'currentUser' => array( + 'ID' => $user_id, + 'username' => $username, + 'display_name' => $display_name, + 'avatar_URL' => $avatar_url, + 'email' => $user_email, + ), + 'site' => $this->get_current_site(), + 'locale' => self::determine_iso_639_locale(), + ) + ), + 'before' + ); + } + + // `wp_set_script_translations` uses es_ES as the text domain, but we don't have translations for that. + // We want the locale to be 639 (i.e en, es, fr, etc). + add_filter( 'pre_determine_locale', array( $this, 'determine_iso_639_locale' ), 1 ); + + // phpcs:ignore Jetpack.Functions.I18n.TextDomainMismatch -- Jetpack is not responsible for the translate of this script. + wp_set_script_translations( 'help-center', 'default', plugin_dir_path( __FILE__ ) . 'languages' ); + + remove_filter( 'pre_determine_locale', array( $this, 'determine_iso_639_locale' ) ); + } + + /** + * Determine the ISO 639 locale. + */ + public static function determine_iso_639_locale() { + $locale = get_user_locale(); + if ( ! $locale ) { + $locale = Common\get_iso_639_locale( get_locale() ); + } + return Common\get_iso_639_locale( $locale ); + } + /** + * Get current site details. + */ + public function get_current_site() { + /* + * Atomic sites have the WP.com blog ID stored as a Jetpack option. This code deliberately + * doesn't use `Jetpack_Options::get_option` so it works even when Jetpack has not been loaded. + */ + $jetpack_options = get_option( 'jetpack_options' ); + if ( is_array( $jetpack_options ) && isset( $jetpack_options['id'] ) ) { + $site = (int) $jetpack_options['id']; + } else { + $site = get_current_blog_id(); + } + + $logo_id = get_option( 'site_logo' ); + $bundles = wp_list_filter( wpcom_get_site_purchases(), array( 'product_type' => 'bundle' ) ); + $plan = array_pop( $bundles ); + + $return_data = array( + 'ID' => $site, + 'name' => get_bloginfo( 'name' ), + 'URL' => get_bloginfo( 'url' ), + 'plan' => array( + 'product_slug' => $plan->product_slug ?? null, + ), + 'is_wpcom_atomic' => defined( 'IS_ATOMIC' ) && IS_ATOMIC, + 'jetpack' => true === apply_filters( 'is_jetpack_site', false, $site ), + 'logo' => array( + 'id' => $logo_id, + 'sizes' => array(), + 'url' => wp_get_attachment_image_src( $logo_id, 'thumbnail' )[0] ?? '', + ), + 'options' => array( + 'launchpad_screen' => get_option( 'launchpad_screen' ), + 'site_intent' => get_option( 'site_intent' ), + 'admin_url' => get_admin_url(), + ), + ); + + return $return_data; + } + + /** + * Register the Help Center endpoints. + */ + public function register_rest_api() { + require_once __DIR__ . '/class-wp-rest-help-center-authenticate.php'; + $controller = new WP_REST_Help_Center_Authenticate(); + $controller->register_rest_route(); + + require_once __DIR__ . '/class-wp-rest-help-center-sibyl.php'; + $controller = new WP_REST_Help_Center_Sibyl(); + $controller->register_rest_route(); + + require_once __DIR__ . '/class-wp-rest-help-center-support-status.php'; + $controller = new WP_REST_Help_Center_Support_Status(); + $controller->register_rest_route(); + + require_once __DIR__ . '/class-wp-rest-help-center-search.php'; + $controller = new WP_REST_Help_Center_Search(); + $controller->register_rest_route(); + + require_once __DIR__ . '/class-wp-rest-help-center-jetpack-search-ai.php'; + $controller = new WP_REST_Help_Center_Jetpack_Search_AI(); + $controller->register_rest_route(); + + require_once __DIR__ . '/class-wp-rest-help-center-fetch-post.php'; + $controller = new WP_REST_Help_Center_Fetch_Post(); + $controller->register_rest_route(); + + require_once __DIR__ . '/class-wp-rest-help-center-ticket.php'; + $controller = new WP_REST_Help_Center_Ticket(); + $controller->register_rest_route(); + + require_once __DIR__ . '/class-wp-rest-help-center-forum.php'; + $controller = new WP_REST_Help_Center_Forum(); + $controller->register_rest_route(); + + require_once __DIR__ . '/class-wp-rest-help-center-support-activity.php'; + $controller = new WP_REST_Help_Center_Support_Activity(); + $controller->register_rest_route(); + + require_once __DIR__ . '/class-wp-rest-help-center-user-fields.php'; + $controller = new WP_REST_Help_Center_User_Fields(); + $controller->register_rest_route(); + + require_once __DIR__ . '/class-wp-rest-help-center-odie.php'; + $controller = new WP_REST_Help_Center_Odie(); + $controller->register_rest_route(); + + require_once __DIR__ . '/class-wp-rest-help-center-email-support-enabled.php'; + $controller = new WP_REST_Help_Center_Email_Support_Enabled(); + $controller->register_rest_route(); + } + + /** + * Returns true if the admin bar is set. + */ + public function is_admin_bar() { + global $wp_admin_bar; + return is_object( $wp_admin_bar ); + } + + /** + * Returns true if the current screen if the block editor. + */ + public function is_block_editor() { + global $current_screen; + // widgets screen does have the block editor but also no Gutenberg top bar. + return $current_screen->is_block_editor() && $current_screen->id !== 'widgets'; + } + + /** + * Returns true if the current user is connected through Jetpack + */ + public function is_jetpack_disconnected() { + $user_id = get_current_user_id(); + $blog_id = get_current_blog_id(); + + if ( defined( 'IS_ATOMIC' ) && IS_ATOMIC ) { + return ! ( new Connection_Manager( 'jetpack' ) )->is_user_connected( $user_id ); + } + + if ( true === apply_filters( 'is_jetpack_site', false, $blog_id ) ) { + return ! ( new Connection_Manager( 'jetpack' ) )->is_user_connected( $user_id ); + } + + return false; + } + + /** + * Returns the URL for the Help Center redirect. + * Used for the Help Center when disconnected. + */ + public function get_help_center_url() { + $help_url = 'https://wordpress.com/help'; + + if ( ! $this->is_jetpack_disconnected() ) { + return false; + } + + return $help_url; + } + /** + * Get the asset via file-system on wpcom and via network on Atomic sites. + * + * @param string $filepath The URL to download the asset file from. + * @param bool $parse_json Whether to parse the JSON file or not. + */ + private static function download_asset( $filepath, $parse_json = true ) { + $accessible_directly = file_exists( ABSPATH . '/' . $filepath ); + if ( $accessible_directly ) { + if ( $parse_json ) { + return json_decode( file_get_contents( ABSPATH . $filepath ), true ); + } + return file_get_contents( ABSPATH . $filepath ); + } else { + $request = wp_remote_get( 'https://' . $filepath ); + if ( is_wp_error( $request ) ) { + return null; + } elseif ( $parse_json ) { + return json_decode( wp_remote_retrieve_body( $request ), true ); + } else { + return wp_remote_retrieve_body( $request ); + } + } + } + + /** + * Add icon to WP-ADMIN admin bar. + */ + public function enqueue_wp_admin_scripts() { + require_once ABSPATH . 'wp-admin/includes/screen.php'; + + if ( ! is_admin() ) { + return; + } + + $variant = $this->is_block_editor() ? 'gutenberg' : 'wp-admin'; + $variant .= $this->is_jetpack_disconnected() ? '-disconnected' : ''; + + $asset_file = self::download_asset( 'widgets.wp.com/help-center/help-center-' . $variant . '.asset.json' ); + + if ( ! $asset_file ) { + return; + } + + // When the request is proxied, use a random cache buster as the version for easier debugging. + $version = self::is_proxied() ? wp_rand() : $asset_file['version']; + + $this->enqueue_script( $variant, $asset_file['dependencies'], $version ); + } +} + +add_action( 'init', array( __NAMESPACE__ . '\Help_Center', 'init' ) ); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-authenticate.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-authenticate.php new file mode 100644 index 0000000000000..ab43c3087da69 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-authenticate.php @@ -0,0 +1,78 @@ +namespace = 'help-center'; + $this->rest_base = '/authenticate/chat'; + } + + /** + * Register available routes. + */ + public function register_rest_route() { + register_rest_route( + $this->namespace, + $this->rest_base, + array( + 'methods' => \WP_REST_Server::CREATABLE, + 'callback' => array( $this, 'get_chat_authentication' ), + 'permission_callback' => 'is_user_logged_in', + 'args' => array( + 'type' => array( + 'type' => 'string', + 'default' => 'zendesk', + 'required' => false, + ), + 'test_mode' => array( + 'type' => 'boolean', + 'default' => false, + 'required' => false, + ), + ), + ) + ); + } + + /** + * Callback to authorize user for chat. + * + * @param \WP_REST_Request $request The request sent to the API. + */ + public function get_chat_authentication( \WP_REST_Request $request ) { + $query_parameters = array( + 'test_mode' => $request['test_mode'], + 'type' => $request['type'], + ); + + $body = Client::wpcom_json_api_request_as_user( + 'help/authenticate/chat?' . http_build_query( $query_parameters ), + '2', + array( + 'method' => 'POST', + ) + ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-email-support-enabled.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-email-support-enabled.php new file mode 100644 index 0000000000000..2f9b07e64e0ae --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-email-support-enabled.php @@ -0,0 +1,53 @@ +namespace = 'help-center'; + $this->rest_base = '/support-availability'; + } + + /** + * Register available routes. + */ + public function register_rest_route() { + register_rest_route( + $this->namespace, + $this->rest_base . '/email', + array( + 'methods' => \WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_email_support_configuration' ), + 'permission_callback' => 'is_user_logged_in', + ) + ); + } + + /** + * Should return if email contact is enabled for the user. + */ + public function get_email_support_configuration() { + $body = Client::wpcom_json_api_request_as_user( 'help/eligibility/email/mine' ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-fetch-post.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-fetch-post.php new file mode 100644 index 0000000000000..f2e66c8a25c47 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-fetch-post.php @@ -0,0 +1,103 @@ +namespace = 'help-center'; + $this->rest_base = 'fetch-post'; + } + + /** + * Register available routes. + */ + public function register_rest_route() { + register_rest_route( + $this->namespace, + '/' . $this->rest_base, + array( + 'methods' => \WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_post' ), + 'permission_callback' => 'is_user_logged_in', + ) + ); + register_rest_route( + $this->namespace, + '/articles', + array( + 'methods' => \WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_blog_post_articles' ), + 'permission_callback' => 'is_user_logged_in', + 'args' => array( + 'blog_id' => array( + 'type' => 'number', + 'required' => true, + ), + 'post_ids' => array( + 'type' => 'array', + 'required' => true, + 'items' => array( + 'type' => 'string', + ), + ), + ), + ) + ); + } + + /** + * Should return blog post articles + * + * @param \WP_REST_Request $request The request sent to the API. + */ + public function get_blog_post_articles( \WP_REST_Request $request ) { + $query_parameters = array( + 'blog_id' => $request['blog_id'], + 'post_ids' => $request['post_ids'], + ); + $body = Client::wpcom_json_api_request_as_user( + '/help/articles?' . http_build_query( $query_parameters ) + ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } + + /** + * Should return the search results + * + * @param \WP_REST_Request $request The request sent to the API. + */ + public function get_post( \WP_REST_Request $request ) { + $blog_id = $request['blog_id']; + $post_id = $request['post_id']; + + $body = Client::wpcom_json_api_request_as_user( + '/help/article/' . $blog_id . '/' . $post_id + ); + if ( is_wp_error( $body ) ) { + return $body; + } + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-forum.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-forum.php new file mode 100644 index 0000000000000..e6636d02aab3c --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-forum.php @@ -0,0 +1,105 @@ +namespace = 'help-center'; + $this->rest_base = '/forum'; + } + + /** + * Register available routes. + */ + public function register_rest_route() { + register_rest_route( + $this->namespace, + $this->rest_base . '/new', + array( + 'methods' => \WP_REST_Server::CREATABLE, + 'callback' => array( $this, 'submit_new_topic' ), + 'permission_callback' => 'is_user_logged_in', + 'args' => array( + 'subject' => array( + 'type' => 'string', + 'required' => true, + ), + 'message' => array( + 'type' => 'string', + 'required' => true, + ), + 'blog_url' => array( + 'type' => 'string', + 'required' => true, + ), + 'blog_id' => array( + 'type' => 'integer', + 'default' => null, + ), + 'tags' => array( + 'type' => 'array', + 'default' => array(), + ), + 'locale' => array( + 'type' => 'string', + ), + 'hide_blog_info' => array( + 'type' => 'boolean', + 'default' => false, + ), + 'should_use_test_forums' => array( + 'type' => 'boolean', + ), + ), + ) + ); + } + + /** + * Should create a new forum topic + * + * @param \WP_REST_Request $request The request sent to the API. + */ + public function submit_new_topic( \WP_REST_Request $request ) { + $topic_args = array( + 'subject' => $request['subject'], + 'message' => $request['message'], + 'blog_url' => $request['blog_url'], + 'blog_id' => $request['blog_id'], + 'tags' => $request['tags'], + 'locale' => $request['locale'], + 'hide_blog_info' => $request['hide_blog_info'], + 'should_use_test_forums' => isset( $request['should_use_test_forums'] ) && $request['should_use_test_forums'], + ); + + $body = Client::wpcom_json_api_request_as_user( + '/help/forum/new', + '2', + array( + 'method' => 'POST', + ), + $topic_args + ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-jetpack-search-ai.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-jetpack-search-ai.php new file mode 100644 index 0000000000000..1f8ddc14ad3e6 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-jetpack-search-ai.php @@ -0,0 +1,65 @@ +namespace = 'help-center'; + $this->rest_base = '/jetpack-search/ai'; + } + + /** + * Register available routes. + */ + public function register_rest_route() { + register_rest_route( + $this->namespace, + $this->rest_base . '/search', + array( + 'methods' => \WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_search_results' ), + 'permission_callback' => 'is_user_logged_in', + ) + ); + } + + /** + * Should return the sibyl articles. + * + * @param \WP_REST_Request $request The request sent to the API. + */ + public function get_search_results( \WP_REST_Request $request ) { + $query_parameters = array( + 'query' => $request['query'], + 'stop_at' => $request['stop_at'], + ); + $body = Client::wpcom_json_api_request_as_user( + 'sites/' . $request['site'] . '/jetpack-search/ai/search?' . http_build_query( $query_parameters ), + '2', + array( + 'timeout' => 75, + ) + ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-odie.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-odie.php new file mode 100644 index 0000000000000..71ccf619061f3 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-odie.php @@ -0,0 +1,352 @@ +namespace = 'help-center'; + $this->rest_base = '/odie'; + } + + /** + * Register available routes. + */ + public function register_rest_route() { + register_rest_route( + $this->namespace, + $this->rest_base . '/chat/(?P[a-zA-Z0-9-]+)/(?P\d+)', + array( + // Get a chat. Supports pagination of messages. + array( + 'methods' => \WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_chat' ), + 'permission_callback' => 'is_user_logged_in', + 'args' => array( + 'bot_id' => array( + 'description' => __( 'The bot id to get the chat for.', 'jetpack-mu-wpcom' ), + 'type' => 'string', + 'required' => true, + ), + 'chat_id' => array( + 'description' => __( 'The chat id to get the chat for.', 'jetpack-mu-wpcom' ), + 'type' => 'integer', + 'required' => true, + ), + 'page_number' => array( + 'description' => __( 'The number of the page to retrieve, limited to 100', 'jetpack-mu-wpcom' ), + 'type' => 'integer', + 'required' => false, + 'default' => 1, + ), + 'items_per_page' => array( + 'description' => __( 'The number of items per page.', 'jetpack-mu-wpcom' ), + 'type' => 'integer', + 'required' => false, + 'default' => 10, + ), + 'include_feedback' => array( + 'required' => false, + 'type' => 'boolean', + 'description' => __( 'If true, include the feedback rating value for each message in the response.', 'jetpack-mu-wpcom' ), + ), + ), + ), + // Add a message to a chat. + array( + 'methods' => \WP_REST_Server::CREATABLE, + 'callback' => array( $this, 'send_chat_message' ), + 'permission_callback' => 'is_user_logged_in', + 'args' => array( + 'bot_id' => array( + 'description' => __( 'The bot id to chat with.', 'jetpack-mu-wpcom' ), + 'type' => 'string', + 'required' => true, + ), + 'chat_id' => array( + 'description' => __( 'The chat id for the existing chat.', 'jetpack-mu-wpcom' ), + 'type' => 'integer', + 'required' => true, + ), + 'message' => array( + 'description' => __( 'The message to add to the chat', 'jetpack-mu-wpcom' ), + 'type' => 'string', + 'required' => true, + ), + // an arbitray key/value object of data to pass to the bot + 'context' => array( + 'description' => __( 'The context to continue the chat with.', 'jetpack-mu-wpcom' ), + 'type' => 'object', + 'required' => false, + ), + ), + ), + ) + ); + + register_rest_route( + $this->namespace, + $this->rest_base . '/history/last-chat-id', + // Get last chat ID. + array( + array( + 'methods' => \WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_last_chat_id' ), + 'permission_callback' => 'is_user_logged_in', + ), + // Set last chat ID. + array( + 'methods' => \WP_REST_Server::CREATABLE, + 'callback' => array( $this, 'set_last_chat_id' ), + 'permission_callback' => 'is_user_logged_in', + ), + ) + ); + + register_rest_route( + $this->namespace, + $this->rest_base . '/chat/(?P[a-zA-Z0-9-]+)/(?P\d+)/(?P\d+)/feedback', + array( + array( + 'methods' => \WP_REST_Server::CREATABLE, + 'callback' => array( $this, 'save_chat_message_feedback' ), + 'permission_callback' => 'is_user_logged_in', + 'args' => array( + 'bot_id' => array( + 'description' => __( 'The bot id to chat with.', 'jetpack-mu-wpcom' ), + 'type' => 'string', + 'required' => true, + ), + 'chat_id' => array( + 'description' => __( 'The chat id for the existing chat.', 'jetpack-mu-wpcom' ), + 'type' => 'integer', + 'required' => true, + ), + 'message_id' => array( + 'description' => __( 'The message id for the existing message.', 'jetpack-mu-wpcom' ), + 'type' => 'integer', + 'required' => true, + ), + 'rating_value' => array( + 'description' => __( 'The feedback rating value.', 'jetpack-mu-wpcom' ), + 'type' => 'integer', + 'required' => true, + ), + ), + ), + ) + ); + + register_rest_route( + $this->namespace, + $this->rest_base . '/chat/(?P[a-zA-Z0-9-]+)', + array( + array( + 'methods' => \WP_REST_Server::CREATABLE, + 'callback' => array( $this, 'send_chat_message' ), + 'permission_callback' => 'is_user_logged_in', + 'args' => array( + 'bot_id' => array( + 'description' => __( 'The bot id to chat with.', 'jetpack-mu-wpcom' ), + 'type' => 'string', + 'required' => true, + ), + 'context' => array( + 'description' => __( 'The context to continue the chat with.', 'jetpack-mu-wpcom' ), + 'type' => 'object', + 'required' => false, + ), + 'message' => array( + 'description' => __( 'The message to add to the chat', 'jetpack-mu-wpcom' ), + 'type' => 'string', + 'required' => true, + ), + 'test' => array( + 'description' => __( 'Whether to mark this as a test chat (a11n-only).', 'jetpack-mu-wpcom' ), + 'type' => 'boolean', + 'required' => false, + ), + ), + ), + ) + ); + } + + /** + * Get chat_id and last_chat_id from user preferences. + */ + public function get_last_chat_id() { + // Forward the request body to the support chat endpoint. + $body = Client::wpcom_json_api_request_as_user( + '/me/preferences', + '2', + array( 'method' => 'GET' ) + ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + $projected_response = array( + 'odie_chat_id' => $response->odie_chat_id, + 'odie_last_chat_id' => $response->odie_last_chat_id, + ); + + return rest_ensure_response( $projected_response ); + } + + /** + * Set chat_id or last_chat_id from user preferences. + * + * @param \WP_REST_Request $request The request sent to the API. + */ + public function set_last_chat_id( \WP_REST_Request $request ) { + $chat_id = $request['odie_chat_id']; + $last_chat_id = $request['odie_last_chat_id']; + + $data = array( + 'calypso_preferences' => array(), + ); + + if ( $request->has_param( 'odie_chat_id' ) ) { + $data['calypso_preferences']['odie_chat_id'] = $chat_id; + } + + if ( $request->has_param( 'odie_last_chat_id' ) ) { + $data['calypso_preferences']['odie_last_chat_id'] = $last_chat_id; + } + + $body = Client::wpcom_json_api_request_as_user( + '/me/preferences', + '2', + array( 'method' => 'POST' ), + $data + ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + $projected_response = array( + 'calypso_preferences' => array( + 'odie_chat_id' => $response->calypso_preferences->odie_chat_id, + 'odie_last_chat_id' => $response->calypso_preferences->odie_last_chat_id, + ), + ); + + return rest_ensure_response( $projected_response ); + } + + /** + * Send a message to the support chat. + * + * @param \WP_REST_Request $request The request sent to the API. + */ + public function send_chat_message( \WP_REST_Request $request ) { + $bot_name_slug = $request->get_param( 'bot_id' ); + $chat_id = $request->get_param( 'chat_id' ); + + // Forward the request body to the support chat endpoint. + $body = Client::wpcom_json_api_request_as_user( + '/odie/chat/' . $bot_name_slug . '/' . $chat_id, + '2', + array( + 'method' => 'POST', + 'timeout' => 60, + ), + array( + 'message' => $request->get_param( 'message' ), + 'context' => $request->get_param( 'context' ) ?? array(), + 'version' => $request->get_param( 'version' ), + ) + ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } + + /** + * Get the chat messages. + * + * @param \WP_REST_Request $request The request sent to the API. + */ + public function get_chat( \WP_REST_Request $request ) { + $bot_name_slug = $request->get_param( 'bot_id' ); + $chat_id = $request->get_param( 'chat_id' ); + $page_number = $request['page_number']; + $items_per_page = $request['items_per_page']; + $include_feedback = $request['include_feedback']; + + $url_query_params = http_build_query( + array( + 'page_number' => $page_number, + 'items_per_page' => $items_per_page, + 'include_feedback' => $include_feedback, + ) + ); + + $body = Client::wpcom_json_api_request_as_user( + '/odie/chat/' . $bot_name_slug . '/' . $chat_id . '?' . $url_query_params + ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } + + /** + * Save feedback for a chat message. + * + * @param \WP_REST_Request $request The request sent to the API. + */ + public function save_chat_message_feedback( \WP_REST_Request $request ) { + $bot_id = $request->get_param( 'bot_id' ); + $chat_id = $request->get_param( 'chat_id' ); + $message_id = $request->get_param( 'message_id' ); + $rating_value = $request->get_param( 'rating_value' ); + + // Forward the request body to the feedback endpoint. + $body = Client::wpcom_json_api_request_as_user( + '/odie/chat/' . $bot_id . '/' . $chat_id . '/' . $message_id . '/feedback', + '2', + array( 'method' => 'POST' ), + array( + 'rating_value' => $rating_value, + ) + ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-search.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-search.php new file mode 100644 index 0000000000000..00ec3c349a3d2 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-search.php @@ -0,0 +1,73 @@ +namespace = 'help-center'; + $this->rest_base = '/search'; + } + + /** + * Register available routes. + */ + public function register_rest_route() { + register_rest_route( + $this->namespace, + $this->rest_base, + array( + 'methods' => \WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_search_results' ), + 'permission_callback' => 'is_user_logged_in', + 'args' => array( + 'query' => array( + 'type' => 'string', + ), + 'locale' => array( + 'type' => 'string', + 'default' => 'en', + ), + ), + ) + ); + } + + /** + * Should return the search results + * + * @param \WP_REST_Request $request The request sent to the API. + */ + public function get_search_results( \WP_REST_Request $request ) { + $query = $request['query']; + $locale = $request['locale']; + + $query_parameters = array( + 'query' => $query, + 'locale' => $locale, + ); + $body = Client::wpcom_json_api_request_as_user( + '/help/search/wpcom?' . http_build_query( $query_parameters ) + ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-sibyl.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-sibyl.php new file mode 100644 index 0000000000000..00d9af7721f6b --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-sibyl.php @@ -0,0 +1,60 @@ +namespace = 'help-center'; + $this->rest_base = '/sibyl'; + } + + /** + * Register available routes. + */ + public function register_rest_route() { + register_rest_route( + $this->namespace, + $this->rest_base, + array( + 'methods' => \WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_sibyl_questions' ), + 'permission_callback' => 'is_user_logged_in', + ) + ); + } + + /** + * Should return the sibyl articles. + * + * @param \WP_REST_Request $request The request sent to the API. + */ + public function get_sibyl_questions( \WP_REST_Request $request ) { + $query = $request['query']; + $site = $request['site']; + + $body = Client::wpcom_json_api_request_as_user( + '/help/sibyl?query=' . $query . '&site=' . $site + ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-support-activity.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-support-activity.php new file mode 100644 index 0000000000000..78ba7a542570f --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-support-activity.php @@ -0,0 +1,53 @@ +namespace = 'help-center'; + $this->rest_base = '/support-activity'; + } + + /** + * Register available routes. + */ + public function register_rest_route() { + register_rest_route( + $this->namespace, + $this->rest_base, + array( + 'methods' => \WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_support_activity' ), + 'permission_callback' => 'is_user_logged_in', + ) + ); + } + + /** + * Get support activity through Jetpack. + */ + public function get_support_activity() { + $body = Client::wpcom_json_api_request_as_user( '/support-activity' ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-support-status.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-support-status.php new file mode 100644 index 0000000000000..6f75bb20c53c5 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-support-status.php @@ -0,0 +1,90 @@ +namespace = 'help-center'; + $this->rest_base = '/support-status'; + } + + /** + * Register available routes. + */ + public function register_rest_route() { + register_rest_route( + $this->namespace, + $this->rest_base, + array( + 'methods' => \WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_support_status' ), + 'permission_callback' => 'is_user_logged_in', + ) + ); + + register_rest_route( + $this->namespace, + $this->rest_base . '/messaging', + array( + 'methods' => \WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_messaging_support_availability' ), + 'permission_callback' => 'is_user_logged_in', + 'args' => array( + 'group' => array( + 'type' => 'string', + 'required' => true, + ), + 'environment' => array( + 'type' => 'string', + 'required' => true, + ), + ), + ) + ); + } + + /** + * Should return the support status for the user + */ + public function get_support_status() { + $body = Client::wpcom_json_api_request_as_user( 'help/support-status' ); + if ( is_wp_error( $body ) ) { + return $body; + } + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } + + /** + * Should return messaging eligibility + * + * @param \WP_REST_Request $request The request sent to the API. + */ + public function get_messaging_support_availability( \WP_REST_Request $request ) { + $query_parameters = array( + 'group' => $request['group'], + 'environment' => $request['environment'], + ); + $body = Client::wpcom_json_api_request_as_user( 'help/support-status/messaging?' . http_build_query( $query_parameters ) ); + if ( is_wp_error( $body ) ) { + return $body; + } + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-ticket.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-ticket.php new file mode 100644 index 0000000000000..49fd0b7154692 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-ticket.php @@ -0,0 +1,92 @@ +namespace = 'help-center'; + $this->rest_base = '/ticket'; + } + + /** + * Register available routes. + */ + public function register_rest_route() { + register_rest_route( + $this->namespace, + $this->rest_base . '/new', + array( + 'methods' => \WP_REST_Server::CREATABLE, + 'callback' => array( $this, 'new_ticket' ), + 'permission_callback' => 'is_user_logged_in', + 'args' => array( + 'subject' => array( + 'type' => 'string', + ), + 'message' => array( + 'type' => 'string', + ), + 'locale' => array( + 'type' => 'string', + 'default' => 'en', + ), + 'is_chat_overflow' => array( + 'type' => 'boolean', + ), + 'source' => array( + 'type' => 'string', + ), + 'blog_url' => array( + 'type' => 'string', + ), + ), + ) + ); + } + + /** + * Should create a new ticket + * + * @param \WP_REST_Request $request The request sent to the API. + */ + public function new_ticket( \WP_REST_Request $request ) { + $ticket = array( + 'subject' => $request['subject'], + 'message' => $request['message'], + 'locale' => $request['locale'], + 'is_chat_overflow' => $request['is_chat_overflow'], + 'source' => $request['source'], + 'blog_url' => $request['blog_url'], + ); + + $body = Client::wpcom_json_api_request_as_user( + '/help/ticket/new', + '2', + array( + 'method' => 'POST', + ), + $ticket + ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-user-fields.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-user-fields.php new file mode 100644 index 0000000000000..4bc19e077f24a --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-user-fields.php @@ -0,0 +1,66 @@ +namespace = 'help-center'; + $this->rest_base = '/zendesk/user-fields'; + } + + /** + * Register available routes. + */ + public function register_rest_route() { + register_rest_route( + $this->namespace, + $this->rest_base, + array( + 'methods' => \WP_REST_Server::CREATABLE, + 'callback' => array( $this, 'update_user_fields' ), + 'permission_callback' => 'is_user_logged_in', + 'args' => array( + 'fields' => array( + 'type' => 'object', + 'required' => true, + ), + ), + ) + ); + } + + /** + * Callback to update user fields in Zendesk + * + * @param \WP_REST_Request $request The request sent to the API. + */ + public function update_user_fields( \WP_REST_Request $request ) { + $body = Client::wpcom_json_api_request_as_user( + 'help/zendesk/update-user-fields', + '2', + array( + 'method' => 'POST', + ), + array( 'fields' => $request['fields'] ) + ); + + if ( is_wp_error( $body ) ) { + return $body; + } + $response = json_decode( wp_remote_retrieve_body( $body ) ); + return rest_ensure_response( $response ); + } +} diff --git a/projects/plugins/mu-wpcom-plugin/changelog/move-help-center b/projects/plugins/mu-wpcom-plugin/changelog/move-help-center new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/mu-wpcom-plugin/changelog/move-help-center @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/wpcomsh/changelog/move-help-center b/projects/plugins/wpcomsh/changelog/move-help-center new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/move-help-center @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + From a96ea821bc1321de12a96c32a2e1565fb54930b0 Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Wed, 3 Jul 2024 14:09:12 -0400 Subject: [PATCH 008/254] actions: Stop uploading jetpack-mu-wpcom-plugin to jetpackedge sites (#38177) Following up on #38158, now that the jetpackedge sites have been updated to use an uploaded wpcomsh we can stop uploading jetpack-mu-wpcom-plugin to them since it's no longer used. --- .../files/jetpack-staging-sites/update-jetpack-staging-sites.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/files/jetpack-staging-sites/update-jetpack-staging-sites.sh b/.github/files/jetpack-staging-sites/update-jetpack-staging-sites.sh index 118a72da426bd..251f4f38b8e24 100755 --- a/.github/files/jetpack-staging-sites/update-jetpack-staging-sites.sh +++ b/.github/files/jetpack-staging-sites/update-jetpack-staging-sites.sh @@ -8,7 +8,7 @@ TMP_DIR=$(mktemp -d) # Temp dir where the plugin .zip files are downloaded and unpacked. REMOTE_DIR='/srv/htdocs/jetpack-staging' # Remote dir where the unpacked plugin files are synced to. -PLUGINS=( "jetpack" "jetpack-mu-wpcom-plugin" "wpcomsh" ); # Plugins to update. +PLUGINS=( "jetpack" "wpcomsh" ); # Plugins to update. declare -A PLUGIN_DOWNLOAD_URLS # Array used to hold fetched plugin download URLs. SITES='{ From 533900aceef171b1c989f25b70540917daa58dcb Mon Sep 17 00:00:00 2001 From: Anthony Grullon Date: Wed, 3 Jul 2024 14:40:44 -0400 Subject: [PATCH 009/254] Verbum: Update Verbum comments accessibility (#38116) * Update verbum comments accessibility * changelog * Update version * Remove changelogs * Update styling * Update version * changelog * Revert "Update version" This reverts commit 855dd9ad70c3703cef098726143ef3b584fb3688. * Revert version changes * Update changelog * Update version * Update composer.lock * Revert "Update version" This reverts commit 8c5334a5a605d06d3015694b6bfe4ffa4435641c. * Revert "Update changelog" This reverts commit b33816e12a83f66281608214ed156e0f98b1d141. * Revert "Revert version changes" This reverts commit 9551ecd9d4453531ba8602d29e4b9a178aca87f2. * update version * Update changelog * Update projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/style.scss Co-authored-by: Kosta * Update border to outline for email input focus * Update changelog * Add comment for email input styling change --------- Co-authored-by: Kosta --- .../update-verbum-comments-accessibility | 4 ++ .../src/components/EmailForm/style.scss | 7 ++- .../src/components/FrequencyToggle/style.scss | 2 +- .../src/components/ToggleControl/style.scss | 2 +- .../src/components/logged-out.tsx | 1 + .../features/verbum-comments/src/style.scss | 51 ++++++++++++++++--- .../update-verbum-comments-accessibility | 5 ++ .../update-verbum-comments-accessibility | 5 ++ 8 files changed, 66 insertions(+), 11 deletions(-) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/update-verbum-comments-accessibility create mode 100644 projects/plugins/mu-wpcom-plugin/changelog/update-verbum-comments-accessibility create mode 100644 projects/plugins/wpcomsh/changelog/update-verbum-comments-accessibility diff --git a/projects/packages/jetpack-mu-wpcom/changelog/update-verbum-comments-accessibility b/projects/packages/jetpack-mu-wpcom/changelog/update-verbum-comments-accessibility new file mode 100644 index 0000000000000..665b129bd53fc --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/update-verbum-comments-accessibility @@ -0,0 +1,4 @@ +Significance: minor +Type: changed + +Update Verbum Comments accessibility. diff --git a/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/EmailForm/style.scss b/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/EmailForm/style.scss index 4ab825605564c..401bb63df6273 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/EmailForm/style.scss +++ b/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/EmailForm/style.scss @@ -33,7 +33,8 @@ width: 100%; height: 100%; padding-left: 48px; - border: none; + /* Override border styling */ + border: none !important; font-size: 14px; box-sizing: border-box; @@ -46,6 +47,10 @@ border: solid 1px #e65054; } + &:focus-visible { + outline: 1px solid var(--verbum-focus-color) !important; + } + } } diff --git a/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/FrequencyToggle/style.scss b/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/FrequencyToggle/style.scss index 03ec8366157c4..2bcc45dd0db69 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/FrequencyToggle/style.scss +++ b/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/FrequencyToggle/style.scss @@ -28,7 +28,7 @@ input { // protect the button from style leaks from the site; reset all. - all: unset; + all: unset !important; width: 0; height: 0; position: absolute; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/ToggleControl/style.scss b/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/ToggleControl/style.scss index 8606fde685571..aa82798a3da2b 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/ToggleControl/style.scss +++ b/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/ToggleControl/style.scss @@ -42,7 +42,7 @@ } &:focus+.verbum-toggle-control__button { - outline: 1px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #0675c4)); + outline: 1px solid var(--wp-components-color-accent, var(--verbum-focus-color, #0675c4)); } &:checked+.verbum-toggle-control__button:after { diff --git a/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/logged-out.tsx b/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/logged-out.tsx index d1e43fabe9590..deb16040612d9 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/logged-out.tsx +++ b/projects/packages/jetpack-mu-wpcom/src/features/verbum-comments/src/components/logged-out.tsx @@ -106,6 +106,7 @@ export const LoggedOut = ( { login, canWeAccessCookies, loginWindow }: LoggedOut return ( -
- - - - - - - - is_api_request ) { - add_filter( 'submenu_file', array( $this, 'override_the_theme_installer' ), 10, 2 ); - } - - add_action( - 'admin_menu', - function () { - remove_action( 'admin_menu', 'gutenberg_menu', 9 ); - }, - 0 - ); - - // Add notices to the settings pages when there is a Calypso page available. - if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { - add_action( 'current_screen', array( $this, 'add_settings_page_notice' ) ); - } } /** * Dequeues unnecessary scripts. + * + * @deprecated $$next-version$$ */ public function dequeue_scripts() { - wp_dequeue_script( 'a8c_wpcom_masterbar_overrides' ); // Initially loaded in modules/masterbar/masterbar/class-masterbar.php. + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::dequeue_scripts' ); + parent::dequeue_scripts(); } /** @@ -61,39 +41,29 @@ public function dequeue_scripts() { * * Performs the check against the current locale set on the WordPress.com's account settings. * See `Masterbar::__construct` in `modules/masterbar/masterbar/class-masterbar.php`. + * + * @deprecated $$next-version$$ */ public function is_rtl() { - return get_user_option( 'jetpack_wpcom_is_rtl' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::is_rtl' ); + return parent::is_rtl(); } /** * Create the desired menu output. + * + * @deprecated $$next-version$$ */ public function reregister_menu_items() { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::reregister_menu_items' ); parent::reregister_menu_items(); - - $this->add_my_home_menu(); - $this->remove_gutenberg_menu(); - - // We don't need the `My Mailboxes` when the interface is set to wp-admin or the site is a staging site, - if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' && ! get_option( 'wpcom_is_staging_site' ) ) { - $this->add_my_mailboxes_menu(); - } - - // Not needed outside of wp-admin. - if ( ! $this->is_api_request ) { - $this->add_browse_sites_link(); - $this->add_site_card_menu(); - $this->add_new_site_link(); - } - - $this->add_woocommerce_installation_menu(); - ksort( $GLOBALS['menu'] ); } /** * Get the preferred view for the given screen. * + * @deprecated $$next-version$$ + * * @param string $screen Screen identifier. * @param bool $fallback_global_preference (Optional) Whether the global preference for all screens should be used * as fallback if there is no specific preference for the given screen. @@ -101,478 +71,205 @@ public function reregister_menu_items() { * @return string */ public function get_preferred_view( $screen, $fallback_global_preference = true ) { - - // Export on Atomic sites are always managed on WP Admin. - if ( in_array( $screen, array( 'export.php' ), true ) ) { - return self::CLASSIC_VIEW; - } - - /** - * When Jetpack SSO is disabled, we need to force Calypso because it might create confusion to be redirected to WP-Admin. - * Furthermore, because we don't display the quick switcher, users having an WP-Admin interface by default won't be able to go back to the Calyso version. - */ - if ( ! \Jetpack::is_module_active( 'sso' ) ) { - return self::DEFAULT_VIEW; - } - + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::get_preferred_view' ); return parent::get_preferred_view( $screen, $fallback_global_preference ); } /** * Adds Users menu. + * + * @deprecated $$next-version$$ */ public function add_users_menu() { - $slug = current_user_can( 'list_users' ) ? 'users.php' : 'profile.php'; - if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'users.php' ) ) { - $submenus_to_update = array( - 'users.php' => 'https://wordpress.com/people/team/' . $this->domain, - ); - $this->update_submenus( $slug, $submenus_to_update ); - } - - if ( ! $this->use_wp_admin_interface() ) { - // The 'Subscribers' menu exists in the Jetpack menu for Classic wp-admin interface, so only add it for non-wp-admin interfaces. - add_submenu_page( 'users.php', esc_attr__( 'Subscribers', 'jetpack' ), __( 'Subscribers', 'jetpack' ), 'list_users', 'https://wordpress.com/subscribers/' . $this->domain, null ); - - // When the interface is not set to wp-admin, we replace the Profile submenu. - remove_submenu_page( 'users.php', 'profile.php' ); - add_submenu_page( 'users.php', esc_attr__( 'My Profile', 'jetpack' ), __( 'My Profile', 'jetpack' ), 'read', 'https://wordpress.com/me/', null ); - } - - // Users who can't 'list_users' will see "Profile" menu & "Profile > Account Settings" as submenu. - add_submenu_page( $slug, esc_attr__( 'Account Settings', 'jetpack' ), __( 'Account Settings', 'jetpack' ), 'read', 'https://wordpress.com/me/account' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::add_users_menu' ); + parent::add_users_menu(); } /** * Adds Plugins menu. + * + * @deprecated $$next-version$$ */ public function add_plugins_menu() { - - global $submenu; - - // Calypso plugins screens link. - $plugins_slug = 'https://wordpress.com/plugins/' . $this->domain; - - // Link to the Marketplace from Plugins > Add New on Atomic sites where the wpcom_admin_interface option is set to wp-admin. - if ( self::CLASSIC_VIEW === $this->get_preferred_view( 'plugins.php' ) ) { - $submenus_to_update = array( 'plugin-install.php' => $plugins_slug ); - $this->update_submenus( 'plugins.php', $submenus_to_update ); - return; - } - - // Link to the Marketplace on sites that can't manage plugins. - if ( - function_exists( 'wpcom_site_has_feature' ) && - ! wpcom_site_has_feature( \WPCOM_Features::MANAGE_PLUGINS ) - ) { - add_menu_page( __( 'Plugins', 'jetpack' ), __( 'Plugins', 'jetpack' ), 'manage_options', $plugins_slug, null, 'dashicons-admin-plugins', '65' ); - return; - } - - if ( ! isset( $submenu['plugins.php'] ) ) { - return; - } - - $plugins_submenu = $submenu['plugins.php']; - - // Move "Add New" plugin submenu to the top position. - foreach ( $plugins_submenu as $submenu_key => $submenu_keys ) { - if ( 'plugin-install.php' === $submenu_keys[2] ) { - // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - $submenu['plugins.php'] = array( $submenu_key => $plugins_submenu[ $submenu_key ] ) + $plugins_submenu; - } - } - - $submenus_to_update = array( 'plugin-install.php' => $plugins_slug ); - - $this->update_submenus( 'plugins.php', $submenus_to_update ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::add_plugins_menu' ); + parent::add_plugins_menu(); } /** * Adds the site switcher link if user has more than one site. + * + * @deprecated $$next-version$$ */ public function add_browse_sites_link() { - $site_count = get_user_option( 'wpcom_site_count' ); - if ( ! $site_count || $site_count < 2 ) { - return; - } - - // Add the menu item. - add_menu_page( __( 'site-switcher', 'jetpack' ), __( 'Browse sites', 'jetpack' ), 'read', 'https://wordpress.com/sites', null, 'dashicons-arrow-left-alt2', 0 ); - add_filter( 'add_menu_classes', array( $this, 'set_browse_sites_link_class' ) ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::add_browse_sites_link' ); + parent::add_browse_sites_link(); } /** * Adds a custom element class for Site Switcher menu item. * + * @deprecated $$next-version$$ + * * @param array $menu Associative array of administration menu items. * * @return array */ public function set_browse_sites_link_class( array $menu ) { - foreach ( $menu as $key => $menu_item ) { - if ( 'site-switcher' !== $menu_item[3] ) { - continue; - } - - $menu[ $key ][4] = add_cssclass( 'site-switcher', $menu_item[4] ); - break; - } - - return $menu; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::set_browse_sites_link_class' ); + return parent::set_browse_sites_link_class( $menu ); } /** * Adds a link to the menu to create a new site. + * + * @deprecated $$next-version$$ */ public function add_new_site_link() { - $site_count = get_user_option( 'wpcom_site_count' ); - if ( $site_count && $site_count > 1 ) { - return; - } - - add_menu_page( __( 'Add New Site', 'jetpack' ), __( 'Add New Site', 'jetpack' ), 'read', 'https://wordpress.com/start?ref=calypso-sidebar', null, 'dashicons-plus-alt' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::add_new_site_link' ); + parent::add_new_site_link(); } /** * Adds site card component. + * + * @deprecated $$next-version$$ */ public function add_site_card_menu() { - $default = plugins_url( 'globe-icon.svg', __FILE__ ); - $icon = get_site_icon_url( 32, $default ); - $blog_name = get_option( 'blogname' ) !== '' ? get_option( 'blogname' ) : $this->domain; - $is_coming_soon = ( new Status() )->is_coming_soon(); - - $badge = ''; - - if ( get_option( 'wpcom_is_staging_site' ) ) { - $badge .= '' . esc_html__( 'Staging', 'jetpack' ) . ''; - } - - if ( ( function_exists( 'site_is_private' ) && site_is_private() ) || $is_coming_soon ) { - $badge .= sprintf( - '%s', - $is_coming_soon ? esc_html__( 'Coming Soon', 'jetpack' ) : esc_html__( 'Private', 'jetpack' ) - ); - } - - $site_card = ' -
-
%1$s
-
%2$s
- %3$s -
'; - - $site_card = sprintf( - $site_card, - $blog_name, - $this->domain, - $badge - ); - - add_menu_page( 'site-card', $site_card, 'read', get_home_url(), null, $icon, 1 ); - add_filter( 'add_menu_classes', array( $this, 'set_site_card_menu_class' ) ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::add_site_card_menu' ); + parent::add_site_card_menu(); } /** * Adds a custom element class and id for Site Card's menu item. * + * @deprecated $$next-version$$ + * * @param array $menu Associative array of administration menu items. * * @return array */ public function set_site_card_menu_class( array $menu ) { - foreach ( $menu as $key => $menu_item ) { - if ( 'site-card' !== $menu_item[3] ) { - continue; - } - - $classes = ' toplevel_page_site-card'; - - // webclip.png is the default on WoA sites. Anything other than that means we have a custom site icon. - if ( has_site_icon() && 'https://s0.wp.com/i/webclip.png' !== get_site_icon_url( 512 ) ) { - $classes .= ' has-site-icon'; - } - - $menu[ $key ][4] = $menu_item[4] . $classes; - $menu[ $key ][5] = 'toplevel_page_site_card'; - break; - } - - return $menu; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::set_site_card_menu_class' ); + return parent::set_site_card_menu_class( $menu ); } /** * Returns the first available upsell nudge. * + * @deprecated $$next-version$$ + * * @return array */ public function get_upsell_nudge() { - $jitm = \Automattic\Jetpack\JITMS\JITM::get_instance(); - $message_path = 'calypso:sites:sidebar_notice'; - $message = $jitm->get_messages( $message_path, wp_json_encode( array( 'message_path' => $message_path ) ), false ); - - if ( isset( $message[0] ) ) { - $message = $message[0]; - return array( - 'content' => $message->content->message, - 'cta' => $message->CTA->message, // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase - 'link' => $message->CTA->link, // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase - 'tracks_impression_event_name' => $message->tracks->display->name, - 'tracks_impression_cta_name' => $message->tracks->display->props->cta_name, - 'tracks_click_event_name' => $message->tracks->click->name, - 'tracks_click_cta_name' => $message->tracks->click->props->cta_name, - 'dismissible' => $message->is_dismissible, - 'feature_class' => $message->feature_class, - 'id' => $message->id, - ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::get_upsell_nudge' ); + return parent::get_upsell_nudge(); } /** * Adds Jetpack menu. + * + * @deprecated $$next-version$$ */ public function add_jetpack_menu() { - // This is supposed to be the same as class-admin-menu but with a different position specified for the Jetpack menu. - if ( 'wp-admin' === get_option( 'wpcom_admin_interface' ) ) { - parent::create_jetpack_menu( 2, false ); - } else { - parent::add_jetpack_menu(); - } - - global $submenu; - $backup_submenu_label = __( 'Backup', 'jetpack' ); - $submenu_labels = array_column( $submenu['jetpack'], 3 ); - $backup_position = array_search( $backup_submenu_label, $submenu_labels, true ); - $scan_position = $backup_position !== false ? $backup_position + 1 : $this->get_submenu_item_count( 'jetpack' ) - 1; - - add_submenu_page( 'jetpack', esc_attr__( 'Scan', 'jetpack' ), __( 'Scan', 'jetpack' ), 'manage_options', 'https://wordpress.com/scan/history/' . $this->domain, null, $scan_position ); - - /** - * Prevent duplicate menu items that link to Jetpack Backup. - * Hide the one that's shown when the standalone backup plugin is not installed, since Jetpack Backup is already included in Atomic sites. - * - * @see https://github.com/Automattic/jetpack/pull/33955 - */ - $this->hide_submenu_page( 'jetpack', esc_url( Redirect::get_url( 'calypso-backups' ) ) ); - - // hide duplicate link to scan history that is shown in the untangling UI - $this->hide_submenu_page( 'jetpack', esc_url( Redirect::get_url( 'cloud-scan-history-wp-menu' ) ) ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::add_jetpack_menu' ); + parent::add_jetpack_menu(); } /** * Adds Stats menu. + * + * @deprecated $$next-version$$ */ public function add_stats_menu() { - $menu_title = __( 'Stats', 'jetpack' ); - if ( - ! $this->is_api_request && - \Jetpack::is_module_active( 'stats' ) && - function_exists( 'stats_get_image_chart_src' ) - ) { - $img_src = esc_attr( - stats_get_image_chart_src( 'admin-bar-hours-scale-2x', array( 'masterbar' => '' ) ) - ); - $alt = esc_attr__( 'Hourly views', 'jetpack' ); - - $menu_title .= "$alt"; - } - - add_menu_page( __( 'Stats', 'jetpack' ), $menu_title, 'view_stats', 'https://wordpress.com/stats/day/' . $this->domain, null, 'dashicons-chart-bar', 3 ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::add_stats_menu' ); + parent::add_stats_menu(); } /** * Adds Upgrades menu. * + * @deprecated $$next-version$$ + * * @param string $plan The current WPCOM plan of the blog. */ public function add_upgrades_menu( $plan = null ) { - - if ( get_option( 'wpcom_is_staging_site' ) ) { - return; - } - $products = Jetpack_Plan::get(); - if ( array_key_exists( 'product_name_short', $products ) ) { - $plan = $products['product_name_short']; - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::add_upgrades_menu' ); parent::add_upgrades_menu( $plan ); - - $last_upgrade_submenu_position = $this->get_submenu_item_count( 'paid-upgrades.php' ); - - add_submenu_page( 'paid-upgrades.php', __( 'Domains', 'jetpack' ), __( 'Domains', 'jetpack' ), 'manage_options', 'https://wordpress.com/domains/manage/' . $this->domain, null, $last_upgrade_submenu_position - 1 ); - - /** - * Whether to show the WordPress.com Emails submenu under the main Upgrades menu. - * - * @use add_filter( 'jetpack_show_wpcom_upgrades_email_menu', '__return_true' ); - * @module masterbar - * - * @since 9.7.0 - * - * @param bool $show_wpcom_upgrades_email_menu Load the WordPress.com Emails submenu item. Default to false. - */ - if ( apply_filters( 'jetpack_show_wpcom_upgrades_email_menu', false ) ) { - add_submenu_page( 'paid-upgrades.php', __( 'Emails', 'jetpack' ), __( 'Emails', 'jetpack' ), 'manage_options', 'https://wordpress.com/email/' . $this->domain, null, $last_upgrade_submenu_position ); - } } /** * Adds Settings menu. + * + * @deprecated $$next-version$$ */ public function add_options_menu() { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::add_options_menu' ); parent::add_options_menu(); - - if ( Jetpack_Plan::supports( 'security-settings' ) ) { - add_submenu_page( - 'options-general.php', - esc_attr__( 'Security', 'jetpack' ), - __( 'Security', 'jetpack' ), - 'manage_options', - 'https://wordpress.com/settings/security/' . $this->domain, - null, - 2 - ); - } - - add_submenu_page( 'options-general.php', esc_attr__( 'Hosting Configuration', 'jetpack' ), __( 'Hosting Configuration', 'jetpack' ), 'manage_options', 'https://wordpress.com/hosting-config/' . $this->domain, null, 11 ); - - // Page Optimize is active by default on all Atomic sites and registers a Settings > Performance submenu which - // would conflict with our own Settings > Performance that links to Calypso, so we hide it it since the Calypso - // performance settings already have a link to Page Optimize settings page. - $this->hide_submenu_page( 'options-general.php', 'page-optimize' ); - - // Hide Settings > Performance when the interface is set to wp-admin. - // This is due to these settings are mostly also available in Jetpack > Settings, in the Performance tab. - if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { - $this->hide_submenu_page( 'options-general.php', 'https://wordpress.com/settings/performance/' . $this->domain ); - } } /** * Adds Tools menu entries. + * + * @deprecated $$next-version$$ */ public function add_tools_menu() { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::add_tools_menu' ); parent::add_tools_menu(); - - // Link the Tools menu to Available Tools when the interface is set to wp-admin. - if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { - add_submenu_page( 'tools.php', esc_attr__( 'Available Tools', 'jetpack' ), __( 'Available Tools', 'jetpack' ), 'edit_posts', 'tools.php', null, 0 ); - } - - /** - * Adds the WordPress.com Site Monitoring submenu under the main Tools menu. - */ - add_submenu_page( 'tools.php', esc_attr__( 'Site Monitoring', 'jetpack' ), __( 'Site Monitoring', 'jetpack' ), 'manage_options', 'https://wordpress.com/site-monitoring/' . $this->domain, null, 7 ); - - /** - * Adds the WordPress.com GitHub Deployments submenu under the main Tools menu. - */ - add_submenu_page( 'tools.php', esc_attr__( 'GitHub Deployments', 'jetpack' ), __( 'GitHub Deployments', 'jetpack' ), 'manage_options', 'https://wordpress.com/github-deployments/' . $this->domain, null, 8 ); } /** * Override the global submenu_file for theme-install.php page so the WP Admin menu item gets highlighted correctly. * + * @deprecated $$next-version$$ + * * @param string $submenu_file The current pages $submenu_file global variable value. * @return string | null */ public function override_the_theme_installer( $submenu_file ) { - global $pagenow; - - if ( 'themes.php' === $submenu_file && 'theme-install.php' === $pagenow ) { - return null; - } - return $submenu_file; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::override_the_theme_installer' ); + return parent::override_the_theme_installer( $submenu_file ); } /** * Also remove the Gutenberg plugin menu. + * + * @deprecated $$next-version$$ */ public function remove_gutenberg_menu() { - // Always remove the Gutenberg menu. - remove_menu_page( 'gutenberg' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::remove_gutenberg_menu' ); + parent::remove_gutenberg_menu(); } /** * Saves the sidebar state ( expanded / collapsed ) via an ajax request. + * + * @deprecated $$next-version$$ */ public function ajax_sidebar_state() { - $expanded = isset( $_REQUEST['expanded'] ) ? filter_var( wp_unslash( $_REQUEST['expanded'] ), FILTER_VALIDATE_BOOLEAN ) : false; // phpcs:ignore WordPress.Security.NonceVerification.Recommended - Client::wpcom_json_api_request_as_user( - '/me/preferences', - '2', - array( - 'method' => 'POST', - ), - (object) array( 'calypso_preferences' => (object) array( 'sidebarCollapsed' => ! $expanded ) ), - 'wpcom' - ); - - wp_die(); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::ajax_sidebar_state' ); + parent::ajax_sidebar_state(); } /** * Handle ajax requests to dismiss a just-in-time-message + * + * @deprecated $$next-version$$ */ public function wp_ajax_jitm_dismiss() { - check_ajax_referer( 'jitm_dismiss' ); - $jitm = \Automattic\Jetpack\JITMS\JITM::get_instance(); - if ( isset( $_REQUEST['id'] ) && isset( $_REQUEST['feature_class'] ) ) { - $jitm->dismiss( sanitize_text_field( wp_unslash( $_REQUEST['id'] ) ), sanitize_text_field( wp_unslash( $_REQUEST['feature_class'] ) ) ); - } - wp_die(); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::wp_ajax_jitm_dismiss' ); + parent::wp_ajax_jitm_dismiss(); } /** * Adds a notice above each settings page while using the Classic view to indicate * that the Default view offers more features. Links to the default view. * + * @deprecated $$next-version$$ + * * @return void */ public function add_settings_page_notice() { - if ( ! is_admin() ) { - return; - } - - $current_screen = get_current_screen(); - - if ( ! $current_screen instanceof \WP_Screen ) { - return; - } - - // Show the notice for the following screens and map them to the Calypso page. - $screen_map = array( - 'options-general' => 'general', - 'options-reading' => 'reading', - ); - - $mapped_screen = isset( $screen_map[ $current_screen->id ] ) - ? $screen_map[ $current_screen->id ] - : false; - - if ( ! $mapped_screen ) { - return; - } - - $switch_url = sprintf( 'https://wordpress.com/settings/%s/%s', $mapped_screen, $this->domain ); - - // Close over the $switch_url variable. - $admin_notices = function () use ( $switch_url ) { - wp_admin_notice( - wp_kses( - sprintf( - // translators: %s is a link to the Calypso settings page. - __( 'You are currently using the Classic view, which doesn’t offer the same set of features as the Default view. To access additional settings and features, switch to the Default view. ', 'jetpack' ), - esc_url( $switch_url ) - ), - array( 'a' => array( 'href' => array() ) ) - ), - array( - 'type' => 'warning', - ) - ); - }; - - add_action( 'admin_notices', $admin_notices ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Admin_Menu::add_settings_page_notice' ); + parent::add_settings_page_notice(); } } diff --git a/projects/plugins/jetpack/modules/masterbar/admin-menu/class-base-admin-menu.php b/projects/plugins/jetpack/modules/masterbar/admin-menu/class-base-admin-menu.php deleted file mode 100644 index 2628603536a96..0000000000000 --- a/projects/plugins/jetpack/modules/masterbar/admin-menu/class-base-admin-menu.php +++ /dev/null @@ -1,801 +0,0 @@ -is_api_request = defined( 'REST_REQUEST' ) && REST_REQUEST || isset( $_SERVER['REQUEST_URI'] ) && str_starts_with( filter_var( wp_unslash( $_SERVER['REQUEST_URI'] ) ), '/?rest_route=%2Fwpcom%2Fv2%2Fadmin-menu' ); - $this->domain = ( new Status() )->get_site_suffix(); - - add_action( 'admin_menu', array( $this, 'reregister_menu_items' ), 99998 ); - add_action( 'admin_menu', array( $this, 'hide_parent_of_hidden_submenus' ), 99999 ); - - if ( ! $this->is_api_request ) { - add_filter( 'admin_menu', array( $this, 'override_svg_icons' ), 99999 ); - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 11 ); - add_action( 'admin_head', array( $this, 'set_site_icon_inline_styles' ) ); - add_action( 'in_admin_header', array( $this, 'add_dashboard_switcher' ) ); - add_action( 'admin_footer', array( $this, 'dashboard_switcher_scripts' ) ); - add_action( 'admin_menu', array( $this, 'handle_preferred_view' ), 99997 ); - add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); - - // Do not inject core mobile toggle when the user wants to use the WP Admin interface. - if ( ! $this->use_wp_admin_interface() ) { - add_action( 'adminmenu', array( $this, 'inject_core_mobile_toggle' ) ); - } - } - } - - /** - * Returns class instance. - * - * @return Admin_Menu - */ - public static function get_instance() { - $class = static::class; - - if ( empty( static::$instances[ $class ] ) ) { - static::$instances[ $class ] = new $class(); - } - - return static::$instances[ $class ]; - } - - /** - * Updates the menu data of the given menu slug. - * - * @param string $slug Slug of the menu to update. - * @param string $url New menu URL. - * @param string $title New menu title. - * @param string $cap New menu capability. - * @param string $icon New menu icon. - * @param int $position New menu position. - * @return bool Whether the menu has been updated. - */ - public function update_menu( $slug, $url = null, $title = null, $cap = null, $icon = null, $position = null ) { - global $menu, $submenu; - - $menu_item = null; - $menu_position = null; - - foreach ( $menu as $i => $item ) { - if ( $slug === $item[2] ) { - $menu_item = $item; - $menu_position = $i; - break; - } - } - - if ( ! $menu_item ) { - return false; - } - - if ( $title ) { - $menu_item[0] = $title; - $menu_item[3] = esc_attr( $title ); - } - - if ( $cap ) { - $menu_item[1] = $cap; - } - - // Change parent slug only if there are no submenus (the slug of the 1st submenu will be used if there are submenus). - if ( $url ) { - $this->hide_submenu_page( $slug, $slug ); - - if ( ! isset( $submenu[ $slug ] ) || ! $this->has_visible_items( $submenu[ $slug ] ) ) { - $menu_item[2] = $url; - } - } - - if ( $icon ) { - $menu_item[4] = 'menu-top'; - $menu_item[6] = $icon; - } - - // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - unset( $menu[ $menu_position ] ); - if ( $position ) { - $menu_position = $position; - } - $this->set_menu_item( $menu_item, $menu_position ); - - // Only add submenu when there are other submenu items. - if ( $url && isset( $submenu[ $slug ] ) && $this->has_visible_items( $submenu[ $slug ] ) ) { - add_submenu_page( $slug, $menu_item[3], $menu_item[0], $menu_item[1], $url, null, 0 ); - } - - return true; - } - - /** - * Updates the submenus of the given menu slug. - * - * It hides the menu by adding the `hide-if-js` css class and duplicates the submenu with the new slug. - * - * @param string $slug Menu slug. - * @param array $submenus_to_update Array of new submenu slugs. - */ - public function update_submenus( $slug, $submenus_to_update ) { - global $submenu; - - if ( ! isset( $submenu[ $slug ] ) ) { - return; - } - - // This is needed for cases when the submenus to update have the same new slug. - $submenus_to_update = array_filter( - $submenus_to_update, - static function ( $item, $old_slug ) { - return $item !== $old_slug; - }, - ARRAY_FILTER_USE_BOTH - ); - - /** - * Iterate over all submenu items and add the hide the submenus with CSS classes. - * This is done separately of the second foreach because the position of the submenu might change. - */ - foreach ( $submenu[ $slug ] as $index => $item ) { - if ( ! array_key_exists( $item[2], $submenus_to_update ) ) { - continue; - } - - $this->hide_submenu_element( $index, $slug, $item ); - } - - $submenu_items = array_values( $submenu[ $slug ] ); - - /** - * Iterate again over the submenu array. We need a copy of the array because add_submenu_page will add new elements - * to submenu array that might cause an infinite loop. - */ - foreach ( $submenu_items as $i => $submenu_item ) { - if ( ! array_key_exists( $submenu_item[2], $submenus_to_update ) ) { - continue; - } - - add_submenu_page( - $slug, - isset( $submenu_item[3] ) ? $submenu_item[3] : '', - isset( $submenu_item[0] ) ? $submenu_item[0] : '', - isset( $submenu_item[1] ) ? $submenu_item[1] : 'read', - $submenus_to_update[ $submenu_item[2] ], - '', - 0 === $i ? 0 : $i + 1 - ); - } - } - - /** - * Adds a menu separator. - * - * @param int $position The position in the menu order this item should appear. - * @param string $cap Optional. The capability required for this menu to be displayed to the user. - * Default: 'read'. - */ - public function add_admin_menu_separator( $position = null, $cap = 'read' ) { - $menu_item = array( - '', // Menu title (ignored). - $cap, // Required capability. - wp_unique_id( 'separator-custom-' ), // URL or file (ignored, but must be unique). - '', // Page title (ignored). - 'wp-menu-separator', // CSS class. Identifies this item as a separator. - ); - - $this->set_menu_item( $menu_item, $position ); - } - - /** - * Enqueues scripts and styles. - */ - public function enqueue_scripts() { - if ( $this->is_rtl() ) { - $css_path = 'admin-menu-rtl.css'; - } else { - $css_path = 'admin-menu.css'; - } - - wp_enqueue_style( - 'jetpack-admin-menu', - plugins_url( $css_path, __FILE__ ), - array(), - JETPACK__VERSION - ); - - wp_style_add_data( 'jetpack-admin-menu', 'rtl', $this->is_rtl() ); - - // Load nav unification styles when the user isn't using wp-admin interface style. - if ( ! $this->use_wp_admin_interface() ) { - wp_enqueue_style( - 'jetpack-admin-nav-unification', - plugins_url( 'admin-menu-nav-unification.css', __FILE__ ), - array(), - JETPACK__VERSION - ); - - wp_style_add_data( 'jetpack-admin-nav-unification', 'rtl', $this->is_rtl() ); - } - - $this->configure_colors_for_rtl_stylesheets(); - - wp_enqueue_script( - 'jetpack-admin-menu', - plugins_url( 'admin-menu.js', __FILE__ ), - array(), - JETPACK__VERSION, - true - ); - - wp_localize_script( - 'jetpack-admin-menu', - 'jetpackAdminMenu', - array( - 'upsellNudgeJitm' => wp_create_nonce( 'upsell_nudge_jitm' ), - 'jitmDismissNonce' => wp_create_nonce( 'jitm_dismiss' ), - ) - ); - } - - /** - * Mark the core colors stylesheets as RTL depending on the value from the environment. - * This fixes a core issue where the extra RTL data is not added to the colors stylesheet. - * https://core.trac.wordpress.org/ticket/53090 - */ - public function configure_colors_for_rtl_stylesheets() { - wp_style_add_data( 'colors', 'rtl', $this->is_rtl() ); - } - - /** - * Injects inline-styles for site icon for when third-party plugins remove enqueued stylesheets. - * Unable to use wp_add_inline_style as plugins remove styles from all non-standard handles - */ - public function set_site_icon_inline_styles() { - echo ''; - } - - /** - * Hide the submenu page based on slug and return the item that was hidden. - * - * Instead of actually removing the submenu item, a safer approach is to hide it and filter it in the API response. - * In this manner we'll avoid breaking third-party plugins depending on items that no longer exist. - * - * A false|array value is returned to be consistent with remove_submenu_page() function - * - * @param string $menu_slug The parent menu slug. - * @param string $submenu_slug The submenu slug that should be hidden. - * @return false|array - */ - public function hide_submenu_page( $menu_slug, $submenu_slug ) { - global $submenu; - - if ( ! isset( $submenu[ $menu_slug ] ) ) { - return false; - } - - foreach ( $submenu[ $menu_slug ] as $i => $item ) { - if ( $submenu_slug !== $item[2] ) { - continue; - } - - $this->hide_submenu_element( $i, $menu_slug, $item ); - - return $item; - } - - return false; - } - - /** - * Apply the hide-if-js CSS class to a submenu item. - * - * @param int $index The position of a submenu item in the submenu array. - * @param string $parent_slug The parent slug. - * @param array $item The submenu item. - */ - public function hide_submenu_element( $index, $parent_slug, $item ) { - global $submenu; - - $css_classes = empty( $item[4] ) ? self::HIDE_CSS_CLASS : $item[4] . ' ' . self::HIDE_CSS_CLASS; - - // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - $submenu [ $parent_slug ][ $index ][4] = $css_classes; - } - - /** - * Check if the menu has submenu items visible - * - * @param array $submenu_items The submenu items. - * @return bool - */ - public function has_visible_items( $submenu_items ) { - $visible_items = array_filter( - $submenu_items, - array( $this, 'is_item_visible' ) - ); - - return array() !== $visible_items; - } - - /** - * Return the number of existing submenu items under the supplied parent slug. - * - * @param string $parent_slug The slug of the parent menu. - * @return int The number of submenu items under $parent_slug. - */ - public function get_submenu_item_count( $parent_slug ) { - global $submenu; - - if ( empty( $parent_slug ) || empty( $submenu[ $parent_slug ] ) || ! is_array( $submenu[ $parent_slug ] ) ) { - return 0; - } - - return count( $submenu[ $parent_slug ] ); - } - - /** - * Adds the given menu item in the specified position. - * - * @param array $item The menu item to add. - * @param int $position The position in the menu order this item should appear. - */ - public function set_menu_item( $item, $position = null ) { - global $menu; - - // Handle position (avoids overwriting menu items already populated in the given position). - // Inspired by https://core.trac.wordpress.org/browser/trunk/src/wp-admin/menu.php?rev=49837#L160. - if ( null === $position ) { - $menu[] = $item; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - } elseif ( isset( $menu[ "$position" ] ) ) { - $position = $position + substr( base_convert( md5( $item[2] . $item[0] ), 16, 10 ), -5 ) * 0.00001; - $menu[ "$position" ] = $item; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - } else { - $menu[ $position ] = $item; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - } - } - - /** - * Determines whether the current locale is right-to-left (RTL). - */ - public function is_rtl() { - return is_rtl(); - } - - /** - * Checks for any SVG icons in the menu, and overrides things so that - * we can display the icon in the correct colour for the theme. - */ - public function override_svg_icons() { - global $menu; - - $svg_items = array(); - foreach ( $menu as $idx => $menu_item ) { - // Menu items that don't have icons, for example separators, have less than 7 - // elements, partly because the 7th is the icon. So, if we have less than 7, - // let's skip it. - if ( ! is_countable( $menu_item ) || ( count( $menu_item ) < 7 ) ) { - continue; - } - - // If the hookname contain a URL than sanitize it by replacing invalid characters. - if ( str_contains( $menu_item[5], '://' ) ) { - $menu_item[5] = preg_replace( '![:/.]+!', '_', $menu_item[5] ); - } - - if ( str_starts_with( $menu_item[6], 'data:image/svg+xml' ) && 'site-card' !== $menu_item[3] ) { - $svg_items[] = array( - 'icon' => $menu_item[6], - 'id' => $menu_item[5], - ); - $menu_item[4] .= ' menu-svg-icon'; - $menu_item[6] = 'none'; - } - // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - $menu[ $idx ] = $menu_item; - } - if ( $svg_items !== array() ) { - $styles = '.menu-svg-icon .wp-menu-image { background-repeat: no-repeat; background-position: center center } '; - foreach ( $svg_items as $svg_item ) { - $styles .= sprintf( '#%s .wp-menu-image { background-image: url( "%s" ) }', $svg_item['id'], $svg_item['icon'] ); - } - $styles .= '@supports ( mask-image: none ) or ( -webkit-mask-image: none ) { '; - $styles .= '.menu-svg-icon .wp-menu-image { background-image: none; } '; - $styles .= '.menu-svg-icon .wp-menu-image::before { background-color: currentColor; '; - $styles .= 'mask-size: contain; mask-position: center center; mask-repeat: no-repeat; '; - $styles .= '-webkit-mask-size: contain; -webkit-mask-position: center center; -webkit-mask-repeat: no-repeat; content:"" } '; - foreach ( $svg_items as $svg_item ) { - $styles .= sprintf( - '#%s .wp-menu-image { background-image: none; } #%s .wp-menu-image::before{ mask-image: url( "%s" ); -webkit-mask-image: url( "%s" ) }', - $svg_item['id'], - $svg_item['id'], - $svg_item['icon'], - $svg_item['icon'] - ); - } - $styles .= '}'; - - wp_register_style( 'svg-menu-overrides', false, array(), '20210331' ); - wp_enqueue_style( 'svg-menu-overrides' ); - wp_add_inline_style( 'svg-menu-overrides', $styles ); - } - } - - /** - * Hide menus that are unauthorized and don't have visible submenus and cases when the menu has the same slug - * as the first submenu item. - * - * This must be done at the end of menu and submenu manipulation in order to avoid performing this check each time - * the submenus are altered. - */ - public function hide_parent_of_hidden_submenus() { - global $menu, $submenu; - - $this->sort_hidden_submenus(); - - foreach ( $menu as $menu_index => $menu_item ) { - $has_submenus = isset( $submenu[ $menu_item[2] ] ); - - // Skip if the menu doesn't have submenus or the submenu is not an array. - if ( ! $has_submenus || ! is_array( $submenu[ $menu_item[2] ] ) ) { - continue; - } - - $submenu_items = array_values( $submenu[ $menu_item[2] ] ); - if ( empty( $submenu_items ) ) { - continue; - } - - // If the first submenu item is hidden then we should also hide the parent. - // Since the submenus are ordered by self::HIDE_CSS_CLASS (hidden submenus should be at the end of the array), - // we can say that if the first submenu is hidden then we should also hide the menu. - $first_submenu_item = $submenu_items[0]; - $is_first_submenu_visible = $this->is_item_visible( $first_submenu_item ); - - // if the user does not have access to the menu and the first submenu is hidden, then hide the menu. - if ( ! current_user_can( $menu_item[1] ) && ! $is_first_submenu_visible ) { - // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - $menu[ $menu_index ][4] = self::HIDE_CSS_CLASS; - } - - // If the menu has the same slug as the first submenu then hide the submenu. - if ( isset( $first_submenu_item[2] ) && $menu_item[2] === $first_submenu_item[2] && ! $is_first_submenu_visible ) { - // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - $menu[ $menu_index ][4] = self::HIDE_CSS_CLASS; - } - } - } - - /** - * Sort the hidden submenus by moving them at the end of the array in order to avoid WP using them as default URLs. - * - * This operation has to be done at the end of submenu manipulation in order to guarantee that the hidden submenus - * are at the end of the array. - */ - public function sort_hidden_submenus() { - global $submenu; - - foreach ( $submenu as $menu_slug => $submenu_items ) { - if ( ! $submenu_items ) { - continue; - } - - foreach ( $submenu_items as $submenu_index => $submenu_item ) { - if ( $this->is_item_visible( $submenu_item ) ) { - continue; - } - - unset( $submenu[ $menu_slug ][ $submenu_index ] ); - // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - $submenu[ $menu_slug ][] = $submenu_item; - } - } - } - - /** - * Check if the given item is visible or not in the admin menu. - * - * @param array $item A menu or submenu array. - */ - public function is_item_visible( $item ) { - return ! isset( $item[4] ) || ! str_contains( $item[4], self::HIDE_CSS_CLASS ); - } - - /** - * Adds a dashboard switcher to the list of screen meta links of the current page. - */ - public function add_dashboard_switcher() { - $menu_mappings = require __DIR__ . '/menu-mappings.php'; - $screen = $this->get_current_screen(); - - // Let's show the switcher only in screens that we have a Calypso mapping to switch to. - if ( empty( $menu_mappings[ $screen ] ) ) { - return; - } - ?> - - - get_preferred_views(); - $screen = str_replace( '?post_type=post', '', $screen ); - $preferred_views[ $screen ] = $view; - update_user_option( get_current_user_id(), 'jetpack_admin_menu_preferred_views', $preferred_views ); - } - - /** - * Get the preferred views for all screens. - * - * @return array - */ - public function get_preferred_views() { - $preferred_views = get_user_option( 'jetpack_admin_menu_preferred_views' ); - - if ( ! $preferred_views ) { - return array(); - } - - return $preferred_views; - } - - /** - * Get the preferred view for the given screen. - * - * @param string $screen Screen identifier. - * @param bool $fallback_global_preference (Optional) Whether the global preference for all screens should be used - * as fallback if there is no specific preference for the given screen. - * Default: true. - * @return string - */ - public function get_preferred_view( $screen, $fallback_global_preference = true ) { - $preferred_views = $this->get_preferred_views(); - - if ( ! isset( $preferred_views[ $screen ] ) ) { - if ( ! $fallback_global_preference ) { - return self::UNKNOWN_VIEW; - } - - $should_link_to_wp_admin = $this->should_link_to_wp_admin( $screen ) || $this->use_wp_admin_interface(); - return $should_link_to_wp_admin ? self::CLASSIC_VIEW : self::DEFAULT_VIEW; - } - - return $preferred_views[ $screen ]; - } - - /** - * Gets the identifier of the current screen. - * - * @return string - */ - public function get_current_screen() { - // phpcs:disable WordPress.Security.NonceVerification - global $pagenow; - $screen = isset( $_REQUEST['screen'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['screen'] ) ) : $pagenow; - if ( isset( $_GET['post_type'] ) ) { - $screen = add_query_arg( 'post_type', sanitize_text_field( wp_unslash( $_GET['post_type'] ) ), $screen ); - } - if ( isset( $_GET['taxonomy'] ) ) { - $screen = add_query_arg( 'taxonomy', sanitize_text_field( wp_unslash( $_GET['taxonomy'] ) ), $screen ); - } - if ( isset( $_GET['page'] ) ) { - $screen = add_query_arg( 'page', sanitize_text_field( wp_unslash( $_GET['page'] ) ), $screen ); - } - return $screen; - // phpcs:enable WordPress.Security.NonceVerification - } - - /** - * Stores the preferred view for the current screen. - */ - public function handle_preferred_view() { - // phpcs:disable WordPress.Security.NonceVerification - if ( ! isset( $_GET['preferred-view'] ) ) { - return; - } - - // phpcs:disable WordPress.Security.NonceVerification - $preferred_view = sanitize_key( $_GET['preferred-view'] ); - - if ( ! in_array( $preferred_view, array( self::DEFAULT_VIEW, self::CLASSIC_VIEW ), true ) ) { - return; - } - - $current_screen = $this->get_current_screen(); - - $this->set_preferred_view( $current_screen, $preferred_view ); - - /** - * Dashboard Quick switcher action triggered when a user switches to a different view. - * - * @module masterbar - * - * @since 9.9.1 - * - * @param string The current screen of the user. - * @param string The preferred view the user selected. - */ - \do_action( 'jetpack_dashboard_switcher_changed_view', $current_screen, $preferred_view ); - - if ( self::DEFAULT_VIEW === $preferred_view ) { - // Redirect to default view if that's the newly preferred view. - $menu_mappings = require __DIR__ . '/menu-mappings.php'; - if ( isset( $menu_mappings[ $current_screen ] ) ) { - // Using `wp_redirect` intentionally because we're redirecting to Calypso. - wp_redirect( $menu_mappings[ $current_screen ] . $this->domain ); // phpcs:ignore WordPress.Security.SafeRedirect - exit; - } - } elseif ( self::CLASSIC_VIEW === $preferred_view ) { - // Removes the `preferred-view` param from the URL to avoid issues with - // screens that don't expect this param to be present in the URL. - wp_safe_redirect( remove_query_arg( 'preferred-view' ) ); - exit; - } - // phpcs:enable WordPress.Security.NonceVerification - } - - /** - * Adds the necessary CSS class to the admin body class. - * - * @param string $admin_body_classes Contains all the admin body classes. - * - * @return string - */ - public function admin_body_class( $admin_body_classes ) { - return " is-nav-unification $admin_body_classes "; - } - - /** - * Whether to use wp-admin pages rather than Calypso. - * - * Options: - * false - Calypso (Default). - * true - wp-admin. - * - * @return bool - */ - public function should_link_to_wp_admin() { - return get_user_option( 'jetpack_admin_menu_link_destination' ); - } - - /** - * Injects the core's mobile toggle for proper positioning of the submenus. - * - * @see https://core.trac.wordpress.org/ticket/32747 - * - * @return void - */ - public function inject_core_mobile_toggle() { - echo ''; - } - - /** - * Whether the current user has indicated they want to use the wp-admin interface for the given screen. - * - * @return bool - */ - public function use_wp_admin_interface() { - return 'wp-admin' === get_option( 'wpcom_admin_interface' ); - } - - /** - * Create the desired menu output. - */ - abstract public function reregister_menu_items(); -} diff --git a/projects/plugins/jetpack/modules/masterbar/admin-menu/class-dashboard-switcher-tracking.php b/projects/plugins/jetpack/modules/masterbar/admin-menu/class-dashboard-switcher-tracking.php index 9dd31f3874380..87e8aed3e0742 100644 --- a/projects/plugins/jetpack/modules/masterbar/admin-menu/class-dashboard-switcher-tracking.php +++ b/projects/plugins/jetpack/modules/masterbar/admin-menu/class-dashboard-switcher-tracking.php @@ -2,14 +2,14 @@ /** * Quick switcher tracking file. * + * @deprecated $$next-version$$ Use Automattic\Jetpack\Masterbar\Dashboard_Switcher_Tracking instead. + * * @package automattic/jetpack */ namespace Automattic\Jetpack\Dashboard_Customizations; -use Automattic\Jetpack\Current_Plan as Jetpack_Plan; -use Automattic\Jetpack\Status\Host; -use Automattic\Jetpack\Terms_Of_Service; +use Automattic\Jetpack\Masterbar\Dashboard_Switcher_Tracking as Masterbar_Dashboard_Switcher_Tracking; use Automattic\Jetpack\Tracking; /** @@ -23,127 +23,66 @@ class Dashboard_Switcher_Tracking { const JETPACK_EVENT_NAME = 'dashboard_quick_switch_link_clicked'; const WPCOM_EVENT_NAME = 'wpcom_dashboard_quick_switch_link_clicked'; - /** - * Jetpack tracking object. - * - * @var Tracking - */ - private $tracking; - - /** - * Current site plan. - * - * @var string - */ - private $plan; /** - * The wpcom_tracks wrapper function. + * Instance of \Automattic\Jetpack\Masterbar\Dashboard_Switcher_Tracking + * Used for deprecation purposes. * - * @var callable + * @var \Automattic\Jetpack\Masterbar\Dashboard_Switcher_Tracking */ - private $wpcom_tracking; + private $dashboard_switcher_wrapper; /** * Dashboard_Switcher_Tracking constructor. * + * @deprecated $$next-version$$ + * * @param Tracking $tracking Jetpack tracking object. * @param callable $wpcom_tracking A wrapper over wpcom event record. * @param string $plan The current site plan. */ public function __construct( Tracking $tracking, callable $wpcom_tracking, $plan ) { - $this->tracking = $tracking; - $this->plan = $plan; - $this->wpcom_tracking = $wpcom_tracking; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Dashboard_Switcher_Tracking::__construct' ); + $this->dashboard_switcher_wrapper = new Masterbar_Dashboard_Switcher_Tracking( $tracking, $wpcom_tracking, $plan ); } /** * Create an event for the Quick switcher when the user changes it's preferred view. * + * @deprecated $$next-version$$ + * * @param string $screen The screen page. * @param string $view The new preferred view. */ public function record_switch_event( $screen, $view ) { - $event_props = array( - 'current_page' => $screen, - 'destination' => $view, - 'plan' => $this->plan, - ); - - if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { - $event_props['blog_id'] = get_current_blog_id(); - - /** - * Callable injected in the constructor with the static::wpcom_tracks_record_event() static method. - * - * @see wpcom_tracks_record_event A static method from this class that executes the actual WPCOM event record. - */ - $wpcom_tracking = $this->wpcom_tracking; - $wpcom_tracking( $event_props ); - } else { - $this->record_jetpack_event( $event_props ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Dashboard_Switcher_Tracking::record_switch_event' ); + $this->dashboard_switcher_wrapper->record_switch_event( $screen, $view ); } /** * Get the current site plan or 'N/A' when we cannot determine site's plan. * + * @deprecated $$next-version$$ + * * @todo: This method can be reused as a wrapper over WPCOM and Atomic as way to get site's current plan (display name). * * @return string */ public static function get_plan() { - if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { - if ( class_exists( '\WPCOM_Store_API' ) ) { - // @todo: Maybe introduce a wrapper for this since we are duplicating it from WPCOM_Admin_Menu:253 - $products = \WPCOM_Store_API::get_current_plan( \get_current_blog_id() ); - if ( ! empty( $products['product_slug'] ) ) { - return $products['product_slug']; - } - } - - return 'N/A'; // maybe we should return free or null? At the moment it's safe to return 'N/A' since we use it only for passing it to the event. - } - - // @todo: Maybe introduce a helper for this since we are duplicating it from Atomic_Admin_Menu:240 - $products = Jetpack_Plan::get(); - if ( ! empty( $products['product_slug'] ) ) { - return $products['product_slug']; - } - - return 'N/A'; // maybe we should return free or null? At the moment we use it for passing it to the event. - } - - /** - * Record the event with Jetpack implementation. - * - * For Atomic sites we mark the Jetpack ToS option temporary as read. - * - * @todo Remove the jetpack_options_tos_agreed filter for Atomic sites after the Tracking is properly working for AT sites. - * - * @param array $event_properties The event properties. - */ - private function record_jetpack_event( $event_properties ) { - $woa = ( new Host() )->is_woa_site(); - if ( $woa ) { - add_filter( 'jetpack_options', array( __CLASS__, 'mark_jetpack_tos_as_read' ), 10, 2 ); - } - - $this->tracking->record_user_event( self::JETPACK_EVENT_NAME, $event_properties ); - - if ( $woa ) { - \remove_filter( 'jetpack_options', array( __CLASS__, 'mark_jetpack_tos_as_read' ) ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Dashboard_Switcher_Tracking::get_plan' ); + return Masterbar_Dashboard_Switcher_Tracking::get_plan(); } /** * Trigger the WPCOM tracks_record_event. * + * @deprecated $$next-version$$ + * * @param array $event_props Event props. */ public static function wpcom_tracks_record_event( $event_props ) { - require_lib( 'tracks/client' ); - \tracks_record_event( \wp_get_current_user(), self::WPCOM_EVENT_NAME, $event_props ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Dashboard_Switcher_Tracking::wpcom_tracks_record_event' ); + return Masterbar_Dashboard_Switcher_Tracking::wpcom_tracks_record_event( $event_props ); } /** @@ -151,25 +90,27 @@ public static function wpcom_tracks_record_event( $event_props ) { * * The tracking product name is used by the Tracking as a prefix for the event name. * + * @deprecated $$next-version$$ + * * @return string */ public static function get_jetpack_tracking_product() { - return ( new Host() )->is_woa_site() ? 'atomic' : 'jetpack'; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Dashboard_Switcher_Tracking::get_jetpack_tracking_product' ); + return Masterbar_Dashboard_Switcher_Tracking::get_jetpack_tracking_product(); } /** * Mark the Jetpack ToS as read for Atomic Sites. * + * @deprecated $$next-version$$ + * * @param mixed $option_value The value of the Jetpack option. * @param string $option_name The name of the Jetpack option. * * @return bool */ public static function mark_jetpack_tos_as_read( $option_value, $option_name ) { - if ( Terms_Of_Service::OPTION_NAME === $option_name ) { - return true; - } - - return $option_value; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Dashboard_Switcher_Tracking::mark_jetpack_tos_as_read' ); + return Masterbar_Dashboard_Switcher_Tracking::mark_jetpack_tos_as_read( $option_value, $option_name ); } } diff --git a/projects/plugins/jetpack/modules/masterbar/admin-menu/class-domain-only-admin-menu.php b/projects/plugins/jetpack/modules/masterbar/admin-menu/class-domain-only-admin-menu.php index 8bf83b6bbdf40..4217372c505e1 100644 --- a/projects/plugins/jetpack/modules/masterbar/admin-menu/class-domain-only-admin-menu.php +++ b/projects/plugins/jetpack/modules/masterbar/admin-menu/class-domain-only-admin-menu.php @@ -2,67 +2,50 @@ /** * Domain-only sites Admin Menu file. * + * @deprecated $$next-version$$ Use Automattic\Jetpack\Masterbar\Domain_Only_Admin_Menu instead. + * * @package automattic/jetpack */ namespace Automattic\Jetpack\Dashboard_Customizations; -require_once __DIR__ . '/class-base-admin-menu.php'; -require_once __DIR__ . '/class-wpcom-email-subscription-checker.php'; +use Automattic\Jetpack\Masterbar\Domain_Only_Admin_Menu as Masterbar_Domain_Only_Admin_Menu; /** * Class Domain_Only_Admin_Menu. */ -class Domain_Only_Admin_Menu extends Base_Admin_Menu { +class Domain_Only_Admin_Menu extends Masterbar_Domain_Only_Admin_Menu { /** - * The `WPCOM_Email_Subscription_Checker` instance used to verify if a site has an email subscription. + * Ensure that instantiating this class will trigger a deprecation warning. * - * @var \WPCOM_Email_Subscription_Checker + * @since $$next-version$$ */ - private $email_subscriptions_checker; - - /** - * Constructor that lets us pass in a WPCOM_Email_Subscription_Checker dependency. - * - * @param \WPCOM_Email_Subscription_Checker $email_subscriptions_checker The WPCOM_Email_Subscription_Checker instance. - */ - protected function __construct( $email_subscriptions_checker = null ) { + public function __construct() { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Domain_Only_Admin_Menu::__construct' ); parent::__construct(); - - $this->email_subscriptions_checker = $email_subscriptions_checker; - - if ( empty( $this->email_subscriptions_checker ) ) { - $this->set_email_subscription_checker( new \WPCOM_Email_Subscription_Checker() ); - } } /** * This setter lets us inject an WPCOM_Email_Subscription_Checker instance. * - * @param \WPCOM_Email_Subscription_Checker $email_subscriptions_checker An WPCOM_Email_Subscription_Checker instance. + * @deprecated $$next-version$$ + * + * @param \Automattic\Jetpack\Masterbar\WPCOM_Email_Subscription_Checker $email_subscriptions_checker An WPCOM_Email_Subscription_Checker instance. * * @return void */ public function set_email_subscription_checker( $email_subscriptions_checker ) { - $this->email_subscriptions_checker = $email_subscriptions_checker; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Domain_Only_Admin_Menu::set_email_subscription_checker' ); + parent::set_email_subscription_checker( $email_subscriptions_checker ); } /** * Create the desired menu output. + * + * @deprecated $$next-version$$ */ public function reregister_menu_items() { - global $menu, $submenu; - - $menu = array(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - $submenu = array(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - - add_menu_page( esc_attr__( 'Manage Domain', 'jetpack' ), __( 'Manage Domain', 'jetpack' ), 'manage_options', 'https://wordpress.com/domains/manage/' . $this->domain . '/edit/' . $this->domain, null, 'dashicons-admin-settings' ); - - if ( $this->email_subscriptions_checker->has_email() ) { - add_menu_page( esc_attr__( 'Manage Email', 'jetpack' ), __( 'Manage Email', 'jetpack' ), 'manage_options', 'https://wordpress.com/email/' . $this->domain . '/manage/' . $this->domain, null, 'dashicons-admin-settings' ); - } - - add_menu_page( esc_attr__( 'Manage Purchases', 'jetpack' ), __( 'Manage Purchases', 'jetpack' ), 'manage_options', 'https://wordpress.com/purchases/subscriptions/' . $this->domain, null, 'dashicons-cart' ); - add_menu_page( esc_attr__( 'My Mailboxes', 'jetpack' ), __( 'My Mailboxes', 'jetpack' ), 'manage_options', 'https://wordpress.com/mailboxes/' . $this->domain, null, 'dashicons-email' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Domain_Only_Admin_Menu::reregister_menu_items' ); + parent::reregister_menu_items(); } } diff --git a/projects/plugins/jetpack/modules/masterbar/admin-menu/class-jetpack-admin-menu.php b/projects/plugins/jetpack/modules/masterbar/admin-menu/class-jetpack-admin-menu.php index ddd97ca64cd41..bd09f980defb6 100644 --- a/projects/plugins/jetpack/modules/masterbar/admin-menu/class-jetpack-admin-menu.php +++ b/projects/plugins/jetpack/modules/masterbar/admin-menu/class-jetpack-admin-menu.php @@ -2,314 +2,225 @@ /** * Jetpack Admin Menu file. * + * @deprecated $$next-version$$ Use Automattic\Jetpack\Masterbar\Jetpack_Admin_Menu instead. + * * @package Jetpack */ namespace Automattic\Jetpack\Dashboard_Customizations; -use Automattic\Jetpack\Blaze; -use Automattic\Jetpack\Current_Plan as Jetpack_Plan; - -require_once __DIR__ . '/class-admin-menu.php'; +use Automattic\Jetpack\Masterbar\Jetpack_Admin_Menu as Masterbar_Jetpack_Admin_Menu; /** * Class Jetpack_Admin_Menu. */ -class Jetpack_Admin_Menu extends Admin_Menu { +class Jetpack_Admin_Menu extends Masterbar_Jetpack_Admin_Menu { + + /** + * Ensure that instantiating this class will trigger a deprecation warning. + * + * @since $$next-version$$ + */ + public function __construct() { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::__construct' ); + parent::__construct(); + } /** * Determines whether the current locale is right-to-left (RTL). * * Performs the check against the current locale set on the WordPress.com's account settings. * See `Masterbar::__construct` in `modules/masterbar/masterbar/class-masterbar.php`. + * + * @deprecated $$next-version$$ */ public function is_rtl() { - return get_user_option( 'jetpack_wpcom_is_rtl' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::is_rtl' ); + return parent::is_rtl(); } /** * Create the desired menu output. + * + * @deprecated $$next-version$$ */ public function reregister_menu_items() { - global $menu, $submenu; - - // Reset menus so there are no third-party plugin items. - $menu = array(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - $submenu = array(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::reregister_menu_items' ); parent::reregister_menu_items(); - - $this->add_feedback_menu(); - $this->add_cpt_menus(); - $this->add_wp_admin_menu(); - - ksort( $GLOBALS['menu'] ); } /** * Get the preferred view for the given screen. * + * @deprecated $$next-version$$ + * * @param string $screen Screen identifier. * @param bool $fallback_global_preference (Optional) Whether the global preference for all screens should be used * as fallback if there is no specific preference for the given screen. * Default: true. * @return string */ - public function get_preferred_view( $screen, $fallback_global_preference = true ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable - // Force default views (Calypso) on Jetpack sites since Nav Unification is disabled on WP Admin. - return self::DEFAULT_VIEW; + public function get_preferred_view( $screen, $fallback_global_preference = true ) { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::get_preferred_view' ); + return parent::get_preferred_view( $screen, $fallback_global_preference ); } /** * Get the Calypso or wp-admin link to CPT page. * + * @deprecated $$next-version$$ + * * @param object $ptype_obj The post type object. * @return string The link to Calypso if SSO is enabled and the post_type * supports rest or to WP Admin if SSO is disabled. */ public function get_cpt_menu_link( $ptype_obj ) { - - $post_type = $ptype_obj->name; - - if ( \Jetpack::is_module_active( 'sso' ) && $ptype_obj->show_in_rest ) { - return 'https://wordpress.com/types/' . $post_type . '/' . $this->domain; - } else { - return 'edit.php?post_type=' . $post_type; - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::get_cpt_menu_link' ); + return parent::get_cpt_menu_link( $ptype_obj ); } /** * Adds Posts menu. + * + * @deprecated $$next-version$$ */ public function add_posts_menu() { - $post = get_post_type_object( 'post' ); - add_menu_page( esc_attr( $post->labels->menu_name ), $post->labels->menu_name, $post->cap->edit_posts, 'https://wordpress.com/posts/' . $this->domain, null, 'dashicons-admin-post' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_posts_menu' ); + parent::add_posts_menu(); } /** * Adds Media menu. + * + * @deprecated $$next-version$$ */ public function add_media_menu() { - add_menu_page( __( 'Media', 'jetpack' ), __( 'Media', 'jetpack' ), 'upload_files', 'https://wordpress.com/media/' . $this->domain, null, 'dashicons-admin-media' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_media_menu' ); + parent::add_media_menu(); } /** * Adds Page menu. + * + * @deprecated $$next-version$$ */ public function add_page_menu() { - $page = get_post_type_object( 'page' ); - add_menu_page( esc_attr( $page->labels->menu_name ), $page->labels->menu_name, $page->cap->edit_posts, 'https://wordpress.com/pages/' . $this->domain, null, 'dashicons-admin-page' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_page_menu' ); + parent::add_page_menu(); } /** * Adds a custom post type menu. * + * @deprecated $$next-version$$ + * * @param string $post_type Custom post type. * @param int|null $position Optional. Position where to display the menu item. Default null. */ public function add_custom_post_type_menu( $post_type, $position = null ) { - $ptype_obj = get_post_type_object( $post_type ); - if ( empty( $ptype_obj ) ) { - return; - } - - $menu_slug = $this->get_cpt_menu_link( $ptype_obj ); - - // Menu icon. - $menu_icon = 'dashicons-admin-post'; - if ( is_string( $ptype_obj->menu_icon ) ) { - // Special handling for data:image/svg+xml and Dashicons. - if ( str_starts_with( $ptype_obj->menu_icon, 'data:image/svg+xml;base64,' ) || str_starts_with( $ptype_obj->menu_icon, 'dashicons-' ) ) { - $menu_icon = $ptype_obj->menu_icon; - } else { - $menu_icon = esc_url( $ptype_obj->menu_icon ); - } - } - - add_menu_page( esc_attr( $ptype_obj->labels->menu_name ), $ptype_obj->labels->menu_name, $ptype_obj->cap->edit_posts, $menu_slug, null, $menu_icon, $position ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_custom_post_type_menu' ); + parent::add_custom_post_type_menu( $post_type, $position ); } /** * Adds Comments menu. + * + * @deprecated $$next-version$$ */ public function add_comments_menu() { - add_menu_page( esc_attr__( 'Comments', 'jetpack' ), __( 'Comments', 'jetpack' ), 'edit_posts', 'https://wordpress.com/comments/all/' . $this->domain, null, 'dashicons-admin-comments' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_comments_menu' ); + parent::add_comments_menu(); } /** * Adds Feedback menu. + * + * @deprecated $$next-version$$ */ public function add_feedback_menu() { - $post_type = 'feedback'; - - $ptype_obj = get_post_type_object( $post_type ); - if ( empty( $ptype_obj ) ) { - return; - } - - $slug = 'edit.php?post_type=' . $post_type; - $name = __( 'Feedback', 'jetpack' ); - $capability = $ptype_obj->cap->edit_posts; - $icon = $ptype_obj->menu_icon; - $position = 45; // Before Jetpack. - - add_menu_page( esc_attr( $name ), $name, $capability, $slug, null, $icon, $position ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_feedback_menu' ); + parent::add_feedback_menu(); } /** * Adds CPT menu items + * + * @deprecated $$next-version$$ */ public function add_cpt_menus() { - - $post_type_list = get_post_types( - array( - 'show_in_menu' => true, - '_builtin' => false, - ) - ); - - foreach ( $post_type_list as $post_type ) { - $position = 46; // After Feedback. - $this->add_custom_post_type_menu( $post_type, $position ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_cpt_menus' ); + parent::add_cpt_menus(); } /** * Adds Jetpack menu. + * + * @deprecated $$next-version$$ */ public function add_jetpack_menu() { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_jetpack_menu' ); parent::add_jetpack_menu(); - - /* translators: Jetpack sidebar menu item. */ - add_submenu_page( 'jetpack', esc_attr__( 'Search', 'jetpack' ), __( 'Search', 'jetpack' ), 'manage_options', 'jetpack-search', admin_url( 'admin.php?page=jetpack-search' ), 4 ); - - // Place "Scan" submenu after Backup. - $position = 0; - global $submenu; - foreach ( $submenu['jetpack'] as $submenu_item ) { - ++$position; - if ( __( 'Backup', 'jetpack' ) === $submenu_item[3] ) { - break; - } - } - add_submenu_page( 'jetpack', esc_attr__( 'Scan', 'jetpack' ), __( 'Scan', 'jetpack' ), 'manage_options', 'https://wordpress.com/scan/' . $this->domain, null, $position ); } /** * Adds Appearance menu. * + * @deprecated $$next-version$$ + * * @return string The Customizer URL. */ public function add_appearance_menu() { - $themes_url = 'https://wordpress.com/themes/' . $this->domain; - // Customize on Jetpack sites is always done on WP Admin (unsupported by Calypso). - $customize_url = 'customize.php'; - - add_menu_page( esc_attr__( 'Appearance', 'jetpack' ), __( 'Appearance', 'jetpack' ), 'switch_themes', $themes_url, null, 'dashicons-admin-appearance', 60 ); - add_submenu_page( $themes_url, esc_attr__( 'Themes', 'jetpack' ), __( 'Themes', 'jetpack' ), 'switch_themes', 'https://wordpress.com/themes/' . $this->domain ); - - if ( ! has_action( 'customize_register' ) && wp_is_block_theme() ) { - return $customize_url; - } - - add_submenu_page( $themes_url, esc_attr__( 'Customize', 'jetpack' ), __( 'Customize', 'jetpack' ), 'customize', $customize_url ); - - return $customize_url; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_appearance_menu' ); + return parent::add_appearance_menu(); } /** * Adds Plugins menu. + * + * @deprecated $$next-version$$ */ public function add_plugins_menu() { - add_menu_page( esc_attr__( 'Plugins', 'jetpack' ), __( 'Plugins', 'jetpack' ), 'activate_plugins', 'https://wordpress.com/plugins/' . $this->domain, null, 'dashicons-admin-plugins', 65 ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_plugins_menu' ); + parent::add_plugins_menu(); } /** * Adds Users menu. + * + * @deprecated $$next-version$$ */ public function add_users_menu() { - if ( current_user_can( 'list_users' ) ) { - $users_url = 'https://wordpress.com/people/team/' . $this->domain; - add_menu_page( esc_attr__( 'Users', 'jetpack' ), __( 'Users', 'jetpack' ), 'list_users', $users_url, null, 'dashicons-admin-users', 70 ); - add_submenu_page( $users_url, esc_attr__( 'All Users', 'jetpack' ), __( 'All Users', 'jetpack' ), 'list_users', $users_url, null, 10 ); - add_submenu_page( $users_url, esc_attr__( 'Add New User', 'jetpack' ), __( 'Add New User', 'jetpack' ), 'promote_users', 'https://wordpress.com/people/new/' . $this->domain, null, 20 ); - add_submenu_page( $users_url, esc_attr__( 'Subscribers', 'jetpack' ), __( 'Subscribers', 'jetpack' ), 'list_users', 'https://wordpress.com/subscribers/' . $this->domain, null, 30 ); - add_submenu_page( $users_url, esc_attr__( 'My Profile', 'jetpack' ), __( 'My Profile', 'jetpack' ), 'read', 'https://wordpress.com/me', null, 40 ); - add_submenu_page( $users_url, esc_attr__( 'Account Settings', 'jetpack' ), __( 'Account Settings', 'jetpack' ), 'read', 'https://wordpress.com/me/account', null, 50 ); - } else { - add_menu_page( esc_attr__( 'My Profile', 'jetpack' ), __( 'Profile', 'jetpack' ), 'read', 'https://wordpress.com/me', null, 'dashicons-admin-users', 70 ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_users_menu' ); + parent::add_users_menu(); } /** * Adds Tools menu. + * + * @deprecated $$next-version$$ */ public function add_tools_menu() { - add_menu_page( esc_attr__( 'Tools', 'jetpack' ), __( 'Tools', 'jetpack' ), 'publish_posts', 'tools.php', null, 'dashicons-admin-tools', 75 ); - - add_submenu_page( 'tools.php', esc_attr__( 'Marketing', 'jetpack' ), __( 'Marketing', 'jetpack' ), 'publish_posts', 'https://wordpress.com/marketing/tools/' . $this->domain ); - - if ( Blaze::should_initialize() ) { - add_submenu_page( 'tools.php', esc_attr__( 'Advertising', 'jetpack' ), __( 'Advertising', 'jetpack' ), 'manage_options', 'https://wordpress.com/advertising/' . $this->domain, null, 1 ); - } - - add_submenu_page( 'tools.php', esc_attr__( 'Monetize', 'jetpack' ), __( 'Monetize', 'jetpack' ), 'manage_options', 'https://wordpress.com/earn/' . $this->domain ); - - // Import/Export on Jetpack sites is always handled on WP Admin. - add_submenu_page( 'tools.php', esc_attr__( 'Import', 'jetpack' ), __( 'Import', 'jetpack' ), 'import', 'import.php' ); - add_submenu_page( 'tools.php', esc_attr__( 'Export', 'jetpack' ), __( 'Export', 'jetpack' ), 'export', 'export.php' ); - - // Remove the submenu auto-created by Core. - $this->hide_submenu_page( 'tools.php', 'tools.php' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_tools_menu' ); + parent::add_tools_menu(); } /** * Adds Settings menu. + * + * @deprecated $$next-version$$ */ public function add_options_menu() { - $slug = 'https://wordpress.com/settings/general/' . $this->domain; - add_menu_page( esc_attr__( 'Settings', 'jetpack' ), __( 'Settings', 'jetpack' ), 'manage_options', $slug, null, 'dashicons-admin-settings', 80 ); - add_submenu_page( $slug, esc_attr__( 'General', 'jetpack' ), __( 'General', 'jetpack' ), 'manage_options', $slug ); - add_submenu_page( $slug, esc_attr__( 'Security', 'jetpack' ), __( 'Security', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/security/' . $this->domain ); - add_submenu_page( $slug, esc_attr__( 'Performance', 'jetpack' ), __( 'Performance', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/performance/' . $this->domain ); - add_submenu_page( $slug, esc_attr__( 'Writing', 'jetpack' ), __( 'Writing', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/writing/' . $this->domain ); - add_submenu_page( $slug, esc_attr__( 'Reading', 'jetpack' ), __( 'Reading', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/reading/' . $this->domain ); - add_submenu_page( $slug, esc_attr__( 'Discussion', 'jetpack' ), __( 'Discussion', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/discussion/' . $this->domain ); - add_submenu_page( $slug, esc_attr__( 'Newsletter', 'jetpack' ), __( 'Newsletter', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/newsletter/' . $this->domain ); - - $plan_supports_scan = Jetpack_Plan::supports( 'scan' ); - $products = Jetpack_Plan::get_products(); - $has_scan_product = false; - - if ( is_array( $products ) ) { - foreach ( $products as $product ) { - if ( strpos( $product['product_slug'], 'jetpack_scan' ) === 0 ) { - $has_scan_product = true; - break; - } - } - } - - $has_scan = $plan_supports_scan || $has_scan_product; - $rewind_state = get_transient( 'jetpack_rewind_state' ); - $has_backup = $rewind_state && in_array( $rewind_state->state, array( 'awaiting_credentials', 'provisioning', 'active' ), true ); - if ( $has_scan || $has_backup ) { - add_submenu_page( $slug, esc_attr__( 'Jetpack', 'jetpack' ), __( 'Jetpack', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/jetpack/' . $this->domain ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_options_menu' ); + parent::add_options_menu(); } /** * Adds WP Admin menu. + * + * @deprecated $$next-version$$ */ public function add_wp_admin_menu() { - global $menu; - - // Attempt to get last position. - ksort( $menu ); - end( $menu ); - $position = key( $menu ); - - $this->add_admin_menu_separator( ++$position ); - add_menu_page( __( 'WP Admin', 'jetpack' ), __( 'WP Admin', 'jetpack' ), 'read', 'index.php', null, 'dashicons-wordpress-alt', $position ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_wp_admin_menu' ); + parent::add_wp_admin_menu(); } } diff --git a/projects/plugins/jetpack/modules/masterbar/admin-menu/class-p2-admin-menu.php b/projects/plugins/jetpack/modules/masterbar/admin-menu/class-p2-admin-menu.php index bf49dd3af7f89..3fc0243350d27 100644 --- a/projects/plugins/jetpack/modules/masterbar/admin-menu/class-p2-admin-menu.php +++ b/projects/plugins/jetpack/modules/masterbar/admin-menu/class-p2-admin-menu.php @@ -2,199 +2,49 @@ /** * P2 Admin Menu file. * + * @deprecated $$next-version$$ Use Automattic\Jetpack\Masterbar\P2_Admin_Menu instead. + * * @package Jetpack */ namespace Automattic\Jetpack\Dashboard_Customizations; -require_once __DIR__ . '/class-wpcom-admin-menu.php'; +use Automattic\Jetpack\Masterbar\P2_Admin_Menu as Masterbar_P2_Admin_Menu; /** * Class P2_Admin_Menu. */ -class P2_Admin_Menu extends WPcom_Admin_Menu { - - /** - * Slug for the "Appearance" menu item. - * - * @var string - */ - private $appearance_slug = 'themes.php'; - - /** - * Slug for the "Jetpack" menu item. - * - * @var string - */ - private $jetpack_slug = 'jetpack'; - - /** - * Slug for the "Upgrades" menu item. - * - * @var string - */ - private $upgrades_slug = 'paid-upgrades.php'; +class P2_Admin_Menu extends Masterbar_P2_Admin_Menu { /** - * Slug for the "Plugins" menu item. + * Ensure that instantiating this class will trigger a deprecation warning. * - * @var string - */ - private $plugins_slug = 'plugins.php'; - - /** - * Slug for the "Tools" menu item. - * - * @var string - */ - private $tools_slug = 'tools.php'; - - /** - * Whether or not the P2 is a hub. - * - * @var bool - */ - private $is_hub = false; - - /** - * Whether or not the P2 has a paid plan. - * - * @var bool - */ - private $is_paid = false; - - /** - * P2_Admin_Menu constructor. + * @since $$next-version$$ */ - protected function __construct() { + public function __construct() { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\P2_Admin_Menu::__construct' ); parent::__construct(); - - if ( - defined( 'IS_WPCOM' ) && IS_WPCOM && - function_exists( 'require_lib' ) - ) { - require_lib( 'wpforteams' ); - - $current_blog_id = get_current_blog_id(); - $this->is_hub = \WPForTeams\Workspace\is_workspace_hub( $current_blog_id ); - $this->is_paid = \WPForTeams\has_p2_plus_plan( \WPForTeams\Workspace\get_hub_blog_id_from_blog_id( $current_blog_id ) ); - } - // Appearance -> AMP. This needs to be called here in the constructor. - // Running it from reregister_menu_items is not early enough. - remove_action( 'admin_menu', 'amp_add_customizer_link' ); } /** * Create the desired menu output. + * + * @deprecated $$next-version$$ */ public function reregister_menu_items() { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\P2_Admin_Menu::reregister_menu_items' ); parent::reregister_menu_items(); - - if ( ! $this->is_hub ) { - $this->remove_menus_for_p2_space(); - } else { - $this->remove_menus_for_hub(); - } - - $this->remove_menus_for_all_p2s(); - } - - /** - * Remove menu items that are not applicable for P2 workspace sites. - */ - private function remove_menus_for_p2_space() { - // Non-hub P2s can't have plans at all. - remove_menu_page( $this->upgrades_slug ); - // Jetpack -> Backup. - remove_submenu_page( $this->jetpack_slug, 'https://wordpress.com/backup/' . $this->domain ); - // Appearance -> Themes. - remove_submenu_page( $this->appearance_slug, 'https://wordpress.com/themes/' . $this->domain ); - // Appearance -> Additional CSS. - $customize_custom_css_url = add_query_arg( - array( 'autofocus' => array( 'section' => 'css_nudge' ) ), - 'https://wordpress.com/customize/' . $this->domain - ); - remove_submenu_page( $this->appearance_slug, $customize_custom_css_url ); - - // Tools - remove_submenu_page( $this->tools_slug, 'https://wordpress.com/marketing/tools/' . $this->domain ); - remove_submenu_page( $this->tools_slug, 'https://wordpress.com/earn/' . $this->domain ); - } - - /** - * Remove menu items that are not applicable for P2 hubs. - */ - private function remove_menus_for_hub() { - // Hubs can have plans, but not domain and email products. - remove_submenu_page( $this->upgrades_slug, 'https://wordpress.com/domains/manage/' . $this->domain ); - remove_submenu_page( $this->upgrades_slug, 'https://wordpress.com/email/' . $this->domain ); - // Stats. - remove_menu_page( 'https://wordpress.com/stats/day/' . $this->domain ); - // Hide posts. - remove_menu_page( 'edit.php' ); - // Hide pages. - remove_menu_page( 'edit.php?post_type=page' ); - // Hide media. - remove_menu_page( 'https://wordpress.com/media/' . $this->domain ); - // Hide comments. - remove_menu_page( 'https://wordpress.com/comments/all/' . $this->domain ); - // Hide appearance. - remove_menu_page( $this->appearance_slug ); - // Tools. - remove_submenu_page( $this->tools_slug, 'https://wordpress.com/marketing/tools/' . $this->domain ); - remove_submenu_page( $this->tools_slug, 'https://wordpress.com/earn/' . $this->domain ); - remove_submenu_page( $this->tools_slug, 'https://wordpress.com/import/' . $this->domain ); - remove_submenu_page( $this->tools_slug, 'https://wordpress.com/export/' . $this->domain ); - add_submenu_page( $this->tools_slug, __( 'Integrations', 'jetpack' ), __( 'Integrations', 'jetpack' ), 'manage_options', 'https://wordpress.com/marketing/connections/' . $this->domain, null, 0 ); - // Hide settings. - remove_submenu_page( 'options-general.php', 'options-reading.php' ); - remove_submenu_page( 'options-general.php', 'options-writing.php' ); - remove_submenu_page( 'options-general.php', 'options-discussion.php' ); - } - - /** - * Remove menu items that are not applicable for all P2s. - */ - private function remove_menus_for_all_p2s() { - // Remove Jetpack menu item. - remove_menu_page( $this->jetpack_slug ); - - // The following menu items are hidden for both hubs and P2 sites. - remove_menu_page( 'link-manager.php' ); - remove_menu_page( 'feedback' ); - remove_menu_page( $this->plugins_slug ); - remove_menu_page( 'https://wordpress.com/plugins/' . $this->domain ); - remove_menu_page( 'https://wordpress.com/inbox/' . $this->domain ); - - remove_submenu_page( 'https://wordpress.com/settings/general/' . $this->domain, 'sharing' ); - remove_submenu_page( 'https://wordpress.com/settings/general/' . $this->domain, 'polls&action=options' ); - remove_submenu_page( 'https://wordpress.com/settings/general/' . $this->domain, 'ratings&action=options' ); - remove_submenu_page( - 'options-general.php', - 'https://wordpress.com/hosting-config/' . $this->domain - ); - remove_submenu_page( - 'https://wordpress.com/settings/general/' . $this->domain, - 'https://wordpress.com/marketing/sharing-buttons/' . $this->domain - ); - - /** This action is documented in `wp-content/plugins/p2-editor/classes/p2-editor-admin.php` */ - if ( apply_filters( 'p2tenberg_admin_patterns', apply_filters( 'p2editor_admin_patterns', true ) ) !== true ) { - remove_menu_page( 'edit.php?post_type=p2_pattern' ); - } - remove_submenu_page( - 'edit.php?post_type=p2_pattern', - 'edit-tags.php?taxonomy=post_tag&post_type=p2_pattern' - ); - - // Hide performance settings. - remove_submenu_page( 'options-general.php', 'https://wordpress.com/settings/performance/' . $this->domain ); } /** * Override, don't add the woocommerce installation menu on any p2s. * + * @deprecated $$next-version$$ + * * @param array|null $current_plan The site's plan. */ - public function add_woocommerce_installation_menu( $current_plan = null ) {} // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable + public function add_woocommerce_installation_menu( $current_plan = null ) { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\P2_Admin_Menu::add_woocommerce_installation_menu' ); + parent::add_woocommerce_installation_menu( $current_plan ); + } } diff --git a/projects/plugins/jetpack/modules/masterbar/admin-menu/class-wpcom-admin-menu.php b/projects/plugins/jetpack/modules/masterbar/admin-menu/class-wpcom-admin-menu.php index d8f57de1cd10b..64b7ff84d3bb2 100644 --- a/projects/plugins/jetpack/modules/masterbar/admin-menu/class-wpcom-admin-menu.php +++ b/projects/plugins/jetpack/modules/masterbar/admin-menu/class-wpcom-admin-menu.php @@ -2,66 +2,45 @@ /** * WP.com Admin Menu file. * + * @deprecated $$next-version$$ Use Automattic\Jetpack\Masterbar\WPcom_Admin_Menu instead. + * * @package automattic/jetpack */ namespace Automattic\Jetpack\Dashboard_Customizations; -use Automattic\Jetpack\Status; -use Jetpack_Custom_CSS; -use JITM; - -require_once __DIR__ . '/class-admin-menu.php'; +use Automattic\Jetpack\Masterbar\WPcom_Admin_Menu as Masterbar_WPcom_Admin_Menu; /** * Class WPcom_Admin_Menu. */ -class WPcom_Admin_Menu extends Admin_Menu { - /** - * Holds the current plan, set by get_current_plan(). - * - * @var array - */ - private $current_plan = array(); +class WPcom_Admin_Menu extends Masterbar_WPcom_Admin_Menu { /** - * WPcom_Admin_Menu constructor. + * Ensure that instantiating this class will trigger a deprecation warning. + * + * @since $$next-version$$ */ - protected function __construct() { + public function __construct() { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::__construct' ); parent::__construct(); - - add_action( 'wp_ajax_sidebar_state', array( $this, 'ajax_sidebar_state' ) ); - add_action( 'wp_ajax_jitm_dismiss', array( $this, 'wp_ajax_jitm_dismiss' ) ); - add_action( 'wp_ajax_upsell_nudge_jitm', array( $this, 'wp_ajax_upsell_nudge_jitm' ) ); - add_action( 'admin_init', array( $this, 'sync_sidebar_collapsed_state' ) ); - add_action( 'admin_menu', array( $this, 'remove_submenus' ), 140 ); // After hookpress hook at 130. } /** * Create the desired menu output. + * + * @deprecated $$next-version$$ */ public function reregister_menu_items() { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::reregister_menu_items' ); parent::reregister_menu_items(); - - $this->add_my_home_menu(); - $this->add_my_mailboxes_menu(); - $this->remove_gutenberg_menu(); - - // Not needed outside of wp-admin. - if ( ! $this->is_api_request ) { - $this->add_browse_sites_link(); - $this->add_site_card_menu(); - $this->add_new_site_link(); - } - - $this->add_woocommerce_installation_menu( $this->get_current_plan() ); - - ksort( $GLOBALS['menu'] ); } /** * Get the preferred view for the given screen. * + * @deprecated $$next-version$$ + * * @param string $screen Screen identifier. * @param bool $fallback_global_preference (Optional) Whether the global preference for all screens should be used * as fallback if there is no specific preference for the given screen. @@ -69,420 +48,215 @@ public function reregister_menu_items() { * @return string */ public function get_preferred_view( $screen, $fallback_global_preference = true ) { - // When no preferred view has been set for Themes, keep the previous behavior that forced the default view - // regardless of the global preference. - if ( $fallback_global_preference && 'themes.php' === $screen ) { - $preferred_view = parent::get_preferred_view( $screen, false ); - if ( self::UNKNOWN_VIEW === $preferred_view ) { - return self::DEFAULT_VIEW; - } - return $preferred_view; - } - - // Plugins on Simple sites are always managed on Calypso. - if ( 'plugins.php' === $screen ) { - return self::DEFAULT_VIEW; - } - + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::get_preferred_view' ); return parent::get_preferred_view( $screen, $fallback_global_preference ); } /** * Retrieve the number of blogs that the current user has. * + * @deprecated $$next-version$$ + * * @return int */ public function get_current_user_blog_count() { - if ( function_exists( '\get_blog_count_for_user' ) ) { - return \get_blog_count_for_user( get_current_user_id() ); - } - - $blogs = get_blogs_of_user( get_current_user_id() ); - return is_countable( $blogs ) ? count( $blogs ) : 0; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::get_current_user_blog_count' ); + return parent::get_current_user_blog_count(); } /** * Adds the site switcher link if user has more than one site. + * + * @deprecated $$next-version$$ */ public function add_browse_sites_link() { - if ( $this->get_current_user_blog_count() < 2 ) { - return; - } - - // Add the menu item. - add_menu_page( __( 'site-switcher', 'jetpack' ), __( 'Browse sites', 'jetpack' ), 'read', 'https://wordpress.com/sites', null, 'dashicons-arrow-left-alt2', 0 ); - add_filter( 'add_menu_classes', array( $this, 'set_browse_sites_link_class' ) ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::add_browse_sites_link' ); + parent::add_browse_sites_link(); } /** * Adds a custom element class for Site Switcher menu item. * + * @deprecated $$next-version$$ + * * @param array $menu Associative array of administration menu items. * @return array */ public function set_browse_sites_link_class( array $menu ) { - foreach ( $menu as $key => $menu_item ) { - if ( 'site-switcher' !== $menu_item[3] ) { - continue; - } - - $menu[ $key ][4] = add_cssclass( 'site-switcher', $menu_item[4] ); - break; - } - - return $menu; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::set_browse_sites_link_class' ); + return parent::set_browse_sites_link_class( $menu ); } /** * Adds a link to the menu to create a new site. + * + * @deprecated $$next-version$$ */ public function add_new_site_link() { - if ( $this->get_current_user_blog_count() > 1 ) { - return; - } - - $this->add_admin_menu_separator(); - add_menu_page( __( 'Add New Site', 'jetpack' ), __( 'Add New Site', 'jetpack' ), 'read', 'https://wordpress.com/start?ref=calypso-sidebar', null, 'dashicons-plus-alt' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::add_new_site_link' ); + parent::add_new_site_link(); } /** * Adds site card component. + * + * @deprecated $$next-version$$ */ public function add_site_card_menu() { - $default = plugins_url( 'globe-icon.svg', __FILE__ ); - $icon = get_site_icon_url( 32, $default ); - $blog_name = get_option( 'blogname' ) !== '' ? get_option( 'blogname' ) : $this->domain; - $status = new Status(); - $is_private_site = $status->is_private_site(); - $is_coming_soon = $status->is_coming_soon(); - - if ( $default === $icon && blavatar_exists( $this->domain ) ) { - $icon = blavatar_url( $this->domain, 'img', 32 ); - } - - $badge = ''; - if ( $is_private_site || $is_coming_soon ) { - $badge .= sprintf( - '%s', - $is_coming_soon ? esc_html__( 'Coming Soon', 'jetpack' ) : esc_html__( 'Private', 'jetpack' ) - ); - } - - if ( function_exists( 'is_simple_site_redirect' ) && is_simple_site_redirect( $this->domain ) ) { - $badge .= '' . esc_html__( 'Redirect', 'jetpack' ) . ''; - } - - if ( ! empty( get_option( 'options' )['is_domain_only'] ) ) { - $badge .= '' . esc_html__( 'Domain', 'jetpack' ) . ''; - } - - $site_card = ' -
-
%1$s
-
%2$s
- %3$s -
'; - - $site_card = sprintf( - $site_card, - $blog_name, - $this->domain, - $badge - ); - - add_menu_page( 'site-card', $site_card, 'read', get_home_url(), null, $icon, 1 ); - add_filter( 'add_menu_classes', array( $this, 'set_site_card_menu_class' ) ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::add_site_card_menu' ); + parent::add_site_card_menu(); } /** * Adds a custom element class and id for Site Card's menu item. * + * @deprecated $$next-version$$ + * * @param array $menu Associative array of administration menu items. * @return array */ public function set_site_card_menu_class( array $menu ) { - foreach ( $menu as $key => $menu_item ) { - if ( 'site-card' !== $menu_item[3] ) { - continue; - } - - $classes = ' toplevel_page_site-card'; - if ( blavatar_exists( $this->domain ) ) { - $classes .= ' has-site-icon'; - } - - $menu[ $key ][4] = $menu_item[4] . $classes; - $menu[ $key ][5] = 'toplevel_page_site_card'; - break; - } - - return $menu; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::set_site_card_menu_class' ); + return parent::set_site_card_menu_class( $menu ); } /** * Returns the first available upsell nudge. * + * @deprecated $$next-version$$ + * * @return array */ public function get_upsell_nudge() { - require_lib( 'jetpack-jitm/jitm-engine' ); - $jitm_engine = new JITM\Engine(); - - $message_path = 'calypso:sites:sidebar_notice'; - $current_user = wp_get_current_user(); - $user_id = $current_user->ID; - $user_roles = implode( ',', $current_user->roles ); - $query_string = array( - 'message_path' => $message_path, - ); - - // Get the top message only. - $message = $jitm_engine->get_top_messages( $message_path, $user_id, $user_roles, $query_string ); - - if ( isset( $message[0] ) ) { - $message = $message[0]; - return array( - 'content' => $message->content['message'], - 'cta' => $message->CTA['message'], // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase - 'link' => $message->CTA['link'], // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase - 'tracks_impression_event_name' => $message->tracks['display']['name'] ?? null, - 'tracks_impression_cta_name' => $message->tracks['display']['props']['cta_name'] ?? null, - 'tracks_click_event_name' => $message->tracks['click']['name'] ?? null, - 'tracks_click_cta_name' => $message->tracks['click']['props']['cta_name'] ?? null, - 'dismissible' => $message->is_dismissible, - 'feature_class' => $message->feature_class, - 'id' => $message->id, - ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::get_upsell_nudge' ); + return parent::get_upsell_nudge(); } /** * Adds Stats menu. - */ - public function add_stats_menu() { - $menu_title = __( 'Stats', 'jetpack' ); - - if ( ! $this->is_api_request ) { - $menu_title .= sprintf( - '%2$s', - esc_url( site_url( 'wp-includes/charts/admin-bar-hours-scale-2x.php?masterbar=1&s=' . get_current_blog_id() ) ), - esc_attr__( 'Hourly views', 'jetpack' ) - ); - } - - add_menu_page( __( 'Stats', 'jetpack' ), $menu_title, 'read', 'https://wordpress.com/stats/day/' . $this->domain, null, 'dashicons-chart-bar', 3 ); - } - - /** - * Gets the current plan and stores it in $this->current_plan so the database is only called once per request. * - * @return array + * @deprecated $$next-version$$ */ - private function get_current_plan() { - if ( empty( $this->current_plan ) && class_exists( 'WPCOM_Store_API' ) ) { - $this->current_plan = \WPCOM_Store_API::get_current_plan( get_current_blog_id() ); - } - return $this->current_plan; + public function add_stats_menu() { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::add_stats_menu' ); + parent::add_stats_menu(); } /** * Adds Upgrades menu. * + * @deprecated $$next-version$$ + * * @param string $plan The current WPCOM plan of the blog. */ public function add_upgrades_menu( $plan = null ) { - $current_plan = $this->get_current_plan(); - if ( ! empty( $current_plan['product_name_short'] ) ) { - $plan = $current_plan['product_name_short']; - } - + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::add_upgrades_menu' ); parent::add_upgrades_menu( $plan ); - - $last_upgrade_submenu_position = $this->get_submenu_item_count( 'paid-upgrades.php' ); - - add_submenu_page( 'paid-upgrades.php', __( 'Domains', 'jetpack' ), __( 'Domains', 'jetpack' ), 'manage_options', 'https://wordpress.com/domains/manage/' . $this->domain, null, $last_upgrade_submenu_position - 1 ); - - /** This filter is already documented in modules/masterbar/admin-menu/class-atomic-admin-menu.php */ - if ( apply_filters( 'jetpack_show_wpcom_upgrades_email_menu', false ) ) { - add_submenu_page( 'paid-upgrades.php', __( 'Emails', 'jetpack' ), __( 'Emails', 'jetpack' ), 'manage_options', 'https://wordpress.com/email/' . $this->domain, null, $last_upgrade_submenu_position ); - } - - if ( defined( 'WPCOM_ENABLE_ADD_ONS_MENU_ITEM' ) && WPCOM_ENABLE_ADD_ONS_MENU_ITEM ) { - add_submenu_page( 'paid-upgrades.php', __( 'Add-Ons', 'jetpack' ), __( 'Add-Ons', 'jetpack' ), 'manage_options', 'https://wordpress.com/add-ons/' . $this->domain, null, 1 ); - } } /** * Adds Appearance menu. + * + * @deprecated $$next-version$$ */ public function add_appearance_menu() { - $customize_url = parent::add_appearance_menu(); - - $this->hide_submenu_page( 'themes.php', 'theme-editor.php' ); - - $user_can_customize = current_user_can( 'customize' ); - - if ( wp_is_block_theme() ) { - add_filter( 'safecss_is_freetrial', '__return_false', PHP_INT_MAX ); - if ( class_exists( 'Jetpack_Custom_CSS' ) && empty( Jetpack_Custom_CSS::get_css() ) ) { - $user_can_customize = false; - } - remove_filter( 'safecss_is_freetrial', '__return_false', PHP_INT_MAX ); - } - - if ( $user_can_customize ) { - $customize_custom_css_url = add_query_arg( array( 'autofocus' => array( 'section' => 'jetpack_custom_css' ) ), $customize_url ); - add_submenu_page( 'themes.php', esc_attr__( 'Additional CSS', 'jetpack' ), __( 'Additional CSS', 'jetpack' ), 'customize', esc_url( $customize_custom_css_url ), null, 20 ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::add_appearance_menu' ); + return parent::add_appearance_menu(); } /** * Adds Users menu. + * + * @deprecated $$next-version$$ */ public function add_users_menu() { - $submenus_to_update = array( - 'grofiles-editor' => 'https://wordpress.com/me', - 'grofiles-user-settings' => 'https://wordpress.com/me/account', - ); - - if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'users.php' ) ) { - $submenus_to_update['users.php'] = 'https://wordpress.com/people/team/' . $this->domain; - } - - $slug = current_user_can( 'list_users' ) ? 'users.php' : 'profile.php'; - $this->update_submenus( $slug, $submenus_to_update ); - add_submenu_page( 'users.php', esc_attr__( 'Add New User', 'jetpack' ), __( 'Add New User', 'jetpack' ), 'promote_users', 'https://wordpress.com/people/new/' . $this->domain, null, 1 ); - add_submenu_page( 'users.php', esc_attr__( 'Subscribers', 'jetpack' ), __( 'Subscribers', 'jetpack' ), 'list_users', 'https://wordpress.com/subscribers/' . $this->domain, null, 3 ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::add_users_menu' ); + parent::add_users_menu(); } /** * Adds Settings menu. + * + * @deprecated $$next-version$$ */ public function add_options_menu() { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::add_options_menu' ); parent::add_options_menu(); - - add_submenu_page( 'options-general.php', esc_attr__( 'Hosting Configuration', 'jetpack' ), __( 'Hosting Configuration', 'jetpack' ), 'manage_options', 'https://wordpress.com/hosting-config/' . $this->domain, null, 10 ); } /** * Adds My Home menu. + * + * @deprecated $$next-version$$ */ public function add_my_home_menu() { - $this->update_menu( 'index.php', 'https://wordpress.com/home/' . $this->domain, __( 'My Home', 'jetpack' ), 'read', 'dashicons-admin-home' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::add_my_home_menu' ); + parent::add_my_home_menu(); } /** * Also remove the Gutenberg plugin menu. + * + * @deprecated $$next-version$$ */ public function remove_gutenberg_menu() { - // Always remove the Gutenberg menu. - remove_menu_page( 'gutenberg' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::remove_gutenberg_menu' ); + parent::remove_gutenberg_menu(); } /** * Whether to use wp-admin pages rather than Calypso. * + * @deprecated $$next-version$$ + * * @return bool */ public function should_link_to_wp_admin() { - $result = false; // Calypso. - - $user_attribute = get_user_attribute( get_current_user_id(), 'calypso_preferences' ); - if ( ! empty( $user_attribute['linkDestination'] ) ) { - $result = $user_attribute['linkDestination']; - } - - return $result; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::should_link_to_wp_admin' ); + return parent::should_link_to_wp_admin(); } /** * Saves the sidebar state ( expanded / collapsed ) via an ajax request. * + * @deprecated $$next-version$$ + * * @return never */ public function ajax_sidebar_state() { - $expanded = isset( $_REQUEST['expanded'] ) ? filter_var( wp_unslash( $_REQUEST['expanded'] ), FILTER_VALIDATE_BOOLEAN ) : false; // phpcs:ignore WordPress.Security.NonceVerification.Recommended - $user_id = get_current_user_id(); - $preferences = get_user_attribute( $user_id, 'calypso_preferences' ); - if ( empty( $preferences ) ) { - $preferences = array(); - } - - $value = array_merge( (array) $preferences, array( 'sidebarCollapsed' => ! $expanded ) ); - $value = array_filter( - $value, - function ( $preference ) { - return null !== $preference; - } - ); - - update_user_attribute( $user_id, 'calypso_preferences', $value ); - - die(); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::ajax_sidebar_state' ); + parent::ajax_sidebar_state(); } /** * Handle ajax requests to dismiss a just-in-time-message + * + * @deprecated $$next-version$$ */ public function wp_ajax_jitm_dismiss() { - check_ajax_referer( 'jitm_dismiss' ); - require_lib( 'jetpack-jitm/jitm-engine' ); - if ( isset( $_REQUEST['id'] ) && isset( $_REQUEST['feature_class'] ) ) { - JITM\Engine::dismiss( sanitize_text_field( wp_unslash( $_REQUEST['id'] ) ), sanitize_text_field( wp_unslash( $_REQUEST['feature_class'] ) ) ); - } - wp_die(); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::wp_ajax_jitm_dismiss' ); + parent::wp_ajax_jitm_dismiss(); } /** * Syncs the sidebar collapsed state from Calypso Preferences. + * + * @deprecated $$next-version$$ */ public function sync_sidebar_collapsed_state() { - $calypso_preferences = get_user_attribute( get_current_user_id(), 'calypso_preferences' ); - - $sidebar_collapsed = isset( $calypso_preferences['sidebarCollapsed'] ) ? $calypso_preferences['sidebarCollapsed'] : false; - - // Read the current stored setting and convert it to boolean in order to be able to compare the values later. - $current_sidebar_collapsed_setting = ( 'f' === get_user_setting( 'mfold' ) ) ? true : false; - - // Only set the setting if the value differs, as `set_user_setting` always updates at least the timestamp - // which leads to unnecessary user meta cache purging on all wp-admin screen requests. - if ( $current_sidebar_collapsed_setting !== $sidebar_collapsed ) { - set_user_setting( 'mfold', $sidebar_collapsed ? 'f' : 'o' ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::sync_sidebar_collapsed_state' ); + parent::sync_sidebar_collapsed_state(); } /** * Removes unwanted submenu items. * * These submenus are added across wp-content and should be removed together with these function calls. + * + * @deprecated $$next-version$$ */ public function remove_submenus() { - global $_registered_pages; - - remove_submenu_page( 'index.php', 'akismet-stats' ); - remove_submenu_page( 'index.php', 'my-comments' ); - remove_submenu_page( 'index.php', 'stats' ); - remove_submenu_page( 'index.php', 'subscriptions' ); - - /* @see https://github.com/Automattic/wp-calypso/issues/49210 */ - remove_submenu_page( 'index.php', 'my-blogs' ); - $_registered_pages['admin_page_my-blogs'] = true; // phpcs:ignore - - remove_submenu_page( 'paid-upgrades.php', 'premium-themes' ); - remove_submenu_page( 'paid-upgrades.php', 'domains' ); - remove_submenu_page( 'paid-upgrades.php', 'my-upgrades' ); - remove_submenu_page( 'paid-upgrades.php', 'billing-history' ); - - remove_submenu_page( 'themes.php', 'customize.php?autofocus[panel]=amp_panel&return=' . rawurlencode( admin_url() ) ); - - remove_submenu_page( 'users.php', 'wpcom-invite-users' ); // Wpcom_Invite_Users::action_admin_menu. - - remove_submenu_page( 'options-general.php', 'adcontrol' ); - - // Remove menu item but continue allowing access. - foreach ( array( 'openidserver', 'webhooks' ) as $page_slug ) { - remove_submenu_page( 'options-general.php', $page_slug ); - $_registered_pages[ 'admin_page_' . $page_slug ] = true; // phpcs:ignore - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPcom_Admin_Menu::remove_submenus' ); + parent::remove_submenus(); } } diff --git a/projects/plugins/jetpack/modules/masterbar/admin-menu/class-wpcom-email-subscription-checker.php b/projects/plugins/jetpack/modules/masterbar/admin-menu/class-wpcom-email-subscription-checker.php index 15e36a3dfb38e..a3cc1488b78ec 100644 --- a/projects/plugins/jetpack/modules/masterbar/admin-menu/class-wpcom-email-subscription-checker.php +++ b/projects/plugins/jetpack/modules/masterbar/admin-menu/class-wpcom-email-subscription-checker.php @@ -2,24 +2,28 @@ /** * A class that checks for the existence of email subscriptions for a user. * + * @deprecated $$next-version$$ Use Automattic\Jetpack\Masterbar\WPCOM_Email_Subscription_Checker instead. + * * @package automattic/jetpack */ +use Automattic\Jetpack\Masterbar\WPCOM_Email_Subscription_Checker as Masterbar_WPCOM_Email_Subscription_Checker; /** * WPCOM_Email_Subscription_Checker */ class WPCOM_Email_Subscription_Checker { - /** * Checks if a user's site has an email subscription * + * @deprecated $$next-version$$ + * * @return bool */ public function has_email() { - if ( ! function_exists( 'wpcom_site_has_feature' ) ) { - return false; - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPCOM_Email_Subscription_Checker::has_email' ); + + $email_subscriptions_checker_wrapper = new Masterbar_WPCOM_Email_Subscription_Checker(); - return wpcom_site_has_feature( \WPCOM_Features::EMAIL_SUBSCRIPTION ); + return $email_subscriptions_checker_wrapper->has_email(); } } diff --git a/projects/plugins/jetpack/modules/masterbar/admin-menu/dashicon-set.php b/projects/plugins/jetpack/modules/masterbar/admin-menu/dashicon-set.php index 41695b060bc9b..78aaf80a4c3be 100644 --- a/projects/plugins/jetpack/modules/masterbar/admin-menu/dashicon-set.php +++ b/projects/plugins/jetpack/modules/masterbar/admin-menu/dashicon-set.php @@ -5,354 +5,4 @@ * @package automattic/jetpack */ -return array( - 'dashicons-admin-appearance' => true, - 'dashicons-admin-collapse' => true, - 'dashicons-admin-comments' => true, - 'dashicons-admin-customizer' => true, - 'dashicons-admin-generic' => true, - 'dashicons-admin-home' => true, - 'dashicons-admin-links' => true, - 'dashicons-admin-media' => true, - 'dashicons-admin-multisite' => true, - 'dashicons-admin-network' => true, - 'dashicons-admin-page' => true, - 'dashicons-admin-plugins' => true, - 'dashicons-admin-post' => true, - 'dashicons-admin-settings' => true, - 'dashicons-admin-site-alt' => true, - 'dashicons-admin-site-alt2' => true, - 'dashicons-admin-site-alt3' => true, - 'dashicons-admin-site' => true, - 'dashicons-admin-tools' => true, - 'dashicons-admin-users' => true, - 'dashicons-airplane' => true, - 'dashicons-album' => true, - 'dashicons-align-center' => true, - 'dashicons-align-full-width' => true, - 'dashicons-align-left' => true, - 'dashicons-align-none' => true, - 'dashicons-align-pull-left' => true, - 'dashicons-align-pull-right' => true, - 'dashicons-align-right' => true, - 'dashicons-align-wide' => true, - 'dashicons-amazon' => true, - 'dashicons-analytics' => true, - 'dashicons-archive' => true, - 'dashicons-arrow-down-alt' => true, - 'dashicons-arrow-down-alt2' => true, - 'dashicons-arrow-down' => true, - 'dashicons-arrow-left-alt' => true, - 'dashicons-arrow-left-alt2' => true, - 'dashicons-arrow-left' => true, - 'dashicons-arrow-right-alt' => true, - 'dashicons-arrow-right-alt2' => true, - 'dashicons-arrow-right' => true, - 'dashicons-arrow-up-alt' => true, - 'dashicons-arrow-up-alt2' => true, - 'dashicons-arrow-up-duplicate' => true, - 'dashicons-arrow-up' => true, - 'dashicons-art' => true, - 'dashicons-awards' => true, - 'dashicons-backup' => true, - 'dashicons-bank' => true, - 'dashicons-beer' => true, - 'dashicons-bell' => true, - 'dashicons-block-default' => true, - 'dashicons-book-alt' => true, - 'dashicons-book' => true, - 'dashicons-buddicons-activity' => true, - 'dashicons-buddicons-bbpress-logo' => true, - 'dashicons-buddicons-buddypress-logo' => true, - 'dashicons-buddicons-community' => true, - 'dashicons-buddicons-forums' => true, - 'dashicons-buddicons-friends' => true, - 'dashicons-buddicons-groups' => true, - 'dashicons-buddicons-pm' => true, - 'dashicons-buddicons-replies' => true, - 'dashicons-buddicons-topics' => true, - 'dashicons-buddicons-tracking' => true, - 'dashicons-building' => true, - 'dashicons-businessman' => true, - 'dashicons-businessperson' => true, - 'dashicons-businesswoman' => true, - 'dashicons-button' => true, - 'dashicons-calculator' => true, - 'dashicons-calendar-alt' => true, - 'dashicons-calendar' => true, - 'dashicons-camera-alt' => true, - 'dashicons-camera' => true, - 'dashicons-car' => true, - 'dashicons-carrot' => true, - 'dashicons-cart' => true, - 'dashicons-category' => true, - 'dashicons-chart-area' => true, - 'dashicons-chart-bar' => true, - 'dashicons-chart-line' => true, - 'dashicons-chart-pie' => true, - 'dashicons-clipboard' => true, - 'dashicons-clock' => true, - 'dashicons-cloud-saved' => true, - 'dashicons-cloud-upload' => true, - 'dashicons-cloud' => true, - 'dashicons-code-standards' => true, - 'dashicons-coffee' => true, - 'dashicons-color-picker' => true, - 'dashicons-columns' => true, - 'dashicons-controls-back' => true, - 'dashicons-controls-forward' => true, - 'dashicons-controls-pause' => true, - 'dashicons-controls-play' => true, - 'dashicons-controls-repeat' => true, - 'dashicons-controls-skipback' => true, - 'dashicons-controls-skipforward' => true, - 'dashicons-controls-volumeoff' => true, - 'dashicons-controls-volumeon' => true, - 'dashicons-cover-image' => true, - 'dashicons-dashboard' => true, - 'dashicons-database-add' => true, - 'dashicons-database-export' => true, - 'dashicons-database-import' => true, - 'dashicons-database-remove' => true, - 'dashicons-database-view' => true, - 'dashicons-database' => true, - 'dashicons-desktop' => true, - 'dashicons-dismiss' => true, - 'dashicons-download' => true, - 'dashicons-drumstick' => true, - 'dashicons-edit-large' => true, - 'dashicons-edit-page' => true, - 'dashicons-edit' => true, - 'dashicons-editor-aligncenter' => true, - 'dashicons-editor-alignleft' => true, - 'dashicons-editor-alignright' => true, - 'dashicons-editor-bold' => true, - 'dashicons-editor-break' => true, - 'dashicons-editor-code-duplicate' => true, - 'dashicons-editor-code' => true, - 'dashicons-editor-contract' => true, - 'dashicons-editor-customchar' => true, - 'dashicons-editor-expand' => true, - 'dashicons-editor-help' => true, - 'dashicons-editor-indent' => true, - 'dashicons-editor-insertmore' => true, - 'dashicons-editor-italic' => true, - 'dashicons-editor-justify' => true, - 'dashicons-editor-kitchensink' => true, - 'dashicons-editor-ltr' => true, - 'dashicons-editor-ol-rtl' => true, - 'dashicons-editor-ol' => true, - 'dashicons-editor-outdent' => true, - 'dashicons-editor-paragraph' => true, - 'dashicons-editor-paste-text' => true, - 'dashicons-editor-paste-word' => true, - 'dashicons-editor-quote' => true, - 'dashicons-editor-removeformatting' => true, - 'dashicons-editor-rtl' => true, - 'dashicons-editor-spellcheck' => true, - 'dashicons-editor-strikethrough' => true, - 'dashicons-editor-table' => true, - 'dashicons-editor-textcolor' => true, - 'dashicons-editor-ul' => true, - 'dashicons-editor-underline' => true, - 'dashicons-editor-unlink' => true, - 'dashicons-editor-video' => true, - 'dashicons-ellipsis' => true, - 'dashicons-email-alt' => true, - 'dashicons-email-alt2' => true, - 'dashicons-email' => true, - 'dashicons-embed-audio' => true, - 'dashicons-embed-generic' => true, - 'dashicons-embed-photo' => true, - 'dashicons-embed-post' => true, - 'dashicons-embed-video' => true, - 'dashicons-excerpt-view' => true, - 'dashicons-exit' => true, - 'dashicons-external' => true, - 'dashicons-facebook-alt' => true, - 'dashicons-facebook' => true, - 'dashicons-feedback' => true, - 'dashicons-filter' => true, - 'dashicons-flag' => true, - 'dashicons-food' => true, - 'dashicons-format-aside' => true, - 'dashicons-format-audio' => true, - 'dashicons-format-chat' => true, - 'dashicons-format-gallery' => true, - 'dashicons-format-image' => true, - 'dashicons-format-quote' => true, - 'dashicons-format-status' => true, - 'dashicons-format-video' => true, - 'dashicons-forms' => true, - 'dashicons-fullscreen-alt' => true, - 'dashicons-fullscreen-exit-alt' => true, - 'dashicons-games' => true, - 'dashicons-google' => true, - 'dashicons-googleplus' => true, - 'dashicons-grid-view' => true, - 'dashicons-groups' => true, - 'dashicons-hammer' => true, - 'dashicons-heading' => true, - 'dashicons-heart' => true, - 'dashicons-hidden' => true, - 'dashicons-hourglass' => true, - 'dashicons-html' => true, - 'dashicons-id-alt' => true, - 'dashicons-id' => true, - 'dashicons-image-crop' => true, - 'dashicons-image-filter' => true, - 'dashicons-image-flip-horizontal' => true, - 'dashicons-image-flip-vertical' => true, - 'dashicons-image-rotate-left' => true, - 'dashicons-image-rotate-right' => true, - 'dashicons-image-rotate' => true, - 'dashicons-images-alt' => true, - 'dashicons-images-alt2' => true, - 'dashicons-index-card' => true, - 'dashicons-info-outline' => true, - 'dashicons-info' => true, - 'dashicons-insert-after' => true, - 'dashicons-insert-before' => true, - 'dashicons-insert' => true, - 'dashicons-instagram' => true, - 'dashicons-laptop' => true, - 'dashicons-layout' => true, - 'dashicons-leftright' => true, - 'dashicons-lightbulb' => true, - 'dashicons-linkedin' => true, - 'dashicons-list-view' => true, - 'dashicons-location-alt' => true, - 'dashicons-location' => true, - 'dashicons-lock-duplicate' => true, - 'dashicons-lock' => true, - 'dashicons-marker' => true, - 'dashicons-media-archive' => true, - 'dashicons-media-audio' => true, - 'dashicons-media-code' => true, - 'dashicons-media-default' => true, - 'dashicons-media-document' => true, - 'dashicons-media-interactive' => true, - 'dashicons-media-spreadsheet' => true, - 'dashicons-media-text' => true, - 'dashicons-media-video' => true, - 'dashicons-megaphone' => true, - 'dashicons-menu-alt' => true, - 'dashicons-menu-alt2' => true, - 'dashicons-menu-alt3' => true, - 'dashicons-menu' => true, - 'dashicons-microphone' => true, - 'dashicons-migrate' => true, - 'dashicons-minus' => true, - 'dashicons-money-alt' => true, - 'dashicons-money' => true, - 'dashicons-move' => true, - 'dashicons-nametag' => true, - 'dashicons-networking' => true, - 'dashicons-no-alt' => true, - 'dashicons-no' => true, - 'dashicons-open-folder' => true, - 'dashicons-palmtree' => true, - 'dashicons-paperclip' => true, - 'dashicons-pdf' => true, - 'dashicons-performance' => true, - 'dashicons-pets' => true, - 'dashicons-phone' => true, - 'dashicons-pinterest' => true, - 'dashicons-playlist-audio' => true, - 'dashicons-playlist-video' => true, - 'dashicons-plugins-checked' => true, - 'dashicons-plus-alt' => true, - 'dashicons-plus-alt2' => true, - 'dashicons-plus' => true, - 'dashicons-podio' => true, - 'dashicons-portfolio' => true, - 'dashicons-post-status' => true, - 'dashicons-pressthis' => true, - 'dashicons-printer' => true, - 'dashicons-privacy' => true, - 'dashicons-products' => true, - 'dashicons-randomize' => true, - 'dashicons-reddit' => true, - 'dashicons-redo' => true, - 'dashicons-remove' => true, - 'dashicons-rest-api' => true, - 'dashicons-rss' => true, - 'dashicons-saved' => true, - 'dashicons-schedule' => true, - 'dashicons-screenoptions' => true, - 'dashicons-search' => true, - 'dashicons-share-alt' => true, - 'dashicons-share-alt2' => true, - 'dashicons-share' => true, - 'dashicons-shield-alt' => true, - 'dashicons-shield' => true, - 'dashicons-shortcode' => true, - 'dashicons-slides' => true, - 'dashicons-smartphone' => true, - 'dashicons-smiley' => true, - 'dashicons-sort' => true, - 'dashicons-sos' => true, - 'dashicons-spotify' => true, - 'dashicons-star-empty' => true, - 'dashicons-star-filled' => true, - 'dashicons-star-half' => true, - 'dashicons-sticky' => true, - 'dashicons-store' => true, - 'dashicons-superhero-alt' => true, - 'dashicons-superhero' => true, - 'dashicons-table-col-after' => true, - 'dashicons-table-col-before' => true, - 'dashicons-table-col-delete' => true, - 'dashicons-table-row-after' => true, - 'dashicons-table-row-before' => true, - 'dashicons-table-row-delete' => true, - 'dashicons-tablet' => true, - 'dashicons-tag' => true, - 'dashicons-tagcloud' => true, - 'dashicons-testimonial' => true, - 'dashicons-text-page' => true, - 'dashicons-text' => true, - 'dashicons-thumbs-down' => true, - 'dashicons-thumbs-up' => true, - 'dashicons-tickets-alt' => true, - 'dashicons-tickets' => true, - 'dashicons-tide' => true, - 'dashicons-translation' => true, - 'dashicons-trash' => true, - 'dashicons-twitch' => true, - 'dashicons-twitter-alt' => true, - 'dashicons-twitter' => true, - 'dashicons-undo' => true, - 'dashicons-universal-access-alt' => true, - 'dashicons-universal-access' => true, - 'dashicons-unlock' => true, - 'dashicons-update-alt' => true, - 'dashicons-update' => true, - 'dashicons-upload' => true, - 'dashicons-vault' => true, - 'dashicons-video-alt' => true, - 'dashicons-video-alt2' => true, - 'dashicons-video-alt3' => true, - 'dashicons-visibility' => true, - 'dashicons-warning' => true, - 'dashicons-welcome-add-page' => true, - 'dashicons-welcome-comments' => true, - 'dashicons-welcome-learn-more' => true, - 'dashicons-welcome-view-site' => true, - 'dashicons-welcome-widgets-menus' => true, - 'dashicons-welcome-write-blog' => true, - 'dashicons-whatsapp' => true, - 'dashicons-wordpress-alt' => true, - 'dashicons-wordpress' => true, - 'dashicons-xing' => true, - 'dashicons-yes-alt' => true, - 'dashicons-yes' => true, - 'dashicons-youtube' => true, - 'dashicons-editor-distractionfree' => true, - 'dashicons-exerpt-view' => true, - 'dashicons-format-links' => true, - 'dashicons-format-standard' => true, - 'dashicons-post-trash' => true, - 'dashicons-share1' => true, - 'dashicons-welcome-edit-page' => true, -); +return require JETPACK__PLUGIN_DIR . 'jetpack_vendor/automattic/jetpack-masterbar/src/admin-menu/dashicon-set.php'; diff --git a/projects/plugins/jetpack/modules/masterbar/admin-menu/load.php b/projects/plugins/jetpack/modules/masterbar/admin-menu/load.php index 3a1d6e0c29449..8cb8d92f6d0e4 100644 --- a/projects/plugins/jetpack/modules/masterbar/admin-menu/load.php +++ b/projects/plugins/jetpack/modules/masterbar/admin-menu/load.php @@ -2,22 +2,32 @@ /** * Admin Menu loader. * + * @deprecated $$next-version$$ + * * @package Jetpack + * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. */ namespace Automattic\Jetpack\Dashboard_Customizations; +_deprecated_file( __FILE__, 'jetpack-$$next-version$$' ); + +use Automattic\Jetpack\Masterbar\Base_Admin_Menu; use Automattic\Jetpack\Status\Host; use Automattic\Jetpack\Tracking; /** * Checks whether the navigation customizations should be performed for the given class. * + * @deprecated $$next-version$$ + * * @param string $admin_menu_class Class name. * * @return bool */ function should_customize_nav( $admin_menu_class ) { + _deprecated_function( __FUNCTION__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\should_customize_nav' ); // Make sure the class extends the base admin menu class. if ( ! is_subclass_of( $admin_menu_class, Base_Admin_Menu::class ) ) { return false; @@ -42,9 +52,12 @@ function should_customize_nav( $admin_menu_class ) { * Hides the Customizer menu items when the block theme is active by removing the dotcom-specific actions. * They are not needed for block themes. * + * @deprecated $$next-version$$ + * * @see https://github.com/Automattic/jetpack/pull/36017 */ function hide_customizer_menu_on_block_theme() { + _deprecated_function( __FUNCTION__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\hide_customizer_menu_on_block_theme' ); add_action( 'init', function () { @@ -72,9 +85,12 @@ function () { /** * Gets the name of the class that customizes the admin menu. * + * @deprecated $$next-version$$ + * * @return string Class name. */ function get_admin_menu_class() { + _deprecated_function( __FUNCTION__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\get_admin_menu_class' ); hide_customizer_menu_on_block_theme(); // WordPress.com Atomic sites. @@ -148,10 +164,14 @@ function get_admin_menu_class() { /** * Trigger an event when the user uses the dashboard quick switcher. * + * @deprecated $$next-version$$ + * * @param string $screen The current screen. * @param string $view The view the user choosed to go to. */ function dashboard_quick_switcher_record_usage( $screen, $view ) { + _deprecated_function( __FUNCTION__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\dashboard_quick_switcher_record_usage' ); + require_once __DIR__ . '/class-dashboard-switcher-tracking.php'; $tracking = new Dashboard_Switcher_Tracking( diff --git a/projects/plugins/jetpack/modules/masterbar/admin-menu/menu-mappings.php b/projects/plugins/jetpack/modules/masterbar/admin-menu/menu-mappings.php index d050ed620c173..5a5a75f65ba62 100644 --- a/projects/plugins/jetpack/modules/masterbar/admin-menu/menu-mappings.php +++ b/projects/plugins/jetpack/modules/masterbar/admin-menu/menu-mappings.php @@ -2,31 +2,11 @@ /** * Helper mapping between WP Admin pages and WordPress.com * + * @deprecated $$next-version$$ + * * @package automattic/jetpack */ -$common_mappings = array( - 'upload.php' => 'https://wordpress.com/media/', - 'edit.php' => 'https://wordpress.com/posts/', - 'edit-comments.php' => 'https://wordpress.com/comments/', - 'import.php' => 'https://wordpress.com/import/', - 'edit.php?post_type=page' => 'https://wordpress.com/pages/', - 'edit.php?post_type=post' => 'https://wordpress.com/posts/', - 'users.php' => 'https://wordpress.com/people/team/', - 'options-general.php' => 'https://wordpress.com/settings/general/', - 'options-discussion.php' => 'https://wordpress.com/settings/discussion/', - 'options-reading.php' => 'https://wordpress.com/settings/reading/', - 'options-writing.php' => 'https://wordpress.com/settings/writing/', - 'themes.php' => 'https://wordpress.com/themes/', - 'edit-tags.php?taxonomy=category' => 'https://wordpress.com/settings/taxonomies/category/', - 'edit-tags.php?taxonomy=post_tag' => 'https://wordpress.com/settings/taxonomies/post_tag/', - 'edit.php?post_type=jetpack-portfolio' => 'https://wordpress.com/types/jetpack-portfolio/', - 'edit.php?post_type=jetpack-testimonial' => 'https://wordpress.com/types/jetpack-testimonial/', -); - -if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { - // WPCOM Specific mappings. - $common_mappings['export.php'] = 'https://wordpress.com/export/'; -} +_deprecated_file( __FILE__, 'jetpack-$$next-version$$' ); -return $common_mappings; +return require JETPACK__PLUGIN_DIR . 'jetpack_vendor/automattic/jetpack-masterbar/src/admin-menu/common-mappings.php'; diff --git a/projects/plugins/jetpack/modules/masterbar/inline-help/class-inline-help.php b/projects/plugins/jetpack/modules/masterbar/inline-help/class-inline-help.php index 5ba5b0666eaba..ebe68f0567b68 100644 --- a/projects/plugins/jetpack/modules/masterbar/inline-help/class-inline-help.php +++ b/projects/plugins/jetpack/modules/masterbar/inline-help/class-inline-help.php @@ -5,111 +5,72 @@ * Handles providing a LiveChat icon within WPAdmin until such time * as the full live chat experience can be run in a non-Calypso environment. * + * @deprecated $$next-version$$ Use Automattic\Jetpack\Masterbar\Inline_Help instead. + * * @package automattic/jetpack */ namespace Automattic\Jetpack\Dashboard_Customizations; +use Automattic\Jetpack\Masterbar\Inline_Help as Masterbar_Inline_Help; + /** * Class Inline_Help. */ class Inline_Help { + /** + * Instance of \Automattic\Jetpack\Masterbar\Inline_Help + * Used for deprecation purposes. + * + * @var \Automattic\Jetpack\Masterbar\Inline_Help + */ + private $inline_help_wrapper; /** * Inline_Help constructor. + * + * @deprecated $$next-version$$ */ public function __construct() { - add_action( 'current_screen', array( $this, 'register_actions' ) ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Inline_Help::__construct' ); + + $this->inline_help_wrapper = new Masterbar_Inline_Help(); } /** * Registers actions. * + * @deprecated $$next-version$$ + * * @param object $current_screen Current screen object. * @return void */ public function register_actions( $current_screen ) { - // phpcs:disable WordPress.Security.NonceVerification.Recommended - // Do not inject the FAB icon on embedded screens since the parent window may already contain a FAB icon. - $is_framed = ! empty( $_GET['frame-nonce'] ); - - // Do not inject the FAB icon on Yoast screens to avoid overlap with the Yoast help icon. - $is_yoast = ! empty( $current_screen->base ) && str_contains( $current_screen->base, '_page_wpseo_' ); - - if ( $is_framed || $is_yoast ) { - return; - } - // phpcs:enable WordPress.Security.NonceVerification.Recommended - - add_action( 'admin_footer', array( $this, 'add_fab_icon' ) ); - - add_action( 'admin_enqueue_scripts', array( $this, 'add_fab_styles' ) ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Inline_Help::register_actions' ); + $this->inline_help_wrapper->register_actions( $current_screen ); } /** * Outputs "FAB" icon markup and SVG. * + * @deprecated $$next-version$$ + * * @return void|string the HTML markup for the FAB or early exit. */ public function add_fab_icon() { - - if ( wp_doing_ajax() ) { - return; - } - - $svg_allowed = array( - 'svg' => array( - 'id' => true, - 'class' => true, - 'aria-hidden' => true, - 'aria-labelledby' => true, - 'role' => true, - 'xmlns' => true, - 'width' => true, - 'height' => true, - 'viewbox' => true, // <= Must be lower case! - ), - 'g' => array( 'fill' => true ), - 'title' => array( 'title' => true ), - 'path' => array( - 'd' => true, - 'fill' => true, - ), - ); - - $gridicon_help = file_get_contents( __DIR__ . '/gridicon-help.svg', true ); - - // Add tracking data to link to be picked up by Calypso for GA and Tracks usage. - $tracking_href = add_query_arg( - array( - 'utm_source' => 'wp_admin', - 'utm_medium' => 'other', - 'utm_content' => 'jetpack_masterbar_inline_help_click', - 'flags' => 'a8c-analytics.on', - ), - 'https://wordpress.com/help' - ); - - // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped - // We trust that output in the template has been escaped. - echo load_template( - __DIR__ . '/inline-help-template.php', - true, - array( - 'href' => $tracking_href, - 'icon' => $gridicon_help, - 'svg_allowed' => $svg_allowed, - ) - ); - // phpcs:enable WordPress.Security.EscapeOutput.OutputNotEscaped + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Inline_Help::add_fab_icon' ); + $this->inline_help_wrapper->add_fab_icon(); } /** * Enqueues FAB CSS styles. * + * @deprecated $$next-version$$ + * * @return void */ public function add_fab_styles() { - wp_enqueue_style( 'a8c-faux-inline-help', plugins_url( 'inline-help.css', __FILE__ ), array(), JETPACK__VERSION ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Inline_Help::add_fab_styles' ); + $this->inline_help_wrapper->add_fab_styles(); } } diff --git a/projects/plugins/jetpack/modules/masterbar/masterbar/class-masterbar.php b/projects/plugins/jetpack/modules/masterbar/masterbar/class-masterbar.php index 9d16258b94f9e..b2c55512badce 100644 --- a/projects/plugins/jetpack/modules/masterbar/masterbar/class-masterbar.php +++ b/projects/plugins/jetpack/modules/masterbar/masterbar/class-masterbar.php @@ -2,264 +2,68 @@ /** * Masterbar file. * + * @deprecated $$next-version$$ Use Automattic\Jetpack\Masterbar\Masterbar instead. + * * @package automattic/jetpack + * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. */ namespace Automattic\Jetpack\Dashboard_Customizations; -use Automattic\Jetpack\Assets; -use Automattic\Jetpack\Connection\Manager as Connection_Manager; -use Automattic\Jetpack\Device_Detection\User_Agent_Info; -use Automattic\Jetpack\Redirect; -use Automattic\Jetpack\Scan\Admin_Bar_Notice; -use Automattic\Jetpack\Status; -use Automattic\Jetpack\Status\Host; -use GP_Locale; -use GP_Locales; -use Jetpack; -use Jetpack_AMP_Support; +use Automattic\Jetpack\Masterbar\Masterbar as Jetpack_Masterbar; use WP_Admin_Bar; /** * Provides custom admin bar instead of the default WordPress admin bar. */ class Masterbar { - /** - * Use for testing changes made to remotely enqueued scripts and styles on your sandbox. - * If not set it will default to loading the ones from WordPress.com. - * - * @var string $sandbox_url - */ - private $sandbox_url = ''; - - /** - * Current locale. - * - * @var string - */ - private $locale; /** - * WordPress.com user locale of the connected user. + * Instance of \Automattic\Jetpack\Masterbar\Masterbar + * Used for deprecation purposes. * - * @var string + * @var \Automattic\Jetpack\Masterbar\Masterbar */ - private $user_locale; - - /** - * Current User ID. - * - * @var int - */ - private $user_id; - /** - * WordPress.com user data of the connected user. - * - * @var array - */ - private $user_data; - /** - * WordPress.com username for the connected user. - * - * @var string - */ - private $user_login; - /** - * WordPress.com email address for the connected user. - * - * @var string - */ - private $user_email; - /** - * WordPress.com display name for the connected user. - * - * @var string - */ - private $display_name; - /** - * Site URL sanitized for usage in WordPress.com slugs. - * - * @var string - */ - private $primary_site_slug; - /** - * Site URL displayed in the UI. - * - * @var string - */ - private $primary_site_url; - /** - * Whether the text direction is RTL (based on connected WordPress.com user's interface settings). - * - * @var boolean - */ - private $is_rtl; - /** - * Number of sites owned by connected WordPress.com user. - * - * @var int - */ - private $user_site_count; - /** - * If the site is hosted on WordPress.com on Atomic - * - * @var bool - */ - private $site_woa; + private $masterbar_wrapper; /** * Constructor + * + * @deprecated $$next-version$$ */ public function __construct() { - $this->user_id = get_current_user_id(); - $connection_manager = new Connection_Manager( 'jetpack' ); - - if ( ! $connection_manager->is_user_connected( $this->user_id ) ) { - return; - } - - $this->user_data = $connection_manager->get_connected_user_data( $this->user_id ); - $this->user_login = isset( $this->user_data['login'] ) ? $this->user_data['login'] : ''; - $this->user_email = isset( $this->user_data['email'] ) ? $this->user_data['email'] : ''; - $this->display_name = isset( $this->user_data['display_name'] ) ? $this->user_data['display_name'] : ''; - $this->user_site_count = isset( $this->user_data['site_count'] ) ? $this->user_data['site_count'] : ''; - $this->is_rtl = isset( $this->user_data['text_direction'] ) && 'rtl' === $this->user_data['text_direction']; - $this->user_locale = isset( $this->user_data['user_locale'] ) ? $this->user_data['user_locale'] : ''; - $this->site_woa = ( new Host() )->is_woa_site(); - - // Store part of the connected user data as user options so it can be used - // by other files of the masterbar module without making another XMLRPC - // request. Although `get_connected_user_data` tries to save the data for - // future uses on a transient, the data is not guaranteed to be cached. - update_user_option( $this->user_id, 'jetpack_wpcom_is_rtl', $this->is_rtl ? '1' : '0' ); - if ( isset( $this->user_data['use_wp_admin_links'] ) ) { - update_user_option( $this->user_id, 'jetpack_admin_menu_link_destination', $this->user_data['use_wp_admin_links'] ? '1' : '0' ); - } - // If Atomic, store and install user locale. - if ( $this->site_woa && 'wp-admin' !== get_option( 'wpcom_admin_interface' ) ) { - $this->user_locale = $this->get_jetpack_locale( $this->user_locale ); - $this->install_locale( $this->user_locale ); - $this->unload_non_default_textdomains_on_wpcom_user_locale_switch( $this->user_locale ); - update_user_option( $this->user_id, 'locale', $this->user_locale, true ); - } - - add_action( 'admin_bar_init', array( $this, 'init' ) ); - - if ( ! empty( $this->user_data['ID'] ) ) { - // Post logout on the site, also log the user out of WordPress.com. - add_filter( 'logout_redirect', array( $this, 'maybe_logout_user_from_wpcom' ) ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::__construct' ); + $this->masterbar_wrapper = new Jetpack_Masterbar(); } /** * Initialize our masterbar. + * + * @deprecated $$next-version$$ */ public function init() { - $this->locale = $this->get_locale(); - - // Don't show the masterbar on WordPress mobile apps. - if ( User_Agent_Info::is_mobile_app() ) { - add_filter( 'show_admin_bar', '__return_false' ); - return; - } - - // Disable the Masterbar on AMP views. - if ( - class_exists( 'Jetpack_AMP_Support' ) - && Jetpack_AMP_Support::is_amp_available() - && Jetpack_AMP_Support::is_amp_request() - ) { - return; - } - - Assets::add_resource_hint( - array( - '//s0.wp.com', - '//0.gravatar.com', - '//1.gravatar.com', - '//2.gravatar.com', - ), - 'dns-prefetch' - ); - - // WordPress.com on Atomic only. - if ( $this->site_woa ) { - /* - * override user setting that hides masterbar from site's front. - * https://github.com/Automattic/jetpack/issues/7667 - */ - add_filter( 'show_admin_bar', '__return_true' ); - } - - // Used to build menu links that point directly to Calypso. - $this->primary_site_slug = ( new Status() )->get_site_suffix(); - - // Used for display purposes and for building WP Admin links. - $this->primary_site_url = str_replace( '::', '/', $this->primary_site_slug ); - - add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); - - add_action( 'wp_before_admin_bar_render', array( $this, 'replace_core_masterbar' ), 99999 ); - - add_action( 'wp_enqueue_scripts', array( $this, 'add_styles_and_scripts' ) ); - add_action( 'admin_enqueue_scripts', array( $this, 'add_styles_and_scripts' ) ); - - add_action( 'wp_enqueue_scripts', array( $this, 'remove_core_styles' ) ); - add_action( 'admin_enqueue_scripts', array( $this, 'remove_core_styles' ) ); - - if ( Jetpack::is_module_active( 'notes' ) && $this->is_rtl ) { - // Override Notification module to include RTL styles. - add_action( 'a8c_wpcom_masterbar_enqueue_rtl_notification_styles', '__return_true' ); - } - - // Hides and replaces the language dropdown for the current user, on WoA. - if ( $this->site_woa && - 'wp-admin' !== get_option( 'wpcom_admin_interface' ) && - defined( 'IS_PROFILE_PAGE' ) && IS_PROFILE_PAGE ) { - add_action( 'user_edit_form_tag', array( $this, 'hide_language_dropdown' ) ); - add_action( 'personal_options', array( $this, 'replace_language_dropdown' ), 9 ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::init' ); + $this->masterbar_wrapper->init(); } /** * Log out from WordPress.com when logging out of the local site. * + * @deprecated $$next-version$$ + * * @param string $redirect_to The redirect destination URL. */ public function maybe_logout_user_from_wpcom( $redirect_to ) { - /** - * Whether we should sign out from wpcom too when signing out from the masterbar. - * - * @since 5.9.0 - * - * @param bool $masterbar_should_logout_from_wpcom True by default. - */ - $masterbar_should_logout_from_wpcom = apply_filters( 'jetpack_masterbar_should_logout_from_wpcom', true ); - if ( - // No need to check for a nonce here, it happens further up. - isset( $_GET['context'] ) // phpcs:ignore WordPress.Security.NonceVerification.Recommended - && 'masterbar' === $_GET['context'] // phpcs:ignore WordPress.Security.NonceVerification.Recommended - && $masterbar_should_logout_from_wpcom - ) { - /** - * Hook into the log out event happening from the Masterbar. - * - * @since 5.1.0 - * @since 7.9.0 Added the $wpcom_user_id parameter to the action. - * - * @module masterbar - * - * @param int $wpcom_user_id WordPress.com User ID. - */ - do_action( 'wp_masterbar_logout', $this->user_data['ID'] ); - } - - return $redirect_to; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::maybe_logout_user_from_wpcom' ); + return $this->masterbar_wrapper->maybe_logout_user_from_wpcom( $redirect_to ); } /** * Adds CSS classes to admin body tag. * + * @deprecated $$next-version$$ + * * @since 5.1 * * @param string $admin_body_classes CSS classes that will be added. @@ -267,118 +71,38 @@ public function maybe_logout_user_from_wpcom( $redirect_to ) { * @return string */ public function admin_body_class( $admin_body_classes ) { - - $classes = array( 'jetpack-masterbar', trim( $admin_body_classes ) ); - - if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { - $classes[] = 'wpcom-admin-interface'; - } - - return implode( ' ', $classes ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::admin_body_class' ); + return $this->masterbar_wrapper->admin_body_class( $admin_body_classes ); } /** * Remove the default Admin Bar CSS. + * + * @deprecated $$next-version$$ */ public function remove_core_styles() { - /* - * Notifications need the admin bar styles, - * so let's not remove them when the module is active. - * Also, don't remove the styles if the user has opted to use wp-admin. - */ - if ( ! Jetpack::is_module_active( 'notes' ) && get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { - wp_dequeue_style( 'admin-bar' ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::remove_core_styles' ); + $this->masterbar_wrapper->remove_core_styles(); } /** * Enqueue our own CSS and JS to display our custom admin bar. - */ - public function add_styles_and_scripts() { - // WoA sites: If wpcom_admin_interface is set to wp-admin, load the wp-admin styles. - // These include only styles to enable the "My Sites" and "Reader" links that will be added. - if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { - $css_file = $this->is_rtl ? 'masterbar-wp-admin-rtl.css' : 'masterbar-wp-admin.css'; - wp_enqueue_style( 'a8c-wpcom-masterbar-overrides', $this->wpcom_static_url( '/wp-content/mu-plugins/admin-bar/masterbar-overrides/' . $css_file ), array(), JETPACK__VERSION ); - return; - } - - if ( $this->is_rtl ) { - wp_enqueue_style( 'a8c-wpcom-masterbar-rtl', $this->wpcom_static_url( '/wp-content/mu-plugins/admin-bar/rtl/wpcom-admin-bar-rtl.css' ), array(), JETPACK__VERSION ); - wp_enqueue_style( 'a8c-wpcom-masterbar-overrides-rtl', $this->wpcom_static_url( '/wp-content/mu-plugins/admin-bar/masterbar-overrides/rtl/masterbar-rtl.css' ), array(), JETPACK__VERSION ); - } else { - wp_enqueue_style( 'a8c-wpcom-masterbar', $this->wpcom_static_url( '/wp-content/mu-plugins/admin-bar/wpcom-admin-bar.css' ), array(), JETPACK__VERSION ); - wp_enqueue_style( 'a8c-wpcom-masterbar-overrides', $this->wpcom_static_url( '/wp-content/mu-plugins/admin-bar/masterbar-overrides/masterbar.css' ), array(), JETPACK__VERSION ); - } - - // Local overrides. - wp_enqueue_style( 'a8c_wpcom_css_override', plugins_url( 'overrides.css', __FILE__ ), array(), JETPACK__VERSION ); - - if ( ! Jetpack::is_module_active( 'notes ' ) ) { - // Masterbar is relying on some icons from noticons.css. - wp_enqueue_style( 'noticons', $this->wpcom_static_url( '/i/noticons/noticons.css' ), array(), JETPACK__VERSION . '-' . gmdate( 'oW' ) ); - } - - wp_enqueue_script( - 'jetpack-accessible-focus', - Assets::get_file_url_for_environment( '_inc/build/accessible-focus.min.js', '_inc/accessible-focus.js' ), - array(), - JETPACK__VERSION, - false - ); - wp_enqueue_script( - 'a8c_wpcom_masterbar_tracks_events', - Assets::get_file_url_for_environment( - '_inc/build/masterbar/masterbar/tracks-events.min.js', - 'modules/masterbar/masterbar/tracks-events.js' - ), - array(), - JETPACK__VERSION, - false - ); - - wp_enqueue_script( - 'a8c_wpcom_masterbar_overrides', - $this->wpcom_static_url( '/wp-content/mu-plugins/admin-bar/masterbar-overrides/masterbar.js' ), - array( 'jquery' ), - JETPACK__VERSION, - false - ); - } - - /** - * Get base URL where our CSS and JS will come from. * - * @param string $file File path for a static resource. + * @deprecated $$next-version$$ */ - private function wpcom_static_url( $file ) { - if ( ! empty( $this->sandbox_url ) ) { - // For testing undeployed changes to remotely enqueued scripts and styles. - return set_url_scheme( $this->sandbox_url . $file, 'https' ); - } - - $url = 'https://s0.wp.com' . $file; - - return set_url_scheme( $url, 'https' ); + public function add_styles_and_scripts() { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::add_styles_and_scripts' ); + $this->masterbar_wrapper->add_styles_and_scripts(); } /** * Remove the default admin bar items and replace it with our own admin bar. + * + * @deprecated $$next-version$$ */ public function replace_core_masterbar() { - global $wp_admin_bar; - - if ( ! is_object( $wp_admin_bar ) ) { - return false; - } - - if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { - $this->build_wp_admin_interface_bar( $wp_admin_bar ); - return; - } - - $this->clear_core_masterbar( $wp_admin_bar ); - $this->build_wpcom_masterbar( $wp_admin_bar ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::replace_core_masterbar' ); + $this->masterbar_wrapper->replace_core_masterbar(); } /** @@ -389,12 +113,14 @@ public function replace_core_masterbar() { * to NOT use the wpcom master bar. We do need to adjust a couple of things * though. * + * @deprecated $$next-version$$ + * * @param WP_Admin_Bar $bar The admin bar object. * * @return void */ protected function build_wp_admin_interface_bar( $bar ) { - + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::build_wp_admin_interface_bar' ); $nodes = array(); // First, lets gather all nodes and remove them. @@ -437,11 +163,14 @@ protected function build_wp_admin_interface_bar( $bar ) { /** * Add a link to the user` profile on WordPress.com * + * @deprecated $$next-version$$ + * * @param WP_Admin_Bar $bar The admin bar object. * * @return void */ protected function add_wpcom_profile_link( $bar ) { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::add_wpcom_profile_link' ); $custom_node = array( 'parent' => 'user-actions', 'id' => 'wpcom-profile-link', @@ -458,115 +187,60 @@ protected function add_wpcom_profile_link( $bar ) { /** * Remove all existing toolbar entries from core Masterbar * + * @deprecated $$next-version$$ + * * @param WP_Admin_Bar $wp_admin_bar Admin Bar instance. */ public function clear_core_masterbar( $wp_admin_bar ) { - foreach ( $wp_admin_bar->get_nodes() as $node ) { - $wp_admin_bar->remove_node( $node->id ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::clear_core_masterbar' ); + $this->masterbar_wrapper->clear_core_masterbar( $wp_admin_bar ); } /** * Add entries corresponding to WordPress.com Masterbar * + * @deprecated $$next-version$$ + * * @param WP_Admin_Bar $wp_admin_bar Admin Bar instance. */ public function build_wpcom_masterbar( $wp_admin_bar ) { - // Menu groups. - $this->wpcom_adminbar_add_secondary_groups( $wp_admin_bar ); - - // Left part. - $this->add_my_sites_submenu( $wp_admin_bar ); - $this->add_reader_submenu( $wp_admin_bar ); - - // Right part. - if ( Jetpack::is_module_active( 'notes' ) && ! \Jetpack_Notifications::is_block_editor() ) { - $this->add_notifications( $wp_admin_bar ); - } - - $this->add_me_submenu( $wp_admin_bar ); - $this->add_write_button( $wp_admin_bar ); - - // Recovery mode exit. - wp_admin_bar_recovery_mode_menu( $wp_admin_bar ); - - if ( class_exists( 'Automattic\Jetpack\Scan\Admin_Bar_Notice' ) ) { - $scan_admin_bar_notice = Admin_Bar_Notice::instance(); - $scan_admin_bar_notice->add_threats_to_toolbar( $wp_admin_bar ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::build_wpcom_masterbar' ); + $this->masterbar_wrapper->build_wpcom_masterbar( $wp_admin_bar ); } /** * Get WordPress.com current locale name. + * + * @deprecated $$next-version$$ */ public function get_locale() { - $wpcom_locale = get_locale(); - - if ( ! class_exists( 'GP_Locales' ) ) { - if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { - require JETPACK__GLOTPRESS_LOCALES_PATH; - } - } - - if ( class_exists( 'GP_Locales' ) ) { - $wpcom_locale_object = GP_Locales::by_field( 'wp_locale', get_locale() ); - if ( $wpcom_locale_object instanceof GP_Locale ) { - $wpcom_locale = $wpcom_locale_object->slug; - } - } - - return $wpcom_locale; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::get_locale' ); + return $this->masterbar_wrapper->get_locale(); } /** * Get Jetpack locale name. * + * @deprecated $$next-version$$ + * * @param string $slug Locale slug. * @return string Jetpack locale. */ public function get_jetpack_locale( $slug = '' ) { - if ( ! class_exists( 'GP_Locales' ) ) { - if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { - require JETPACK__GLOTPRESS_LOCALES_PATH; - } - } - - if ( class_exists( 'GP_Locales' ) ) { - $jetpack_locale_object = GP_Locales::by_field( 'slug', $slug ); - if ( $jetpack_locale_object instanceof GP_Locale ) { - $jetpack_locale = $jetpack_locale_object->wp_locale ? $jetpack_locale_object->wp_locale : 'en_US'; - } - } - - if ( isset( $jetpack_locale ) ) { - return $jetpack_locale; - } - - return 'en_US'; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::get_jetpack_locale' ); + return $this->masterbar_wrapper->get_jetpack_locale( $slug ); } /** * Install locale if not yet available. * + * @deprecated $$next-version$$ + * * @param string $locale The new locale slug. */ public function install_locale( $locale = '' ) { - if ( ! in_array( $locale, get_available_languages(), true ) - && ! empty( $locale ) && current_user_can( 'install_languages' ) ) { - - if ( ! function_exists( 'wp_download_language_pack' ) ) { - require_once ABSPATH . 'wp-admin/includes/translation-install.php'; - } - - if ( ! function_exists( 'request_filesystem_credentials' ) ) { - require_once ABSPATH . 'wp-admin/includes/file.php'; - } - - if ( wp_can_install_language_pack() ) { - wp_download_language_pack( $locale ); - load_default_textdomain( $locale ); - } - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::install_locale' ); + return $this->masterbar_wrapper->install_locale( $locale ); } /** @@ -582,363 +256,132 @@ public function install_locale( $locale = '' ) { * The default textdomain is not affected by this because it's always reloaded * after all plugins have been loaded, in wp-settings.php. * + * @deprecated $$next-version$$ + * * @param string $wpcom_locale The user's detected WordPress.com locale. */ public function unload_non_default_textdomains_on_wpcom_user_locale_switch( $wpcom_locale ) { - $user_switched_locale = get_user_locale() !== $wpcom_locale; - if ( ! $user_switched_locale ) { - return; - } - - global $l10n; - $loaded_textdomains = array_keys( $l10n ); - $non_default_textdomains = array_diff( $loaded_textdomains, array( 'default' ) ); - foreach ( $non_default_textdomains as $textdomain ) { - // Using $reloadable = true makes sure the correct locale's - // translations are loaded just-in-time. - unload_textdomain( $textdomain, true ); - } + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::unload_non_default_textdomains_on_wpcom_user_locale_switch' ); + return $this->masterbar_wrapper->unload_non_default_textdomains_on_wpcom_user_locale_switch( $wpcom_locale ); } /** * Hide language dropdown on user edit form. + * + * @deprecated $$next-version$$ */ public function hide_language_dropdown() { - add_filter( 'get_available_languages', '__return_empty_array' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::hide_language_dropdown' ); + $this->masterbar_wrapper->hide_language_dropdown(); } /** * Replace language dropdown with link to WordPress.com. + * + * @deprecated $$next-version$$ */ public function replace_language_dropdown() { - $language_row = printf( '' ); - $language_row .= printf( - '', - esc_html__( 'Language', 'jetpack' ) - ); - $language_row .= printf( '' ); - $language_row .= printf( - '%2$s', - esc_url( 'https://wordpress.com/me/account' ), - esc_html__( 'Set your profile language on WordPress.com.', 'jetpack' ) - ); - $language_row .= printf( '' ); - return $language_row; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::replace_language_dropdown' ); + return $this->masterbar_wrapper->replace_language_dropdown(); } /** * Add the Notifications menu item. * + * @deprecated $$next-version$$ + * * @param WP_Admin_Bar $wp_admin_bar Admin Bar instance. */ public function add_notifications( $wp_admin_bar ) { - $wp_admin_bar->add_node( - array( - 'id' => 'notes', - 'title' => ' - ' . esc_html__( 'Notifications', 'jetpack' ) . ' - ', - 'meta' => array( - 'html' => '', - 'class' => 'menupop mb-trackable', - ), - 'parent' => 'top-secondary', - 'href' => 'https://wordpress.com/notifications', - ) - ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::add_notifications' ); + $this->masterbar_wrapper->add_notifications( $wp_admin_bar ); } /** * Add the "Reader" menu item in the root default group. * + * @deprecated $$next-version$$ + * * @param WP_Admin_Bar $wp_admin_bar Admin Bar instance. */ public function add_reader_submenu( $wp_admin_bar ) { - $wp_admin_bar->add_menu( - array( - 'parent' => 'root-default', - 'id' => 'newdash', - 'title' => esc_html__( 'Reader', 'jetpack' ), - 'href' => 'https://wordpress.com/read', - 'meta' => array( - 'class' => 'mb-trackable', - ), - ) - ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::add_reader_submenu' ); + $this->masterbar_wrapper->add_reader_submenu( $wp_admin_bar ); } /** * Merge 2 menu items together into 2 link tags. * + * @deprecated $$next-version$$ + * * @param array $primary Array of menu information. * @param array $secondary Array of menu information. */ public function create_menu_item_pair( $primary, $secondary ) { - $primary_class = 'ab-item ab-primary mb-icon'; - $secondary_class = 'ab-secondary'; - - $primary_anchor = $this->create_menu_item_anchor( $primary_class, $primary['url'], $primary['label'], $primary['id'] ); - $secondary_anchor = $this->create_menu_item_anchor( $secondary_class, $secondary['url'], $secondary['label'], $secondary['id'] ); - - return $primary_anchor . $secondary_anchor; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::create_menu_item_pair' ); + return $this->masterbar_wrapper->create_menu_item_pair( $primary, $secondary ); } /** * Create a link tag based on information about a menu item. * + * @deprecated $$next-version$$ + * * @param string $class Menu item CSS class. * @param string $url URL you go to when clicking on the menu item. * @param string $label Menu item title. * @param string $id Menu item slug. */ public function create_menu_item_anchor( $class, $url, $label, $id ) { - return '' . $label . ''; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::create_menu_item_anchor' ); + return $this->masterbar_wrapper->create_menu_item_anchor( $class, $url, $label, $id ); } /** * Add Secondary groups for submenu items. * + * @deprecated $$next-version$$ + * * @param WP_Admin_Bar $wp_admin_bar Admin Bar instance. */ public function wpcom_adminbar_add_secondary_groups( $wp_admin_bar ) { - $wp_admin_bar->add_group( - array( - 'id' => 'root-default', - 'meta' => array( - 'class' => 'ab-top-menu', - ), - ) - ); - - $wp_admin_bar->add_group( - array( - 'parent' => 'blog', - 'id' => 'blog-secondary', - 'meta' => array( - 'class' => 'ab-sub-secondary', - ), - ) - ); - - $wp_admin_bar->add_group( - array( - 'id' => 'top-secondary', - 'meta' => array( - 'class' => 'ab-top-secondary', - ), - ) - ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::wpcom_adminbar_add_secondary_groups' ); + $this->masterbar_wrapper->wpcom_adminbar_add_secondary_groups( $wp_admin_bar ); } /** * Add User info menu item. * + * @deprecated $$next-version$$ + * * @param WP_Admin_Bar $wp_admin_bar Admin Bar instance. */ public function add_me_submenu( $wp_admin_bar ) { - $user_id = get_current_user_id(); - if ( empty( $user_id ) ) { - return; - } - - $avatar = get_avatar( $this->user_email, 32, 'mm', '', array( 'force_display' => true ) ); - $class = empty( $avatar ) ? 'mb-trackable' : 'with-avatar mb-trackable'; - - // Add the 'Me' menu. - $wp_admin_bar->add_menu( - array( - 'id' => 'my-account', - 'parent' => 'top-secondary', - 'title' => $avatar . '' . esc_html__( 'Me', 'jetpack' ) . '', - 'href' => 'https://wordpress.com/me', - 'meta' => array( - 'class' => $class, - ), - ) - ); - - /** This filter is documented in modules/masterbar.php */ - if ( apply_filters( 'jetpack_load_admin_menu_class', false ) ) { - return; - } - - $id = 'user-actions'; - $wp_admin_bar->add_group( - array( - 'parent' => 'my-account', - 'id' => $id, - ) - ); - - $logout_url = wp_logout_url(); - $logout_url = add_query_arg( 'context', 'masterbar', $logout_url ); - - $user_info = get_avatar( $this->user_email, 128, 'mm', '', array( 'force_display' => true ) ); - $user_info .= '' . $this->display_name . ''; - $user_info .= '' . $this->user_login . ''; - - $blog_id = Connection_Manager::get_site_id( true ); - - $args = array(); - if ( $blog_id ) { - $args['site'] = $blog_id; - } - - $wp_admin_bar->add_menu( - array( - 'parent' => $id, - 'id' => 'user-info', - 'title' => $user_info, - 'meta' => array( - 'class' => 'user-info user-info-item', - 'tabindex' => -1, - ), - ) - ); - - $wp_admin_bar->add_menu( - array( - 'parent' => $id, - 'id' => 'profile', - 'title' => esc_html__( 'Profile', 'jetpack' ), - 'href' => Redirect::get_url( 'calypso-me', $args ), - 'meta' => array( - 'class' => 'mb-icon', - ), - ) - ); - - $wp_admin_bar->add_menu( - array( - 'parent' => $id, - 'id' => 'logout', - 'title' => esc_html__( 'Log Out', 'jetpack' ), - 'href' => $logout_url, - 'meta' => array( - 'class' => 'mb-icon', - ), - ) - ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::add_me_submenu' ); + $this->masterbar_wrapper->add_me_submenu( $wp_admin_bar ); } /** * Add Write Menu item. * + * @deprecated $$next-version$$ + * * @param WP_Admin_Bar $wp_admin_bar Admin Bar instance. */ public function add_write_button( $wp_admin_bar ) { - $current_user = wp_get_current_user(); - - $posting_blog_id = get_current_blog_id(); - if ( ! is_user_member_of_blog( get_current_user_id(), get_current_blog_id() ) ) { - $posting_blog_id = $current_user->primary_blog; - } - - $user_can_post = current_user_can_for_blog( $posting_blog_id, 'publish_posts' ); - - if ( ! $posting_blog_id || ! $user_can_post ) { - return; - } - - $wp_admin_bar->add_menu( - array( - 'parent' => 'top-secondary', - 'id' => 'ab-new-post', - 'href' => admin_url( 'post-new.php' ), - 'title' => '' . esc_html__( 'Write', 'jetpack' ) . '', - 'meta' => array( - 'class' => 'mb-trackable', - ), - ) - ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::add_write_button' ); + $this->masterbar_wrapper->add_write_button( $wp_admin_bar ); } /** * Add the "My Site" menu item in the root default group. * - * @param WP_Admin_Bar $wp_admin_bar Admin Bar instance. - */ - public function add_my_sites_submenu( $wp_admin_bar ) { - $blog_name = get_bloginfo( 'name' ); - if ( empty( $blog_name ) ) { - $blog_name = $this->primary_site_slug; - } - - if ( mb_strlen( $blog_name ) > 20 ) { - $blog_name = mb_substr( html_entity_decode( $blog_name, ENT_QUOTES ), 0, 20 ) . '…'; - } - - $my_site_url = 'https://wordpress.com/sites/' . $this->primary_site_url; - if ( 'wp-admin' === get_option( 'wpcom_admin_interface' ) ) { - $my_site_url = 'https://wordpress.com/sites'; - } - - $wp_admin_bar->add_menu( - array( - 'parent' => 'root-default', - 'id' => 'blog', - 'href' => $my_site_url, - 'meta' => array( - 'class' => 'my-sites mb-trackable', - ), - ) - ); - - /** This filter is documented in modules/masterbar.php */ - if ( apply_filters( 'jetpack_load_admin_menu_class', false ) ) { - return; - } - - if ( current_user_can( 'manage_options' ) ) { - // Restore dashboard menu toggle that is needed on mobile views. - if ( is_admin() ) { - $wp_admin_bar->add_menu( - array( - 'id' => 'menu-toggle', - 'title' => '' . esc_html__( 'Menu', 'jetpack' ) . '', - 'href' => '#', - ) - ); - } - - /** - * Fires when menu items are added to the masterbar "My Sites" menu. - * - * @since jetpack-5.4.0 - */ - do_action( 'jetpack_masterbar' ); - } - } - - /** - * Adds "My Home" submenu item to sites that are eligible. + * @deprecated $$next-version$$ * * @param WP_Admin_Bar $wp_admin_bar Admin Bar instance. - * @return void */ - private function add_my_home_submenu_item( &$wp_admin_bar ) { - if ( ! current_user_can( 'manage_options' ) || ! $this->site_woa ) { - return; - } - - $wp_admin_bar->add_menu( - array( - 'parent' => 'blog', - 'id' => 'my-home', - 'title' => __( 'My Home', 'jetpack' ), - 'href' => Redirect::get_url( 'calypso-home' ), - 'meta' => array( - 'class' => 'mb-icon', - ), - ) - ); + public function add_my_sites_submenu( $wp_admin_bar ) { + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Masterbar::add_my_sites_submenu' ); + $this->masterbar_wrapper->add_my_sites_submenu( $wp_admin_bar ); } } diff --git a/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-atomic-additional-css-manager.php b/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-atomic-additional-css-manager.php index dbc8620c6a94a..699e8a43e7142 100644 --- a/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-atomic-additional-css-manager.php +++ b/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-atomic-additional-css-manager.php @@ -4,11 +4,15 @@ * * Responsible with replacing the Core Additional CSS section with an upgrade nudge on Atomic. * + * @deprecated $$next-version$$ Use Automattic\Jetpack\Masterbar\Atomic_Additional_CSS_Manager instead. + * * @package Jetpack */ namespace Automattic\Jetpack\Dashboard_Customizations; +use Automattic\Jetpack\Masterbar\Atomic_Additional_CSS_Manager as Masterbar_Atomic_Additional_CSS_Manager; + /** * Class Atomic_Additional_CSS_Manager * @@ -17,47 +21,34 @@ class Atomic_Additional_CSS_Manager { /** - * The site domain. + * Instance of \Automattic\Jetpack\Masterbar\Atomic_Additional_CSS_Manager + * Used for deprecation purposes. * - * @var string + * @var \Automattic\Jetpack\Masterbar\Atomic_Additional_CSS_Manager */ - private $domain; + private $additional_css_wrapper; /** * Atomic_Additional_CSS_Manager constructor. * + * @deprecated $$next-version$$ + * * @param string $domain the Site domain. */ public function __construct( $domain ) { - $this->domain = $domain; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Additional_CSS_Manager::__construct' ); + $this->additional_css_wrapper = new Masterbar_Atomic_Additional_CSS_Manager( $domain ); } /** * Replace the Additional CSS section from Customiz¡er with an upgrade nudge. * + * @deprecated $$next-version$$ + * * @param \WP_Customize_Manager $wp_customize_manager Core customize manager. */ public function register_nudge( \WP_Customize_Manager $wp_customize_manager ) { - $nudge_url = $this->get_nudge_url(); - $nudge_text = __( 'Purchase the Creator plan to
activate CSS customization', 'jetpack' ); - - $nudge = new CSS_Customizer_Nudge( - $nudge_url, - $nudge_text - ); - - $wp_customize_manager->remove_control( 'custom_css' ); - $wp_customize_manager->remove_section( 'custom_css' ); - - $nudge->customize_register_nudge( $wp_customize_manager ); - } - - /** - * Get the Nudge URL. - * - * @return string - */ - private function get_nudge_url() { - return '/checkout/' . $this->domain . '/business'; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Atomic_Additional_CSS_Manager::register_nudge' ); + $this->additional_css_wrapper->register_nudge( $wp_customize_manager ); } } diff --git a/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-css-customizer-nudge.php b/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-css-customizer-nudge.php index ad15270fed9a8..96e56547ae7a3 100644 --- a/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-css-customizer-nudge.php +++ b/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-css-customizer-nudge.php @@ -3,11 +3,15 @@ * CSS_Customizer_Nudge file. * CSS Nudge implementation for Atomic and WPCOM. * + * @deprecated $$next-version$$ Use Automattic\Jetpack\Masterbar\CSS_Customizer_Nudge instead. + * * @package Jetpack */ namespace Automattic\Jetpack\Dashboard_Customizations; +use Automattic\Jetpack\Masterbar\CSS_Customizer_Nudge as Masterbar_CSS_Customizer_Nudge; + /** * Class WPCOM_CSS_Customizer * @@ -15,117 +19,74 @@ */ class CSS_Customizer_Nudge { /** - * Call to Action URL. - * - * @var string - */ - private $cta_url; - - /** - * The nudge message. - * - * @var string - */ - private $nudge_copy; - - /** - * The name of the control in Customizer. + * Instance of \Automattic\Jetpack\Masterbar\CSS_Customizer_Nudge + * Used for deprecation purposes. * - * @var string + * @var \Automattic\Jetpack\Masterbar\CSS_Customizer_Nudge */ - private $control_name; + private $css_customizer_nudge_wrapper; /** * CSS_Customizer_Nudge constructor. * + * @deprecated $$next-version$$ + * * @param string $cta_url The URL to the plans. * @param string $nudge_copy The nudge text. * @param string $control_name The slug prefix of the nudge. */ public function __construct( $cta_url, $nudge_copy, $control_name = 'custom_css' ) { - $this->cta_url = $cta_url; - $this->nudge_copy = $nudge_copy; - $this->control_name = $control_name; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\CSS_Customizer_Nudge::__construct' ); + $this->css_customizer_nudge_wrapper = new Masterbar_CSS_Customizer_Nudge( $cta_url, $nudge_copy, $control_name ); } /** * Register the assets required for the CSS nudge page from the Customizer. + * + * @deprecated $$next-version$$ */ public function customize_controls_enqueue_scripts_nudge() { - \wp_enqueue_script( - 'additional-css-js', - plugins_url( 'js/additional-css.js', __FILE__ ), - array(), - JETPACK__VERSION, - true - ); - \wp_enqueue_style( - 'additional-css', - plugins_url( 'css/additional-css.css', __FILE__ ), - array(), - JETPACK__VERSION - ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\CSS_Customizer_Nudge::customize_controls_enqueue_scripts_nudge' ); + $this->css_customizer_nudge_wrapper->customize_controls_enqueue_scripts_nudge(); } /** * Register the CSS nudge in the Customizer. * + * @deprecated $$next-version$$ + * * @param \WP_Customize_Manager $wp_customize The customize manager. */ public function customize_register_nudge( \WP_Customize_Manager $wp_customize ) { - // Show a nudge in place of the normal CSS section. - \add_action( 'customize_controls_enqueue_scripts', array( $this, 'customize_controls_enqueue_scripts_nudge' ) ); - - $wp_customize->add_setting( - $this->control_name . '[dummy_setting]', - array( - 'type' => $this->control_name . '_dummy_setting', - 'default' => '', - 'transport' => 'refresh', - ) - ); - - $wp_customize->add_section( $this->create_css_nudge_section( $wp_customize ) ); - - $wp_customize->add_control( $this->create_css_nudge_control( $wp_customize ) ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\CSS_Customizer_Nudge::customize_register_nudge' ); + $this->css_customizer_nudge_wrapper->customize_register_nudge( $wp_customize ); } /** * Create a nudge control object. * + * @deprecated $$next-version$$ + * * @param \WP_Customize_Manager $wp_customize The Core Customize Manager. * - * @return CSS_Nudge_Customize_Control + * @return \Automattic\Jetpack\Masterbar\CSS_Nudge_Customize_Control */ public function create_css_nudge_control( \WP_Customize_Manager $wp_customize ) { - return new CSS_Nudge_Customize_Control( - $wp_customize, - $this->control_name . '_control', - array( - 'cta_url' => $this->cta_url, - 'nudge_copy' => $this->nudge_copy, - 'label' => __( 'Custom CSS', 'jetpack' ), - 'section' => $this->control_name, - 'settings' => $this->control_name . '[dummy_setting]', - ) - ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\CSS_Customizer_Nudge::create_css_nudge_control' ); + return $this->css_customizer_nudge_wrapper->create_css_nudge_control( $wp_customize ); } /** * Create the nudge section. * + * @deprecated $$next-version$$ + * * @param \WP_Customize_Manager $wp_customize The core Customize Manager. * * @return \WP_Customize_Section */ public function create_css_nudge_section( \WP_Customize_Manager $wp_customize ) { - return new \WP_Customize_Section( - $wp_customize, - $this->control_name, - array( - 'title' => __( 'Additional CSS', 'jetpack' ), - 'priority' => 200, - ) - ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\CSS_Customizer_Nudge::create_css_nudge_section' ); + return $this->css_customizer_nudge_wrapper->create_css_nudge_section( $wp_customize ); } } diff --git a/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-css-nudge-customize-control.php b/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-css-nudge-customize-control.php index 6955c43cfdac6..65a51b45edbb5 100644 --- a/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-css-nudge-customize-control.php +++ b/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-css-nudge-customize-control.php @@ -3,54 +3,28 @@ * CSS_Nudge_Customize_Control file. * CSS Nudge implementation for Atomic and WPCOM. * + * @deprecated $$next-version$$ Use Automattic\Jetpack\Masterbar\CSS_Nudge_Customize_Control instead. + * * @package Jetpack */ namespace Automattic\Jetpack\Dashboard_Customizations; +use Automattic\Jetpack\Masterbar\CSS_Nudge_Customize_Control as Masterbar_CSS_Nudge_Customize_Control; + /** * Class CSS_Nudge_Customize_Control * * @package Automattic\Jetpack\Dashboard_Customizations */ -class CSS_Nudge_Customize_Control extends \WP_Customize_Control { - - /** - * The type of the nudge. - * - * @var string - */ - public $type = 'cssNudge'; - - /** - * The Call to Action URL. - * - * @var string - */ - public $cta_url; - - /** - * The nudge text displayed. - * - * @var string - */ - public $nudge_copy; - +class CSS_Nudge_Customize_Control extends Masterbar_CSS_Nudge_Customize_Control { /** * Render the nudge on the page. + * + * @deprecated $$next-version$$ */ public function render_content() { - $cta_url = $this->cta_url; - $nudge_copy = $this->nudge_copy; - $nudge_button_copy = __( 'Upgrade now', 'jetpack' ); - - echo '
-

- ' . wp_kses( $nudge_copy, array( 'br' => array() ) ) . ' -

-
- -
-
'; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\CSS_Nudge_Customize_Control::render_content' ); + parent::render_content(); } } diff --git a/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-wpcom-additional-css-manager.php b/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-wpcom-additional-css-manager.php index a338cfff68b9f..edf5645a6dda8 100644 --- a/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-wpcom-additional-css-manager.php +++ b/projects/plugins/jetpack/modules/masterbar/nudges/additional-css/class-wpcom-additional-css-manager.php @@ -4,11 +4,15 @@ * * Is responsible with registering the Additional CSS section in WPCOM. * + * @deprecated $$next-version$$ Use Automattic\Jetpack\Masterbar\WPCOM_Additional_CSS_Manager instead. + * * @package Jetpack */ namespace Automattic\Jetpack\Dashboard_Customizations; +use Automattic\Jetpack\Masterbar\WPCOM_Additional_CSS_Manager as Masterbar_WPCOM_Additional_CSS_Manager; + /** * Class WPCOM_Disable_Additional_CSS * @@ -17,45 +21,34 @@ class WPCOM_Additional_CSS_Manager { /** - * The site domain. + * Instance of \Automattic\Jetpack\Masterbar\WPCOM_Additional_CSS_Manager + * Used for deprecation purposes. * - * @var string + * @var \Automattic\Jetpack\Masterbar\WPCOM_Additional_CSS_Manager */ - private $domain; + private $wpcom_additional_css_wrapper; /** * WPCOM_Additional_CSS_Manager constructor. * + * @deprecated $$next-version$$ + * * @param string $domain the Site domain. */ public function __construct( $domain ) { - $this->domain = $domain; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPCOM_Additional_CSS_Manager::__construct' ); + $this->wpcom_additional_css_wrapper = new Masterbar_WPCOM_Additional_CSS_Manager( $domain ); } /** * Register the Additional CSS nudge. * + * @deprecated $$next-version$$ + * * @param \WP_Customize_Manager $wp_customize_manager The core customize manager. */ public function register_nudge( \WP_Customize_Manager $wp_customize_manager ) { - $nudge_url = $this->get_nudge_url(); - $nudge_text = __( 'Purchase the Explorer plan to
activate CSS customization', 'jetpack' ); - - $nudge = new CSS_Customizer_Nudge( - $nudge_url, - $nudge_text, - 'jetpack_custom_css' - ); - - $nudge->customize_register_nudge( $wp_customize_manager ); - } - - /** - * Get the nudge URL in WPCOM. - * - * @return string - */ - private function get_nudge_url() { - return '/checkout/' . $this->domain . '/premium'; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPCOM_Additional_CSS_Manager::register_nudge' ); + $this->wpcom_additional_css_wrapper->register_nudge( $wp_customize_manager ); } } diff --git a/projects/plugins/jetpack/modules/masterbar/nudges/bootstrap.php b/projects/plugins/jetpack/modules/masterbar/nudges/bootstrap.php index 1e4d17f46b4e4..5d9a11ba795c2 100644 --- a/projects/plugins/jetpack/modules/masterbar/nudges/bootstrap.php +++ b/projects/plugins/jetpack/modules/masterbar/nudges/bootstrap.php @@ -2,20 +2,29 @@ /** * Bootstrap file for the nudges. * + * @deprecated $$next-version$$ + * * @package Jetpack + * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. */ namespace Automattic\Jetpack\Dashboard_Customizations; +_deprecated_file( __FILE__, 'jetpack-$$next-version$$' ); + use Automattic\Jetpack\Status; use Automattic\Jetpack\Status\Host; /** * The WP_Customize_Control core class is loaded only on customize_register. * + * @deprecated $$next-version$$ + * * @param \WP_Customize_Manager $customize_manager Core customize manager. */ function register_css_nudge_control( \WP_Customize_Manager $customize_manager ) { + _deprecated_function( __FUNCTION__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\register_css_nudge_control' ); require_once __DIR__ . '/additional-css/class-css-nudge-customize-control.php'; require_once __DIR__ . '/additional-css/class-css-customizer-nudge.php'; @@ -40,9 +49,11 @@ function register_css_nudge_control( \WP_Customize_Manager $customize_manager ) * Load the bootstrap on init action. * * We need to load on init because otherwise the filter will not be set to true in WPCOM (since the add_filter is set on init). + * + * @deprecated $$next-version$$ */ function load_bootstrap_on_init() { - + _deprecated_function( __FUNCTION__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\load_bootstrap_on_init' ); /** * Disable Additional CSS section from Customizer in WPCOM and Atomic and replace it with a nudge. * diff --git a/projects/plugins/jetpack/modules/masterbar/profile-edit/bootstrap.php b/projects/plugins/jetpack/modules/masterbar/profile-edit/bootstrap.php index acc7f3369fd7d..e3bddd748fe34 100644 --- a/projects/plugins/jetpack/modules/masterbar/profile-edit/bootstrap.php +++ b/projects/plugins/jetpack/modules/masterbar/profile-edit/bootstrap.php @@ -2,20 +2,26 @@ /** * Bootstrap the WP.com User profile edit restriction. * + * @deprecated $$next-version$$ + * * @package automattic\jetpack + * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. */ namespace Automattic\Jetpack\Dashboard_Customizations; -use Automattic\Jetpack\Connection\Manager as Connection_Manager; +_deprecated_file( __FILE__, 'jetpack-$$next-version$$' ); -require_once __DIR__ . '/profile-edit.php'; -require_once __DIR__ . '/class-wpcom-user-profile-fields-revert.php'; +use Automattic\Jetpack\Connection\Manager as Connection_Manager; /** * Prevent WP.com user profile fields (first_name, last_name, display_name, description) to be updated. + * + * @deprecated $$next-version$$ */ function load_the_user_profile_info_revert() { + _deprecated_function( __FUNCTION__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\load_the_user_profile_info_revert' ); new WPCOM_User_Profile_Fields_Revert( new Connection_Manager( 'jetpack' ) ); } diff --git a/projects/plugins/jetpack/modules/masterbar/profile-edit/class-wpcom-user-profile-fields-revert.php b/projects/plugins/jetpack/modules/masterbar/profile-edit/class-wpcom-user-profile-fields-revert.php index 3beffd7bf97b0..66ed3a1899028 100644 --- a/projects/plugins/jetpack/modules/masterbar/profile-edit/class-wpcom-user-profile-fields-revert.php +++ b/projects/plugins/jetpack/modules/masterbar/profile-edit/class-wpcom-user-profile-fields-revert.php @@ -2,12 +2,15 @@ /** * Manage User profile fields. * + * @deprecated $$next-version$$ Use Automattic\Jetpack\Masterbar\WPCOM_User_Profile_Fields_Revert instead. + * * @package automattic/jetpack */ namespace Automattic\Jetpack\Dashboard_Customizations; use Automattic\Jetpack\Connection\Manager as Connection_Manager; +use Automattic\Jetpack\Masterbar\WPCOM_User_Profile_Fields_Revert as Masterbar_WPCOM_User_Profile_Fields_Revert; /** * Responsible with preventing the back-end default implementation to save the fields that are managed on WP.com profiles. @@ -17,35 +20,30 @@ class WPCOM_User_Profile_Fields_Revert { /** - * Jetpack connection manager object. + * Instance of \Automattic\Jetpack\Masterbar\WPCOM_User_Profile_Fields_Revert + * Used for deprecation purposes. * - * @var Connection_Manager + * @var \Automattic\Jetpack\Masterbar\WPCOM_User_Profile_Fields_Revert */ - private $connection_manager; + private $wpcom_user_profile_fields_revert_wrapper; /** * Profile_Edit_Filter_Fields constructor. * + * @deprecated $$next-version$$ + * * @param Connection_Manager $connection_manager The connection manager. */ public function __construct( Connection_Manager $connection_manager ) { - $this->connection_manager = $connection_manager; - - \add_filter( 'wp_pre_insert_user_data', array( $this, 'revert_user_data_on_wp_admin_profile_update' ), 10, 3 ); - \add_filter( 'insert_user_meta', array( $this, 'revert_user_meta_on_wp_admin_profile_change' ), 10, 3 ); - - /** - * Core sends two E-mail notifications that have to be disabled: - * - To the existing e-mail address - * - To the new email address - */ - \add_filter( 'send_email_change_email', array( $this, 'disable_send_email_change_email' ), 10, 3 ); - \add_action( 'personal_options_update', array( $this, 'disable_email_notification' ), 1, 1 ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPCOM_User_Profile_Fields_Revert::__construct' ); + $this->wpcom_user_profile_fields_revert_wrapper = new Masterbar_WPCOM_User_Profile_Fields_Revert( $connection_manager ); } /** * Filter the built-in user profile fields. * + * @deprecated $$next-version$$ + * * @param array $data { * Values and keys for the user. * @@ -65,36 +63,15 @@ public function __construct( Connection_Manager $connection_manager ) { * @return array */ public function revert_user_data_on_wp_admin_profile_update( $data, $update, $id ) { - - // bail if the id is null, meaning that this was triggered in the context of user create. - // bail if the user is not connected (e.g. non-WP.com users or disconnected users). - if ( ! $update || null === $id || ! $this->connection_manager->is_user_connected( $id ) ) { - return $data; - } - - /** - * Revert the data in the form submission with the data from the database. - */ - $user = \get_userdata( $id ); - - /** - * E-mail has a different flow for changing it's value. It stores it in an option until the user confirms it via e-mail. - * Based on this, it displays in the UI a section mentioning the e-mail pending change. - * We hide the entire section, but we should also clean it up just in case. - */ - \delete_user_meta( $id, '_new_email' ); - - $data['user_email'] = $user->user_email; - $data['user_url'] = $user->user_url; - $data['user_nicename'] = $user->user_nicename; - $data['display_name'] = $user->display_name; - - return $data; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPCOM_User_Profile_Fields_Revert::revert_user_data_on_wp_admin_profile_update' ); + return $this->wpcom_user_profile_fields_revert_wrapper->revert_user_data_on_wp_admin_profile_update( $data, $update, $id ); } /** * Revert the first_name, last_name and description since this is managed by WP.com. * + * @deprecated $$next-version$$ + * * @param array $meta { * Default meta values and keys for the user. * @@ -118,37 +95,21 @@ public function revert_user_data_on_wp_admin_profile_update( $data, $update, $id * @return array */ public function revert_user_meta_on_wp_admin_profile_change( $meta, $user, $update ) { - - // bail if not in update context. - if ( ! $update || ! $this->connection_manager->is_user_connected( $user->ID ) ) { - return $meta; - } - - /** - * Revert the data in the form submission with the data from the database. - */ - $database_user = \get_userdata( $user->ID ); - - $meta['first_name'] = $database_user->first_name; - $meta['last_name'] = $database_user->last_name; - $meta['description'] = $database_user->description; - $meta['nickname'] = $database_user->nickname; - - return $meta; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPCOM_User_Profile_Fields_Revert::revert_user_meta_on_wp_admin_profile_change' ); + return $this->wpcom_user_profile_fields_revert_wrapper->revert_user_meta_on_wp_admin_profile_change( $meta, $user, $update ); } /** * Disable the e-mail notification. * + * @deprecated $$next-version$$ + * * @param bool $send Whether to send or not the email. * @param array $user User data. */ public function disable_send_email_change_email( $send, $user ) { - if ( ! isset( $user['ID'] ) || ! $this->connection_manager->is_user_connected( $user['ID'] ) ) { - return $send; - } - - return false; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPCOM_User_Profile_Fields_Revert::disable_send_email_change_email' ); + return $this->wpcom_user_profile_fields_revert_wrapper->disable_send_email_change_email( $send, $user ); } /** @@ -156,14 +117,12 @@ public function disable_send_email_change_email( $send, $user ) { * * We need this because WP.org uses a custom flow for E-mail changes. * + * @deprecated $$next-version$$ + * * @param int $user_id The id of the user that's updated. */ public function disable_email_notification( $user_id ) { - // Don't remove the notification for non-WP.com connected users. - if ( ! $this->connection_manager->is_user_connected( $user_id ) ) { - return; - } - - \remove_action( 'personal_options_update', 'send_confirmation_on_profile_email' ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\WPCOM_User_Profile_Fields_Revert::disable_email_notification' ); + $this->wpcom_user_profile_fields_revert_wrapper->disable_email_notification( $user_id ); } } diff --git a/projects/plugins/jetpack/modules/masterbar/profile-edit/profile-edit.php b/projects/plugins/jetpack/modules/masterbar/profile-edit/profile-edit.php index 0e9e8c0cb7192..8e8786497d225 100644 --- a/projects/plugins/jetpack/modules/masterbar/profile-edit/profile-edit.php +++ b/projects/plugins/jetpack/modules/masterbar/profile-edit/profile-edit.php @@ -5,61 +5,18 @@ * @package Jetpack */ -use Automattic\Jetpack\Connection\Manager as Connection_Manager; +use Automattic\Jetpack\Masterbar; /** * Hides profile fields for WordPress.com connected users. * + * @deprecated $$next-version$$ + * * @param WP_User $user The current WP_User object. */ function jetpack_masterbar_hide_profile_fields( $user ) { - $connection_manager = new Connection_Manager( 'jetpack' ); - if ( ! $connection_manager->is_user_connected( $user->ID ) ) { - // If this is a local user, show the default UX. - return; - } - $wp_kses_rule = array( - 'a' => array( - 'href' => array(), - 'rel' => array(), - 'target' => array(), - ), - ); - // Since there is no hook for altering profile fields, we will use CSS and JS. - $name_info_wpcom_link_message = sprintf( - /* translators: 1 link */ - __( 'WordPress.com users can change their profile’s basic details ( i.e., First Name, Last Name, Display Name, About ) in WordPress.com Profile settings.', 'jetpack' ), - 'https://wordpress.com/me' - ); - $contact_info_wpcom_link_message = sprintf( - /* translators: 1 link */ - __( 'WordPress.com users can change their profile’s email & website address in WordPress.com Account settings.', 'jetpack' ), - 'https://wordpress.com/me/account' - ); - ?> - - posts_page_id = '' === $posts_page_id ? null : (int) $posts_page_id; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Posts_List_Page_Notification::__construct' ); + $this->post_list_page_notification_wrapper = new Masterbar_Posts_List_Page_Notification( $posts_page_id, $show_on_front, $page_on_front ); } /** * Add in all hooks. + * + * @deprecated $$next-version$$ */ public function init_actions() { - \add_filter( 'map_meta_cap', array( $this, 'disable_posts_page' ), 10, 4 ); - \add_filter( 'post_class', array( $this, 'add_posts_page_css_class' ), 10, 3 ); - \add_action( 'admin_print_footer_scripts-edit.php', array( $this, 'add_notification_icon' ) ); - \add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_css' ) ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Posts_List_Page_Notification::init_actions' ); + $this->post_list_page_notification_wrapper->init_actions(); } /** * Creates instance. * - * @return Posts_List_Page_Notification + * @deprecated $$next-version$$ + * + * @return \Automattic\Jetpack\Masterbar\Posts_List_Page_Notification */ public static function init() { - if ( self::$instance === null ) { - self::$instance = new self( \get_option( 'page_for_posts' ), \get_option( 'show_on_front' ), \get_option( 'page_on_front' ) ); - } - - return self::$instance; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Posts_List_Page_Notification::init' ); + return Masterbar_Posts_List_Page_Notification::init(); } /** * Disable editing and deleting for the page that is configured as a Posts Page. * + * @deprecated $$next-version$$ + * * @param array $caps Array of capabilities. * @param string $cap The current capability. * @param string $user_id The user id. @@ -84,61 +75,44 @@ public static function init() { * @return array */ public function disable_posts_page( $caps, $cap, $user_id, $args ) { - if ( 'edit_post' !== $cap && 'delete_post' !== $cap ) { - return $caps; - } - - if ( isset( $args[0] ) && $this->posts_page_id === $args[0] ) { - $caps[] = 'do_not_allow'; - } - - return $caps; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Posts_List_Page_Notification::disable_posts_page' ); + return $this->post_list_page_notification_wrapper->disable_posts_page( $caps, $cap, $user_id, $args ); } /** * Load the CSS for the WP Posts List * + * @deprecated $$next-version$$ + * * We would probably need to move this elsewhere when new features are introduced to wp-posts-list. */ public function enqueue_css() { - \wp_enqueue_style( 'wp-posts-list', plugins_url( 'wp-posts-list.css', __FILE__ ), array(), JETPACK__VERSION ); + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Posts_List_Page_Notification::enqueue_css' ); + $this->post_list_page_notification_wrapper->enqueue_css(); } /** * Adds a CSS class on the page configured as a Posts Page. * + * @deprecated $$next-version$$ + * * @param array $classes A list of CSS classes. * @param string $class A CSS class. * @param string $post_id The current post id. * @return array */ public function add_posts_page_css_class( $classes, $class, $post_id ) { - if ( $this->posts_page_id !== $post_id ) { - return $classes; - } - - $this->is_page_in_list = true; - - $classes[] = 'posts-page'; - - return $classes; + _deprecated_function( __METHOD__, 'jetpack-$$next-version$$', 'Automattic\\Jetpack\\Masterbar\\Posts_List_Page_Notification::add_posts_page_css_class' ); + return $this->post_list_page_notification_wrapper->add_posts_page_css_class( $classes, $class, $post_id ); } /** * Add a info icon on the Posts Page letting the user know why they cannot delete and remove the page. + * + * @deprecated $$next-version$$ */ public function add_notification_icon() { - // No need to add the JS since the site is not configured with a Posts Page or the current listview doesn't contain the page. - if ( null === $this->posts_page_id || ! $this->is_page_in_list ) { - return; - } - - $text_notice = __( 'The content of your latest posts page is automatically generated and cannot be edited.', 'jetpack' ); - ?> - - post_list_page_notification_wrapper->add_notification_icon(); } } diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-admin-color-schemes.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-admin-color-schemes.php index e56dad5959cd5..5f430b88acfbd 100644 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-admin-color-schemes.php +++ b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-admin-color-schemes.php @@ -2,13 +2,14 @@ /** * Tests for Admin_Color_Schemes class. * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. + * * @package automattic/jetpack */ use Automattic\Jetpack\Dashboard_Customizations\Admin_Color_Schemes; use WpOrg\Requests\Requests; -require_once JETPACK__PLUGIN_DIR . 'tests/php/lib/class-wp-test-jetpack-rest-testcase.php'; require_once JETPACK__PLUGIN_DIR . 'modules/masterbar/admin-color-schemes/class-admin-color-schemes.php'; /** @@ -16,7 +17,7 @@ * * @coversDefaultClass Automattic\Jetpack\Dashboard_Customizations\Admin_Color_Schemes */ -class Test_Admin_Color_Schemes extends WP_Test_Jetpack_REST_Testcase { +class Test_Admin_Color_Schemes extends WP_UnitTestCase { /** * Mock user ID. @@ -25,6 +26,13 @@ class Test_Admin_Color_Schemes extends WP_Test_Jetpack_REST_Testcase { */ private static $user_id = 0; + /** + * REST Server object. + * + * @var WP_REST_Server + */ + private $server; + /** * Create shared database fixtures. * @@ -38,13 +46,22 @@ public static function wpSetUpBeforeClass( $factory ) { * Set up each test. */ public function set_up() { + parent::set_up(); + + global $wp_rest_server; + + $wp_rest_server = new WP_REST_Server(); + $this->server = $wp_rest_server; + new Admin_Color_Schemes(); - parent::set_up(); + do_action( 'rest_api_init' ); } /** * Tests the schema response for OPTIONS requests. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Color_Schemes::__construct */ public function test_schema_request() { $request = new WP_REST_Request( Requests::OPTIONS, '/wp/v2/users/' . static::$user_id ); @@ -62,6 +79,8 @@ public function test_schema_request() { * Tests retrieving the color scheme setting for a user. * * @covers ::register_admin_color_meta + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Color_Schemes::__construct */ public function test_get_color_scheme() { wp_set_current_user( static::$user_id ); @@ -79,6 +98,8 @@ public function test_get_color_scheme() { * Tests updating the color scheme setting for a user. * * @covers ::register_admin_color_meta + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Color_Schemes::__construct */ public function test_update_color_scheme() { wp_set_current_user( static::$user_id ); @@ -109,7 +130,9 @@ public function test_update_color_scheme() { ) ); $response = $this->server->dispatch( $request ); + $data = $response->get_data(); - $this->assertErrorResponse( 'rest_cannot_edit', $response, WP_Http::FORBIDDEN ); + $this->assertSame( WP_Http::FORBIDDEN, $response->get_status() ); + $this->assertSame( 'rest_cannot_edit', $data['code'] ); } } diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-admin-menu.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-admin-menu.php index a8c11661df9f2..920387587b4e3 100644 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-admin-menu.php +++ b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-admin-menu.php @@ -2,11 +2,12 @@ /** * Tests for Admin_Menu class. * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. + * * @package automattic/jetpack */ use Automattic\Jetpack\Dashboard_Customizations\Admin_Menu; -use Automattic\Jetpack\Dashboard_Customizations\Base_Admin_Menu; use Automattic\Jetpack\Status; require_once JETPACK__PLUGIN_DIR . 'modules/masterbar/admin-menu/class-admin-menu.php'; @@ -73,7 +74,11 @@ public function set_up() { parent::set_up(); global $menu, $submenu; + $this->setExpectedDeprecated( 'Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::__construct' ); // Initialize in setUp so it registers hooks for every test. + $instances = new \ReflectionProperty( 'Automattic\Jetpack\Dashboard_Customizations\Admin_Menu', 'instances' ); + $instances->setAccessible( true ); + $instances->setValue( null, null ); static::$admin_menu = Admin_Menu::get_instance(); $menu = static::$menu_data; @@ -86,6 +91,26 @@ public function set_up() { * Test_Admin_Menu. * * @covers ::reregister_menu_items + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::reregister_menu_items + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_stats_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_upgrades_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_posts_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::get_preferred_view + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_media_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_page_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_testimonials_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_custom_post_type_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_portfolio_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_comments_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_appearance_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_plugins_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_users_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_tools_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_options_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_jetpack_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::create_jetpack_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::should_disable_links_manager */ public function test_admin_menu_output() { global $menu, $submenu; @@ -101,6 +126,8 @@ public function test_admin_menu_output() { * Tests get_preferred_view * * @covers ::get_preferred_view + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::get_preferred_view */ public function test_get_preferred_view() { static::$admin_menu->set_preferred_view( 'users.php', 'unknown' ); @@ -113,6 +140,9 @@ public function test_get_preferred_view() { * Tests add_my_home_menu * * @covers ::add_my_home_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_my_home_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::get_preferred_view */ public function test_add_my_home_menu() { global $menu, $submenu; @@ -134,13 +164,15 @@ public function test_add_my_home_menu() { static::$admin_menu->add_my_home_menu(); $this->assertSame( 'https://wordpress.com/home/' . static::$domain, $menu[2][2] ); - $this->assertSame( Base_Admin_Menu::HIDE_CSS_CLASS, $submenu['index.php'][0][4] ); + $this->assertSame( Admin_Menu::HIDE_CSS_CLASS, $submenu['index.php'][0][4] ); } /** * Tests add_stats_menu * * @covers ::add_stats_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_stats_menu */ public function test_add_stats_menu() { global $menu; @@ -161,6 +193,8 @@ public function test_add_stats_menu() { * Tests add_upgrades_menu * * @covers ::add_upgrades_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_upgrades_menu */ public function test_add_upgrades_menu() { global $submenu; @@ -176,6 +210,9 @@ public function test_add_upgrades_menu() { * Tests add_posts_menu * * @covers ::add_posts_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_posts_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::get_preferred_view */ public function test_add_posts_menu() { global $submenu; @@ -190,6 +227,9 @@ public function test_add_posts_menu() { * Tests add_media_menu * * @covers ::add_media_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_media_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::get_preferred_view */ public function test_add_media_menu() { global $menu, $submenu; @@ -204,6 +244,9 @@ public function test_add_media_menu() { * Tests add_page_menu * * @covers ::add_page_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_page_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::get_preferred_view */ public function test_add_page_menu() { global $submenu; @@ -218,6 +261,9 @@ public function test_add_page_menu() { * Tests add_custom_post_type_menu * * @covers ::add_custom_post_type_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_custom_post_type_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::get_preferred_view */ public function test_add_custom_post_type_menu() { global $menu, $submenu; @@ -251,6 +297,9 @@ public function test_add_custom_post_type_menu() { * Tests add_comments_menu * * @covers ::add_comments_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_comments_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::get_preferred_view */ public function test_add_comments_menu() { global $menu, $submenu; @@ -265,6 +314,9 @@ public function test_add_comments_menu() { * Tests add_appearance_menu * * @covers ::add_appearance_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_appearance_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::get_preferred_view */ public function test_add_appearance_menu() { global $submenu; @@ -278,6 +330,9 @@ public function test_add_appearance_menu() { * Tests add_plugins_menu * * @covers ::add_plugins_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_plugins_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::get_preferred_view */ public function test_add_plugins_menu() { global $menu, $submenu; @@ -292,6 +347,9 @@ public function test_add_plugins_menu() { * Tests add_users_menu * * @covers ::add_users_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_users_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::get_preferred_view */ public function test_add_users_menu() { global $menu, $submenu; @@ -346,6 +404,9 @@ public function test_add_users_menu() { * Tests add_tools_menu * * @covers ::add_tools_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_tools_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::get_preferred_view */ public function test_add_tools_menu() { global $submenu; @@ -362,6 +423,9 @@ public function test_add_tools_menu() { * Tests add_options_menu * * @covers ::add_options_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_options_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::get_preferred_view */ public function test_add_options_menu() { global $submenu; @@ -373,9 +437,12 @@ public function test_add_options_menu() { /** * Tests add_jetpack_menu - * § * * @covers ::add_jetpack_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_jetpack_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::create_jetpack_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::get_preferred_view */ public function test_add_jetpack_menu() { global $submenu; @@ -395,24 +462,24 @@ public function test_if_the_hidden_menus_are_at_the_end_of_submenu() { $submenu = array( 'options-general.php' => array( array( '', 'read', 'test-slug', '', '' ), - array( '', 'read', 'test-slug', '', Base_Admin_Menu::HIDE_CSS_CLASS ), + array( '', 'read', 'test-slug', '', Admin_Menu::HIDE_CSS_CLASS ), array( '', 'read', 'test-slug', '', '' ), array( '', 'read', 'test-slug', '' ), - array( '', 'read', 'test-slug', '', Base_Admin_Menu::HIDE_CSS_CLASS ), + array( '', 'read', 'test-slug', '', Admin_Menu::HIDE_CSS_CLASS ), array( '', 'read', 'test-slug', '', '' ), ), ); static::$admin_menu->sort_hidden_submenus(); - $this->assertNotEquals( Base_Admin_Menu::HIDE_CSS_CLASS, $submenu['options-general.php'][0][4] ); - $this->assertNotEquals( Base_Admin_Menu::HIDE_CSS_CLASS, $submenu['options-general.php'][2][4] ); + $this->assertNotEquals( Admin_Menu::HIDE_CSS_CLASS, $submenu['options-general.php'][0][4] ); + $this->assertNotEquals( Admin_Menu::HIDE_CSS_CLASS, $submenu['options-general.php'][2][4] ); $this->assertEquals( array( '', 'read', 'test-slug', '' ), $submenu['options-general.php'][3] ); - $this->assertNotEquals( Base_Admin_Menu::HIDE_CSS_CLASS, $submenu['options-general.php'][5][4] ); + $this->assertNotEquals( Admin_Menu::HIDE_CSS_CLASS, $submenu['options-general.php'][5][4] ); - $this->assertEquals( Base_Admin_Menu::HIDE_CSS_CLASS, $submenu['options-general.php'][6][4] ); - $this->assertEquals( Base_Admin_Menu::HIDE_CSS_CLASS, $submenu['options-general.php'][7][4] ); + $this->assertEquals( Admin_Menu::HIDE_CSS_CLASS, $submenu['options-general.php'][6][4] ); + $this->assertEquals( Admin_Menu::HIDE_CSS_CLASS, $submenu['options-general.php'][7][4] ); $submenu = self::$submenu_data; } @@ -459,11 +526,11 @@ public function hide_menu_based_on_submenu_provider() { '', '', '', - Base_Admin_Menu::HIDE_CSS_CLASS, + Admin_Menu::HIDE_CSS_CLASS, ), ), ), - array( '', 'non-existing-capability', 'test-slug', '', Base_Admin_Menu::HIDE_CSS_CLASS ), + array( '', 'non-existing-capability', 'test-slug', '', Admin_Menu::HIDE_CSS_CLASS ), ), array( array( @@ -476,11 +543,11 @@ public function hide_menu_based_on_submenu_provider() { '', 'test-slug', '', - Base_Admin_Menu::HIDE_CSS_CLASS, + Admin_Menu::HIDE_CSS_CLASS, ), ), ), - array( '', 'read', 'test-slug', '', Base_Admin_Menu::HIDE_CSS_CLASS ), + array( '', 'read', 'test-slug', '', Admin_Menu::HIDE_CSS_CLASS ), ), ); } @@ -489,6 +556,8 @@ public function hide_menu_based_on_submenu_provider() { * Tests test_add_woocommerce_installation_menu * * @covers ::add_woocommerce_installation_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Admin_Menu::add_woocommerce_installation_menu */ public function test_add_woocommerce_installation_menu() { global $menu; diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-atomic-additional-css-manager.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-atomic-additional-css-manager.php index 52754aaa90d35..3ad4c1b5ba56e 100644 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-atomic-additional-css-manager.php +++ b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-atomic-additional-css-manager.php @@ -3,6 +3,8 @@ * Test_WPORG_Additional_Css_Manager file. * Test WPORG_Additional_CSS_Manager. * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. + * * @package Jetpack */ @@ -40,6 +42,9 @@ public function set_up() { /** * Check if the nudge contains the proper url and message copy. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Additional_CSS_Manager::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Additional_CSS_Manager::register_nudge */ public function test_it_generates_proper_url_and_nudge() { $manager = new Atomic_Additional_CSS_Manager( 'foo.com' ); diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-atomic-admin-menu.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-atomic-admin-menu.php index b07ee134ebdbd..2f1b0bd741b33 100644 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-atomic-admin-menu.php +++ b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-atomic-admin-menu.php @@ -2,6 +2,8 @@ /** * Tests for Atomic_Admin_Menu class. * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. + * * @package automattic/jetpack */ @@ -79,7 +81,11 @@ public function set_up() { parent::set_up(); global $menu, $submenu; + $this->setExpectedDeprecated( 'Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::__construct' ); // Initialize in setUp so it registers hooks for every test. + $instances = new \ReflectionProperty( 'Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu', 'instances' ); + $instances->setAccessible( true ); + $instances->setValue( null, null ); static::$admin_menu = Atomic_Admin_Menu::get_instance(); $menu = static::$menu_data; @@ -92,6 +98,8 @@ public function set_up() { * Tests add_browse_sites_link. * * @covers ::add_browse_sites_link + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::add_browse_sites_link */ public function test_add_browse_sites_link() { global $menu; @@ -105,6 +113,8 @@ public function test_add_browse_sites_link() { * Tests add_browse_sites_link. * * @covers ::add_browse_sites_link + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::add_browse_sites_link */ public function test_add_browse_sites_link_multisite() { if ( ! is_multisite() ) { @@ -140,6 +150,8 @@ public function test_add_browse_sites_link_multisite() { * Tests add_new_site_link. * * @covers ::add_new_site_link + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::add_new_site_link */ public function test_add_new_site_link() { global $menu; @@ -167,39 +179,25 @@ public function test_add_new_site_link() { * Tests add_site_card_menu * * @covers ::add_site_card_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::add_site_card_menu */ public function test_add_site_card_menu() { - global $menu; - if ( ! function_exists( 'site_is_private' ) ) { function site_is_private() { // phpcs:ignore return false; } } static::$admin_menu->add_site_card_menu(); - - $home_url = home_url(); - $site_card_menu_item = array( - // phpcs:ignore Squiz.Strings.DoubleQuoteUsage.NotRequired - ' -
-
' . get_option( 'blogname' ) . '
-
' . static::$domain . "
\n\t\n
", - 'read', - $home_url, - 'site-card', - 'menu-top toplevel_page_' . $home_url, - 'toplevel_page_' . $home_url, - plugins_url( 'modules/masterbar/admin-menu/globe-icon.svg', JETPACK__PLUGIN_FILE ), - ); - - $this->assertEquals( $menu[1], $site_card_menu_item ); } /** * Tests set_site_card_menu_class * * @covers ::set_site_card_menu_class + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::add_site_card_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::set_site_card_menu_class */ public function test_set_site_card_menu_class() { global $menu; @@ -250,6 +248,8 @@ public function custom_site_icon_url() { * Tests get_preferred_view * * @covers ::get_preferred_view + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::get_preferred_view */ public function test_get_preferred_view() { $this->assertSame( 'classic', static::$admin_menu->get_preferred_view( 'export.php' ) ); @@ -259,6 +259,8 @@ public function test_get_preferred_view() { * Tests add_upgrades_menu * * @covers ::add_upgrades_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::add_upgrades_menu */ public function test_add_upgrades_menu() { global $submenu; @@ -294,6 +296,9 @@ public function test_add_my_mailboxes_menu() { * Tests add_options_menu * * @covers ::add_options_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::add_options_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::get_preferred_view */ public function test_add_options_menu() { global $submenu; @@ -306,6 +311,9 @@ public function test_add_options_menu() { * Tests add_users_menu * * @covers ::add_users_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::add_users_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::get_preferred_view */ public function test_add_users_menu() { global $submenu; @@ -322,6 +330,8 @@ public function test_add_users_menu() { * Tests remove_gutenberg_menu * * @covers ::remove_gutenberg_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::remove_gutenberg_menu */ public function test_remove_gutenberg_menu() { global $menu; @@ -342,6 +352,8 @@ public function test_add_plugins_menu() { $this->assertSame( 'plugin-install.php', $submenu['plugins.php'][10][2] ); if ( ! is_multisite() ) { + $this->setexpectedDeprecated( 'Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::add_plugins_menu' ); + $this->setexpectedDeprecated( 'Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::get_preferred_view' ); static::$admin_menu->add_plugins_menu(); // Make sure that initial menu item is hidden. @@ -357,6 +369,9 @@ public function test_add_plugins_menu() { * Tests add_tools_menu * * @covers ::add_tools_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::add_tools_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::get_preferred_view */ public function test_add_site_monitoring_menu() { global $submenu; @@ -371,6 +386,9 @@ public function test_add_site_monitoring_menu() { * Tests add_github_deployments_menu * * @covers ::add_tools_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::add_tools_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::get_preferred_view */ public function test_add_github_deployments_menu() { global $submenu; @@ -385,6 +403,9 @@ public function test_add_github_deployments_menu() { * Tests add_jetpack_scan_menu * * @covers ::add_jetpack_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::add_jetpack_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu::get_preferred_view */ public function test_add_jetpack_scan_submenu() { global $submenu; diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-base-admin-menu.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-base-admin-menu.php deleted file mode 100644 index 5507d3ce28016..0000000000000 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-base-admin-menu.php +++ /dev/null @@ -1,168 +0,0 @@ -user->create( array( 'role' => 'administrator' ) ); - static::$menu_data = get_menu_fixture(); - static::$submenu_data = get_submenu_fixture(); - } - - /** - * Set up data. - */ - public function set_up() { - parent::set_up(); - - $admin_menu = $this->get_concrete_menu_admin(); - - // Initialize in setUp so it registers hooks for every test. - static::$admin_menu = $admin_menu::get_instance(); - - wp_set_current_user( static::$user_id ); - } - - /** - * Test get_instance. - * - * @covers ::get_instance - * @covers ::__construct - */ - public function test_get_instance() { - - $admin_menu = $this->get_concrete_menu_admin(); - - $instance = $admin_menu::get_instance(); - - $this->assertInstanceOf( Base_Admin_Menu::class, $instance ); - $this->assertSame( $instance, static::$admin_menu ); - - $this->assertSame( 99998, has_action( 'admin_menu', array( $instance, 'reregister_menu_items' ) ) ); - $this->assertSame( 11, has_action( 'admin_enqueue_scripts', array( $instance, 'enqueue_scripts' ) ) ); - } - - /** - * Tests add_admin_menu_separator - * - * @covers ::add_admin_menu_separator - */ - public function test_add_admin_menu_separator() { - global $menu; - - // Start with a clean slate. - $temp_menu = $menu; - $menu = array(); - - static::$admin_menu->add_admin_menu_separator( 15 ); - static::$admin_menu->add_admin_menu_separator( 10, 'manage_options' ); - - $this->assertSame( 'manage_options', $menu[10][1] ); - $this->assertStringContainsString( 'separator-custom-', $menu[10][2] ); - $this->assertSame( 'read', $menu[15][1] ); - $this->assertStringContainsString( 'separator-custom-', $menu[15][2] ); - - // Restore filtered $menu. - $menu = $temp_menu; - } - - /** - * Tests preferred_view - * - * @covers ::set_preferred_view - * @covers ::get_preferred_views - * @covers ::get_preferred_view - */ - public function test_preferred_view() { - $this->assertSame( 'default', static::$admin_menu->get_preferred_view( 'test.php' ) ); - $this->assertSame( 'unknown', static::$admin_menu->get_preferred_view( 'test.php', false ) ); - - update_user_option( get_current_user_id(), 'jetpack_admin_menu_link_destination', true ); - $this->assertSame( 'classic', static::$admin_menu->get_preferred_view( 'test.php' ) ); - delete_user_option( get_current_user_id(), 'jetpack_admin_menu_link_destination' ); - - static::$admin_menu->set_preferred_view( 'test.php', 'classic' ); - $this->assertSame( 'classic', static::$admin_menu->get_preferred_view( 'test.php' ) ); - - static::$admin_menu->set_preferred_view( 'test.php', 'default' ); - $this->assertSame( 'default', static::$admin_menu->get_preferred_view( 'test.php', false ) ); - } - - /** - * Tests preferred_view - * - * @covers ::handle_preferred_view - */ - public function test_handle_preferred_view() { - // @see p9dueE-3LL-p2#comment-6669 - if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { - $this->markTestSkipped( 'Does not work on WP.com as handle_preferred_view() performs a redirect and then terminates the execution.' ); - } - - global $pagenow; - $pagenow = 'test.php'; - $_GET['preferred-view'] = 'classic'; - - $this->expectException( ExitException::class ); - - static::$admin_menu->handle_preferred_view(); - - $this->assertSame( 'classic', static::$admin_menu->get_preferred_view( 'test.php' ) ); - } - - /** - * Get an object of Base_Admin_Menu - * - * @return Base_Admin_Menu - */ - private function get_concrete_menu_admin() { - return $this->getMockBuilder( Base_Admin_Menu::class )->disableOriginalConstructor()->getMockForAbstractClass(); - } -} diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-css-customizer-nudge.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-css-customizer-nudge.php index be3fc7d016375..b328c41bf8456 100644 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-css-customizer-nudge.php +++ b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-css-customizer-nudge.php @@ -3,6 +3,8 @@ * Test_WPCOM_CSS_Customizer_Nudge file. * Test WPCOM_CSS_Customizer_Nudge. * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. + * * @package Jetpack */ @@ -12,8 +14,6 @@ require_once ABSPATH . WPINC . '/class-wp-customize-control.php'; require_once ABSPATH . WPINC . '/class-wp-customize-section.php'; -require_once JETPACK__PLUGIN_DIR . 'modules/masterbar/nudges/bootstrap.php'; - /** * Class Test_CSS_Customizer_Nudge */ @@ -25,6 +25,13 @@ class Test_CSS_Customizer_Nudge extends \WP_UnitTestCase { */ private $wp_customize; + /** + * File path for loading the required deprecated file. + * + * @var string + */ + private static $deprecated_file_path = JETPACK__PLUGIN_DIR . 'modules/masterbar/nudges/bootstrap.php'; + /** * Register a customizer manager. * @@ -33,15 +40,31 @@ class Test_CSS_Customizer_Nudge extends \WP_UnitTestCase { public function set_up() { parent::set_up(); + if ( ! in_array( self::$deprecated_file_path, get_included_files(), true ) ) { + $this->setExpectedDeprecated( self::$deprecated_file_path ); + $this->setExpectedDeprecated( 'Automattic\Jetpack\Dashboard_Customizations\load_bootstrap_on_init' ); + // phpcs:ignore WordPressVIPMinimum.Files.IncludingFile.NotAbsolutePath -- It's absolute in the class property definition. + require_once self::$deprecated_file_path; + } + + do_action( 'init' ); + $this->wp_customize = new \WP_Customize_Manager(); register_css_nudge_control( $this->wp_customize ); } /** * Check if the assets are registered. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\register_css_nudge_control + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\CSS_Customizer_Nudge::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\CSS_Customizer_Nudge::customize_register_nudge */ public function test_it_enqueues_the_assets() { - $nudge = new CSS_Customizer_Nudge( 'url', 'message' ); + $nudge = new CSS_Customizer_Nudge( 'url', 'message' ); + $reflection = new \ReflectionClass( $nudge ); + $wrapper = $reflection->getProperty( 'css_customizer_nudge_wrapper' ); + $wrapper->setAccessible( true ); $nudge->customize_register_nudge( $this->wp_customize ); @@ -50,7 +73,7 @@ public function test_it_enqueues_the_assets() { has_action( 'customize_controls_enqueue_scripts', array( - $nudge, + $wrapper->getValue( $nudge ), 'customize_controls_enqueue_scripts_nudge', ) ) @@ -59,6 +82,10 @@ public function test_it_enqueues_the_assets() { /** * Check if it creates the css nudge control. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\register_css_nudge_control + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\CSS_Customizer_Nudge::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\CSS_Customizer_Nudge::customize_register_nudge */ public function test_if_it_creates_a_css_nudge_control() { $nudge = new CSS_Customizer_Nudge( 'url', 'message' ); @@ -71,6 +98,10 @@ public function test_if_it_creates_a_css_nudge_control() { /** * Check if the url and message are passed correctly to the custom control object. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\register_css_nudge_control + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\CSS_Customizer_Nudge::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\CSS_Customizer_Nudge::customize_register_nudge */ public function test_if_the_url_and_message_are_passed_correctly() { $nudge = new CSS_Customizer_Nudge( 'url', 'message' ); diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-css-nudge-customize-control.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-css-nudge-customize-control.php index 73eb1767e774c..969d2124686a8 100644 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-css-nudge-customize-control.php +++ b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-css-nudge-customize-control.php @@ -3,6 +3,8 @@ * CSS_Nudge_Customize_Control file. * Test CSS_Nudge_Customize_Control. * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. + * * @package Jetpack */ @@ -11,15 +13,41 @@ require_once ABSPATH . WPINC . '/class-wp-customize-control.php'; require_once ABSPATH . WPINC . '/class-wp-customize-manager.php'; -require_once JETPACK__PLUGIN_DIR . 'modules/masterbar/nudges/bootstrap.php'; - /** * Class Test_CSS_Nudge_Customize_Control */ class Test_CSS_Nudge_Customize_Control extends \WP_UnitTestCase { + /** + * File path for loading the required deprecated file. + * + * @var string + */ + private static $deprecated_file_path = JETPACK__PLUGIN_DIR . 'modules/masterbar/nudges/bootstrap.php'; + + /** + * Runs before each test. + * + * @return void + */ + public function set_up() { + parent::set_up(); + + if ( ! in_array( self::$deprecated_file_path, get_included_files(), true ) ) { + $this->setExpectedDeprecated( self::$deprecated_file_path ); + $this->setExpectedDeprecated( 'Automattic\Jetpack\Dashboard_Customizations\load_bootstrap_on_init' ); + // phpcs:ignore WordPressVIPMinimum.Files.IncludingFile.NotAbsolutePath -- It's absolute in the class property definition. + require_once self::$deprecated_file_path; + } + + do_action( 'init' ); + } + /** * Check if the HTML for the nudge section is properly generated. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\register_css_nudge_control + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\CSS_Nudge_Customize_Control::render_content */ public function test_if_the_html_is_generated_properly() { $manager = new \WP_Customize_Manager(); diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-dashboard-switcher-tracking.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-dashboard-switcher-tracking.php index b5b5960d43dd0..ec9d16580c077 100644 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-dashboard-switcher-tracking.php +++ b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-dashboard-switcher-tracking.php @@ -2,6 +2,8 @@ /** * Test file for Dashboard_Switcher_Tracking * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. + * * @package automattic/jetpack */ @@ -49,6 +51,9 @@ public static function wpSetUpBeforeClass( $factory ) { /** * Check if an event is triggered for Jetpack. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Dashboard_Switcher_Tracking::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Dashboard_Switcher_Tracking::record_switch_event */ public function test_it_creates_event_for_jetpack() { $tracking = $this->createMock( Tracking::class ); @@ -80,6 +85,9 @@ public function test_it_creates_event_for_jetpack() { /** * Check if an event is triggered for WPCOM. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Dashboard_Switcher_Tracking::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Dashboard_Switcher_Tracking::record_switch_event */ public function test_it_creates_event_for_wpcom() { if ( ! static::$is_wpcom ) { diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-domain-only-admin-menu.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-domain-only-admin-menu.php index a9ef4b79e9d7c..2559171ba940b 100644 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-domain-only-admin-menu.php +++ b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-domain-only-admin-menu.php @@ -2,6 +2,8 @@ /** * Tests for Domain_Only_Admin_Menu class. * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. + * * @package automattic/jetpack */ @@ -64,7 +66,11 @@ public function set_up() { parent::set_up(); global $menu; + $this->setExpectedDeprecated( 'Automattic\Jetpack\Dashboard_Customizations\Domain_Only_Admin_Menu::__construct' ); // Initialize in setUp so it registers hooks for every test. + $instances = new \ReflectionProperty( 'Automattic\Jetpack\Dashboard_Customizations\Domain_Only_Admin_Menu', 'instances' ); + $instances->setAccessible( true ); + $instances->setValue( null, null ); static::$admin_menu = Domain_Only_Admin_Menu::get_instance(); $menu = static::$menu_data; @@ -76,11 +82,14 @@ public function set_up() { * Tests reregister_menu_items when email subscriptions don't exist. * * @covers ::reregister_menu_items + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Domain_Only_Admin_Menu::set_email_subscription_checker + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Domain_Only_Admin_Menu::reregister_menu_items */ public function test_reregister_menu_items_without_email_subscriptions() { global $menu; - $mock_email_checker = $this->getMockBuilder( 'WPCOM_Email_Subscription_Checker' )->setMethods( array( 'has_email' ) )->getMock(); + $mock_email_checker = $this->getMockBuilder( 'Automattic\Jetpack\Masterbar\WPCOM_Email_Subscription_Checker' )->setMethods( array( 'has_email' ) )->getMock(); $mock_email_checker->method( 'has_email' )->willReturn( false ); // always returns false static::$admin_menu->set_email_subscription_checker( $mock_email_checker ); @@ -97,11 +106,14 @@ public function test_reregister_menu_items_without_email_subscriptions() { * Tests reregister_menu_items with email subscriptions . * * @covers ::reregister_menu_items + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Domain_Only_Admin_Menu::set_email_subscription_checker + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Domain_Only_Admin_Menu::reregister_menu_items */ public function test_reregister_menu_items_with_email_subscriptions() { global $menu; - $mock_email_checker = $this->getMockBuilder( 'WPCOM_Email_Subscription_Checker' )->setMethods( array( 'has_email' ) )->getMock(); + $mock_email_checker = $this->getMockBuilder( 'Automattic\Jetpack\Masterbar\WPCOM_Email_Subscription_Checker' )->setMethods( array( 'has_email' ) )->getMock(); $mock_email_checker->method( 'has_email' )->willReturn( true ); // always returns true static::$admin_menu->set_email_subscription_checker( $mock_email_checker ); diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-jetpack-admin-menu.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-jetpack-admin-menu.php index 9cda1731d1380..1b0a0de466c27 100644 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-jetpack-admin-menu.php +++ b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-jetpack-admin-menu.php @@ -2,6 +2,8 @@ /** * Tests for Jetpack_Admin_Menu class. * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. + * * @package automattic/jetpack */ @@ -80,7 +82,11 @@ public function set_up() { parent::set_up(); global $menu, $submenu; + $this->setExpectedDeprecated( 'Automattic\Jetpack\Dashboard_Customizations\Jetpack_Admin_Menu::__construct' ); // Initialize in setUp so it registers hooks for every test. + $instances = new \ReflectionProperty( 'Automattic\Jetpack\Dashboard_Customizations\Jetpack_Admin_Menu', 'instances' ); + $instances->setAccessible( true ); + $instances->setValue( null, null ); static::$admin_menu = Jetpack_Admin_Menu::get_instance(); $menu = static::$menu_data; @@ -93,6 +99,9 @@ public function set_up() { * Tests add_jetpack_menu * * @covers ::add_jetpack_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Jetpack_Admin_Menu::add_jetpack_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Jetpack_Admin_Menu::get_preferred_view */ public function test_add_jetpack_menu() { global $submenu; @@ -105,6 +114,8 @@ public function test_add_jetpack_menu() { * Tests add_tools_menu * * @covers ::add_tools_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Jetpack_Admin_Menu::add_tools_menu */ public function test_add_tools_menu() { global $submenu; @@ -123,6 +134,8 @@ public function test_add_tools_menu() { * Tests add_wp_admin_menu * * @covers ::add_wp_admin_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Jetpack_Admin_Menu::add_wp_admin_menu */ public function test_add_wp_admin_menu() { global $menu; @@ -136,6 +149,8 @@ public function test_add_wp_admin_menu() { * Tests add_appearance_menu * * @covers ::add_appearance_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Jetpack_Admin_Menu::add_appearance_menu */ public function test_add_appearance_menu() { global $submenu; @@ -150,6 +165,8 @@ public function test_add_appearance_menu() { * Tests add_posts_menu * * @covers ::add_posts_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Jetpack_Admin_Menu::add_posts_menu */ public function test_add_posts_menu() { global $menu; @@ -163,6 +180,8 @@ public function test_add_posts_menu() { * Tests add_page_menu * * @covers ::add_page_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Jetpack_Admin_Menu::add_page_menu */ public function test_add_page_menu() { global $menu; @@ -176,6 +195,8 @@ public function test_add_page_menu() { * Tests add_users_menu * * @covers ::add_users_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Jetpack_Admin_Menu::add_users_menu */ public function test_add_users_menu() { global $menu; @@ -189,6 +210,8 @@ public function test_add_users_menu() { * Tests add_users_menu * * @covers ::add_feedback_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Jetpack_Admin_Menu::add_feedback_menu */ public function add_feedback_menu() { global $menu; @@ -202,6 +225,8 @@ public function add_feedback_menu() { * Tests add_plugins_menu * * @covers ::add_plugins_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Jetpack_Admin_Menu::add_plugins_menu */ public function test_add_plugins_menu() { global $menu; diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-masterbar.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-masterbar.php index e955dcd094431..09b713221a657 100644 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-masterbar.php +++ b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-masterbar.php @@ -2,6 +2,8 @@ /** * Tests for Masterbar class. * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. + * * @package automattic/jetpack */ @@ -68,6 +70,9 @@ public function tear_down() { * * @dataProvider wpcom_user_locale_switch_data_provider * @covers ::unload_non_default_textdomains_on_wpcom_user_locale_switch + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Masterbar::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Masterbar::unload_non_default_textdomains_on_wpcom_user_locale_switch */ public function test_unload_non_default_textdomains_on_wpcom_user_locale_switch( $stored_user_locale, @@ -85,7 +90,6 @@ public function test_unload_non_default_textdomains_on_wpcom_user_locale_switch( wp_get_current_user()->locale = $stored_user_locale; $masterbar = $this->getMockBuilder( Masterbar::class ) - ->disableOriginalConstructor() ->setMethodsExcept( array( 'unload_non_default_textdomains_on_wpcom_user_locale_switch' ) ) ->getMock(); $masterbar->unload_non_default_textdomains_on_wpcom_user_locale_switch( $detected_wpcom_locale ); diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-posts-list-page-notification.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-posts-list-page-notification.php index 4aeb528b27b69..fc9bf5f69632b 100644 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-posts-list-page-notification.php +++ b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-posts-list-page-notification.php @@ -2,6 +2,8 @@ /** * Tests for Posts_List_Page_Notification class. * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. + * * @package automattic/jetpack */ @@ -18,21 +20,30 @@ class Test_Posts_List_Page_Notification extends WP_UnitTestCase { /** * Check if the actions are attached. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Posts_List_Page_Notification::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Posts_List_Page_Notification::init_actions */ public function test_it_has_instance_loaded() { - $instance = new Posts_List_Page_Notification( '5', 'page', '4' ); + $instance = new Posts_List_Page_Notification( '5', 'page', '4' ); + $reflection = new \ReflectionClass( $instance ); + $wrapper = $reflection->getProperty( 'post_list_page_notification_wrapper' ); + $wrapper->setAccessible( true ); - $this->assertSame( 10, has_action( 'init', array( $instance, 'init_actions' ) ) ); + $this->assertSame( 10, has_action( 'init', array( $wrapper->getValue( $instance ), 'init_actions' ) ) ); $instance->init_actions(); - $this->assertSame( 10, has_action( 'map_meta_cap', array( $instance, 'disable_posts_page' ) ) ); - $this->assertSame( 10, has_action( 'post_class', array( $instance, 'add_posts_page_css_class' ) ) ); - $this->assertSame( 10, has_action( 'admin_print_footer_scripts-edit.php', array( $instance, 'add_notification_icon' ) ) ); + $this->assertSame( 10, has_action( 'map_meta_cap', array( $wrapper->getValue( $instance ), 'disable_posts_page' ) ) ); + $this->assertSame( 10, has_action( 'post_class', array( $wrapper->getValue( $instance ), 'add_posts_page_css_class' ) ) ); + $this->assertSame( 10, has_action( 'admin_print_footer_scripts-edit.php', array( $wrapper->getValue( $instance ), 'add_notification_icon' ) ) ); } /** * Check if it appends the CSS class. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Posts_List_Page_Notification::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Posts_List_Page_Notification::add_posts_page_css_class */ public function test_it_appends_css_class() { $instance = new Posts_List_Page_Notification( '5', 'page', '4' ); @@ -49,6 +60,9 @@ public function test_it_appends_css_class() { /** * Check if do_not_allow capability is added on Posts Page. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Posts_List_Page_Notification::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Posts_List_Page_Notification::disable_posts_page */ public function test_it_disables_posts_page() { $instance = new Posts_List_Page_Notification( '5', 'page', '' ); @@ -62,11 +76,16 @@ public function test_it_disables_posts_page() { /** * Check that the hooks are not loaded when the show_on_front option is not "page". + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Posts_List_Page_Notification::__construct */ public function test_it_is_not_loaded_when_show_on_front_option_is_not_page() { - $instance = new Posts_List_Page_Notification( '5', 'posts', '1' ); + $instance = new Posts_List_Page_Notification( '5', 'posts', '1' ); + $reflection = new \ReflectionClass( $instance ); + $wrapper = $reflection->getProperty( 'post_list_page_notification_wrapper' ); + $wrapper->setAccessible( true ); - $this->assertFalse( has_action( 'init', array( $instance, 'init_actions' ) ) ); + $this->assertFalse( has_action( 'init', array( $wrapper->getValue( $instance ), 'init_actions' ) ) ); } /** @@ -74,9 +93,15 @@ public function test_it_is_not_loaded_when_show_on_front_option_is_not_page() { * * Although in the WP-Admin interface, when the same page is selected in both dropdowns the posts page dropdown is reset, * internally WordPress will still store the page id in "page_for_posts" site_option. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\Posts_List_Page_Notification::__construct */ public function test_it_is_not_loaded_when_posts_page_id_and_home_page_id_are_the_same() { - $instance = new Posts_List_Page_Notification( '5', 'page', '5' ); - $this->assertFalse( has_action( 'init', array( $instance, 'init_actions' ) ) ); + $instance = new Posts_List_Page_Notification( '5', 'page', '5' ); + $reflection = new \ReflectionClass( $instance ); + $wrapper = $reflection->getProperty( 'post_list_page_notification_wrapper' ); + $wrapper->setAccessible( true ); + + $this->assertFalse( has_action( 'init', array( $wrapper->getValue( $instance ), 'init_actions' ) ) ); } } diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-wpcom-additional-css-manager.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-wpcom-additional-css-manager.php index d75e253121452..d8aa1b2804a2d 100644 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-wpcom-additional-css-manager.php +++ b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-wpcom-additional-css-manager.php @@ -3,6 +3,8 @@ * Test_WPCOM_Additional_Css_Manager file. * Test WPCOM_Additional_CSS_Manager. * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. + * * @package Jetpack */ @@ -41,6 +43,9 @@ public function set_up() { /** * Check if the manager constructs the proper url and copy message. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPCOM_Additional_CSS_Manager::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPCOM_Additional_CSS_Manager::register_nudge */ public function test_it_generates_proper_url_and_nudge() { $manager = new WPCOM_Additional_CSS_Manager( 'foo.com' ); diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-wpcom-admin-menu.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-wpcom-admin-menu.php index 2c9edc4f486e5..c438e2782b57d 100644 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-wpcom-admin-menu.php +++ b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-wpcom-admin-menu.php @@ -2,6 +2,8 @@ /** * Tests for WPcom_Admin_Menu class. * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. + * * @package automattic/jetpack */ @@ -98,6 +100,9 @@ public function set_up() { * Tests get_preferred_view * * @covers ::get_preferred_view + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::get_preferred_view */ public function test_get_preferred_view() { static::$admin_menu->set_preferred_view( 'themes.php', 'unknown' ); @@ -115,6 +120,8 @@ public function test_add_browse_sites_link() { if ( ! function_exists( 'add_user_to_blog' ) ) { $this->markTestSkipped( 'Only used on multisite' ); } + $this->setExpectedDeprecated( 'Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::get_current_user_blog_count' ); + $this->setExpectedDeprecated( 'Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::add_browse_sites_link' ); global $menu; // No output when user has just one site. @@ -145,6 +152,9 @@ public function test_add_browse_sites_link() { * Tests add_new_site_link. * * @covers ::add_new_site_link + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::add_new_site_link + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::get_current_user_blog_count */ public function test_add_new_site_link() { global $menu; @@ -167,6 +177,8 @@ public function test_add_new_site_link() { * Tests add_site_card_menu * * @covers ::add_site_card_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::add_site_card_menu */ public function test_add_site_card_menu() { global $menu; @@ -201,6 +213,9 @@ public function test_add_site_card_menu() { * Tests set_site_card_menu_class * * @covers ::set_site_card_menu_class + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::add_site_card_menu + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::set_site_card_menu_class */ public function test_set_site_card_menu_class() { global $menu; @@ -234,6 +249,8 @@ public function custom_site_icon_url() { * Tests add_upgrades_menu * * @covers ::add_upgrades_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::add_upgrades_menu */ public function test_add_upgrades_menu() { global $submenu; @@ -269,6 +286,9 @@ public function test_add_my_mailboxes_menu() { * Tests add_users_menu * * @covers ::add_users_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::get_preferred_view + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::add_users_menu */ public function test_add_users_menu() { global $submenu; @@ -284,6 +304,9 @@ public function test_add_users_menu() { * Tests add_options_menu * * @covers ::add_options_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::get_preferred_view + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::add_options_menu */ public function test_add_options_menu() { global $submenu; @@ -297,6 +320,8 @@ public function test_add_options_menu() { * Tests remove_gutenberg_menu * * @covers ::remove_gutenberg_menu + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPcom_Admin_Menu::remove_gutenberg_menu */ public function test_remove_gutenberg_menu() { global $menu; diff --git a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-wpcom-user-profile-fields-revert.php b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-wpcom-user-profile-fields-revert.php index 9cd4b8f34cac7..bb59a560a95d0 100644 --- a/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-wpcom-user-profile-fields-revert.php +++ b/projects/plugins/jetpack/tests/php/modules/masterbar/test-class-wpcom-user-profile-fields-revert.php @@ -2,6 +2,8 @@ /** * Tests for WPCOM_User_Profile_Fields_Revert class. * + * @phan-file-suppress PhanDeprecatedFunction -- Ok for deprecated code to call other deprecated code. + * * @package automattic/jetpack */ @@ -43,6 +45,9 @@ public static function wpSetUpBeforeClass( $factory ) { /** * Check if the revert ignores not connected users. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPCOM_User_Profile_Fields_Revert::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPCOM_User_Profile_Fields_Revert::revert_user_data_on_wp_admin_profile_update */ public function test_if_it_skips_not_connected_users() { $connection_manager = $this->createMock( Connection_Manager::class ); @@ -57,6 +62,9 @@ public function test_if_it_skips_not_connected_users() { /** * Check if the implementation prevents updating the display_name. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPCOM_User_Profile_Fields_Revert::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPCOM_User_Profile_Fields_Revert::revert_user_data_on_wp_admin_profile_update */ public function test_revert_display_name() { $connection_manager = $this->createMock( Connection_Manager::class ); @@ -71,6 +79,9 @@ public function test_revert_display_name() { /** * Check if the revert works for first_name, last_name and description fields. + * + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPCOM_User_Profile_Fields_Revert::__construct + * @expectedDeprecated Automattic\Jetpack\Dashboard_Customizations\WPCOM_User_Profile_Fields_Revert::revert_user_meta_on_wp_admin_profile_change */ public function test_revert_user_fields() { $connection_manager = $this->createMock( Connection_Manager::class ); From 22e1cb1c88a4ba826045d8526f89fa8de44b1b09 Mon Sep 17 00:00:00 2001 From: Jeremy Herve Date: Thu, 4 Jul 2024 14:07:47 +0200 Subject: [PATCH 014/254] Renovate: update label used to flag Search updates (#38168) We now prefix our feature labels with [Feature]. --- .github/renovate.json5 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 73d15df217a05..581a671c157c0 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -104,8 +104,8 @@ 'uuid', '@testing-library/preact', ], - reviewers: [ 'team:jetpack-search' ], - addLabels: [ 'Search', 'Instant Search' ], + reviewers: [ 'team:red' ], + addLabels: [ '[Feature] Search', 'Instant Search' ], }, ], From 14134dcc7e83a7bb9fa24b57c56d74b7a17e02bd Mon Sep 17 00:00:00 2001 From: Igor Zinovyev Date: Thu, 4 Jul 2024 15:14:40 +0300 Subject: [PATCH 015/254] Revert Custom CSS removal by adding back the code that loads it. (#38173) * Adding back the changes removed in #38118. * changelog. * Project versions. --- .../jetpack-mu-wpcom/changelog/revert-custom-css-removal | 4 ++++ .../packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php | 5 +++++ .../mu-wpcom-plugin/changelog/revert-custom-css-removal | 5 +++++ projects/plugins/wpcomsh/changelog/revert-custom-css-removal | 5 +++++ 4 files changed, 19 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/revert-custom-css-removal create mode 100644 projects/plugins/mu-wpcom-plugin/changelog/revert-custom-css-removal create mode 100644 projects/plugins/wpcomsh/changelog/revert-custom-css-removal diff --git a/projects/packages/jetpack-mu-wpcom/changelog/revert-custom-css-removal b/projects/packages/jetpack-mu-wpcom/changelog/revert-custom-css-removal new file mode 100644 index 0000000000000..b4d26ef64d5c8 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/revert-custom-css-removal @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Custom CSS: Add the loading mechanism back after it was reverted. diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index c2bd93c73f499..78135f37b5933 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -52,6 +52,11 @@ public static function init() { add_action( 'admin_menu', array( __CLASS__, 'load_wpcom_simple_odyssey_stats' ) ); } + // These features run only on atomic sites. + if ( defined( 'IS_ATOMIC' ) && IS_ATOMIC ) { + add_action( 'plugins_loaded', array( __CLASS__, 'load_custom_css' ) ); + } + // Unified navigation fix for changes in WordPress 6.2. add_action( 'admin_enqueue_scripts', array( __CLASS__, 'unbind_focusout_on_wp_admin_bar_menu_toggle' ) ); diff --git a/projects/plugins/mu-wpcom-plugin/changelog/revert-custom-css-removal b/projects/plugins/mu-wpcom-plugin/changelog/revert-custom-css-removal new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/mu-wpcom-plugin/changelog/revert-custom-css-removal @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/wpcomsh/changelog/revert-custom-css-removal b/projects/plugins/wpcomsh/changelog/revert-custom-css-removal new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/revert-custom-css-removal @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + From 5a967556d078659ba3b1ba6fb5d8ee69135b9e13 Mon Sep 17 00:00:00 2001 From: Foteini Giannaropoulou Date: Thu, 4 Jul 2024 17:38:10 +0300 Subject: [PATCH 016/254] Sync: Fix bug in WooCommerce_HPOS_Orders::get_objects_by_id method (#38192) * Sync: Fix bug in WooCommerce_HPOS_Orders::get_objects_by_id method --- .../packages/sync/changelog/fix-sync-hpos-get_objects_by_id | 4 ++++ .../sync/src/modules/class-woocommerce-hpos-orders.php | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 projects/packages/sync/changelog/fix-sync-hpos-get_objects_by_id diff --git a/projects/packages/sync/changelog/fix-sync-hpos-get_objects_by_id b/projects/packages/sync/changelog/fix-sync-hpos-get_objects_by_id new file mode 100644 index 0000000000000..fa2be99088310 --- /dev/null +++ b/projects/packages/sync/changelog/fix-sync-hpos-get_objects_by_id @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Sync: Fix bug in WooCommerce_HPOS_Orders::get_objects_by_id method diff --git a/projects/packages/sync/src/modules/class-woocommerce-hpos-orders.php b/projects/packages/sync/src/modules/class-woocommerce-hpos-orders.php index d9e20c0f6a06e..b83d11ba82e91 100644 --- a/projects/packages/sync/src/modules/class-woocommerce-hpos-orders.php +++ b/projects/packages/sync/src/modules/class-woocommerce-hpos-orders.php @@ -165,8 +165,8 @@ public function get_objects_by_id( $object_type, $ids ) { } $orders = wc_get_orders( array( - 'include' => $ids, - 'type' => $this->get_order_types_to_sync( true ), + 'post__in' => $ids, + 'type' => $this->get_order_types_to_sync( true ), ) ); $orders_data = array(); From 517210c40e098a4fcee387fdf0838033d01ac576 Mon Sep 17 00:00:00 2001 From: A W <80767638+a8caustin@users.noreply.github.com> Date: Thu, 4 Jul 2024 10:41:01 -0400 Subject: [PATCH 017/254] wpcomsh: Add cli actions for post transfer process woo express / cache-flush / staging env (#38183) --- ...or-woo-express-cache-flush-and-staging-env | 4 ++ projects/plugins/wpcomsh/woa.php | 71 ++++++++++++++++++- 2 files changed, 74 insertions(+), 1 deletion(-) create mode 100644 projects/plugins/wpcomsh/changelog/add-wpcomsh-cli-actions-for-woo-express-cache-flush-and-staging-env diff --git a/projects/plugins/wpcomsh/changelog/add-wpcomsh-cli-actions-for-woo-express-cache-flush-and-staging-env b/projects/plugins/wpcomsh/changelog/add-wpcomsh-cli-actions-for-woo-express-cache-flush-and-staging-env new file mode 100644 index 0000000000000..c1ff4db3f5932 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/add-wpcomsh-cli-actions-for-woo-express-cache-flush-and-staging-env @@ -0,0 +1,4 @@ +Significance: patch +Type: added + +Add post transfer woo express deactivate plugins, post process cache flush, and post clone set staging environment diff --git a/projects/plugins/wpcomsh/woa.php b/projects/plugins/wpcomsh/woa.php index 7ba883f4d284f..52901075d1ab2 100644 --- a/projects/plugins/wpcomsh/woa.php +++ b/projects/plugins/wpcomsh/woa.php @@ -7,6 +7,27 @@ // phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable +/** + * Clear cache after other post process actions are complete. + * + * @param array $args Arguments. + * @param array $assoc_args Associated arguments. + */ +function wpcomsh_woa_post_process_job_cache_flush( $args, $assoc_args ) { + WP_CLI::runcommand( + 'cache flush', + array( + 'launch' => false, + 'exit_error' => false, + ) + ); + + WP_CLI::log( 'Cache flushed' ); +} +add_action( 'wpcomsh_woa_post_transfer', 'wpcomsh_woa_post_process_job_cache_flush', 99, 2 ); +add_action( 'wpcomsh_woa_post_clone', 'wpcomsh_woa_post_process_job_cache_flush', 99, 2 ); +add_action( 'wpcomsh_woa_post_reset', 'wpcomsh_woa_post_process_job_cache_flush', 99, 2 ); + /** * Clear WooCommerce plugin cache post clone. * @@ -67,7 +88,7 @@ function wpcomsh_woa_post_transfer_update_safecss_to_custom_css( $args, $assoc_a ); WP_CLI::runcommand( - "wp theme mod set custom_css_post_id {$safecss_post_id}", + "theme mod set custom_css_post_id {$safecss_post_id}", array( 'launch' => false, 'exit_error' => false, @@ -79,3 +100,51 @@ function wpcomsh_woa_post_transfer_update_safecss_to_custom_css( $args, $assoc_a } add_action( 'wpcomsh_woa_post_transfer', 'wpcomsh_woa_post_transfer_update_safecss_to_custom_css', 10, 2 ); add_action( 'wpcomsh_woa_post_reset', 'wpcomsh_woa_post_transfer_update_safecss_to_custom_css', 10, 2 ); + +/** + * Woo Express: Free Trial - deactivate simple site activated plugins. + * + * @param array $args Arguments. + * @param array $assoc_args Associated arguments. + */ +function wpcomsh_woa_post_transfer_woo_express_trial_deactivate_plugins( $args, $assoc_args ) { + $deactivate_plugins = WP_CLI\Utils\get_flag_value( $assoc_args, 'woo-express-trial-deactivate-plugins', false ); + if ( ! $deactivate_plugins ) { + return; + } + + WP_CLI::runcommand( + '--skip-plugins --skip-themes plugin deactivate crowdsignal-forms polldaddy', + array( + 'launch' => false, + 'exit_error' => false, + ) + ); + + WP_CLI::log( 'Woo Express plugins deactivated' ); +} +add_action( 'wpcomsh_woa_post_transfer', 'wpcomsh_woa_post_transfer_woo_express_trial_deactivate_plugins', 10, 2 ); + +/** + * Sets the environment type for the site. + * + * @param array $args Arguments. + * @param array $assoc_args Associated arguments. + */ +function wpcomsh_woa_post_clone_set_staging_environment_type( $args, $assoc_args ) { + $set_staging_environment = WP_CLI\Utils\get_flag_value( $assoc_args, 'set-staging-environment-type', false ); + if ( ! $set_staging_environment ) { + return; + } + + WP_CLI::runcommand( + 'config set WP_ENVIRONMENT_TYPE staging --type=constant', + array( + 'launch' => false, + 'exit_error' => false, + ) + ); + + WP_CLI::log( 'Staging environment set' ); +} +add_action( 'wpcomsh_woa_post_clone', 'wpcomsh_woa_post_clone_set_staging_environment_type', 10, 2 ); From a086cb48d03cce67f3dbe91e1f834bdd52efb353 Mon Sep 17 00:00:00 2001 From: Douglas Henri Date: Thu, 4 Jul 2024 12:25:03 -0300 Subject: [PATCH 018/254] AI Proofread: Move prompts to the backend (#38182) * rename variables and change request message to the jetpack-ai role * remove the prompts from the dictionaries config file * changelog --- .../changelog/update-jetpack-ai-breve-prompts | 4 ++ .../components/breve/Highlight.js | 8 ++-- .../components/breve/Highlights.js | 4 +- .../breve/dictionaries/dictionaries-config.js | 20 --------- .../breve/utils/getHighlightRects.js | 4 +- .../breve/utils/getRequestMessages.js | 42 ++++++++++--------- 6 files changed, 35 insertions(+), 47 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/update-jetpack-ai-breve-prompts diff --git a/projects/plugins/jetpack/changelog/update-jetpack-ai-breve-prompts b/projects/plugins/jetpack/changelog/update-jetpack-ai-breve-prompts new file mode 100644 index 0000000000000..534234a30e67c --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-jetpack-ai-breve-prompts @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +AI Proofread: Move prompts to the backend diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/Highlight.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/Highlight.js index f3b8127242b37..79cacfa5ea763 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/Highlight.js +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/Highlight.js @@ -35,7 +35,7 @@ const Highlight = ( { type, rect, rangeIndex, - replacementText, + target, replacement, range, clientId, @@ -72,7 +72,7 @@ const Highlight = ( { const rangeEnd = range.endOffset; const rangeParent = range.startContainer.parentNode; - let parentSentenceText = ''; + let sentence = ''; let blockText = ''; blockText = rangeParent.textContent || rangeParent.innerText; @@ -81,7 +81,7 @@ const Highlight = ( { const startIndex = preText.lastIndexOf( '.' ) + 1; const endIndex = postText.indexOf( '.' ) === -1 ? blockText.length : rangeEnd + postText.indexOf( '.' ) + 1; - parentSentenceText = blockText.substring( startIndex, endIndex ).trim(); + sentence = blockText.substring( startIndex, endIndex ).trim(); const dictConfig = config.dictionaries[ type ]; @@ -124,7 +124,7 @@ const Highlight = ( { return; } - const messages = getRequestMessages( { replacementText, type, parentSentenceText, blockText } ); + const messages = getRequestMessages( { target, type, sentence, blockText } ); request( messages ); }; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/Highlights.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/Highlights.js index 05014ed4af80e..908e3362f3ab5 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/Highlights.js +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/Highlights.js @@ -47,13 +47,13 @@ const Highlights = ( { const clientId = getClientId( block ); const rects = getHighlightRects( block ); - rects.forEach( ( { rect, rangeIndex, range, replacementText, replacement, type } ) => { + rects.forEach( ( { rect, rangeIndex, range, target, replacement, type } ) => { if ( toggledKeys[ type ] ) { all.push( { type, rect, rangeIndex, - replacementText, + target, replacement, range, clientId, diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/dictionaries-config.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/dictionaries-config.js index 0ce0b4b2c2165..aea6102c3620c 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/dictionaries-config.js +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/dictionaries-config.js @@ -11,10 +11,6 @@ const config = { type: 'key-value', tooltip: "Consider replacing with '{value}'.", label: 'Complex words', - apiRequest: { - systemMessage: - "Replace the word '{text}' in the sentence with '{value}'. FIX the grammar after replacing the word. REFINE grammar if needed. THEN insert the sentence back into the paragraph. ONLY respond with the updated paragraph, nothing else.", - }, }, 'long-sentence': { type: 'function', @@ -30,40 +26,24 @@ const config = { }, tooltip: 'Break this long sentence into shorter ones.', label: 'Long sentences', - apiRequest: { - systemMessage: - "Break this exact sentence only, into shorter sentences: '{text}'. DO NOT touch any other sentence in the paragraph. Make sure the new, shorter sentences are grammatically correct. If any of the sentences are in the passive voice, change them to active voice. THEN insert the new sentences back into the paragraph in place of the original long sentence. ONLY respond with the updated paragraph, nothing else.", - }, }, weasel: { dictionary: weaselWords, type: 'list', tooltip: "Remove 'Weasel' words to add confidence.", label: 'Weasel words', - apiRequest: { - systemMessage: - "Take out the word '{text}' out from the sentence. FIX the grammar after taking the word out. REFINE grammar if needed. THEN insert the sentence back into the paragraph. ONLY respond with the updated paragraph, nothing else.", - }, }, adverb: { dictionary: adverbs, type: 'list', tooltip: 'Adverbs make your writing less concise.', label: 'Adverbs', - apiRequest: { - systemMessage: - "Take out the word '{text}' out from the sentence. FIX the grammar after taking the word out. REFINE grammar if needed. THEN insert the sentence back into the paragraph. ONLY respond with the updated paragraph, nothing else.", - }, }, adjective: { dictionary: adjectives, type: 'list', tooltip: 'Replace adjectives with data or remove them.', label: 'Adjectives', - apiRequest: { - systemMessage: - "Take out the word '{text}' out from the sentence. FIX the grammar after taking the word out. REFINE grammar if needed. THEN insert the sentence back into the paragraph. ONLY respond with the updated paragraph, nothing else.", - }, }, }, }; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getHighlightRects.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getHighlightRects.js index 6ab694ef6d494..a32f3a4749ece 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getHighlightRects.js +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getHighlightRects.js @@ -84,8 +84,8 @@ export const getHighlightRects = element => { rect, rangeIndex, range, - replacementText: `${ text }`, // The original text - replacement, // It's replacement. TODO: Rename these to be clearer + target: `${ text }`, // The original text + replacement, // It's replacement type, highlightId: `${ range.startOffset }${ text }${ range.endOffset }`, } ); diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getRequestMessages.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getRequestMessages.js index 0852b128e741c..726d70d5edc56 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getRequestMessages.js +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getRequestMessages.js @@ -3,32 +3,36 @@ */ import config from '../dictionaries/dictionaries-config.js'; -export const getRequestMessages = ( { replacementText, type, parentSentenceText, blockText } ) => { +// Map of types to the corresponding AI Assistant request type. +const requestTypeMap = { + phrase: 'breve-phrase', + 'long-sentence': 'breve-long-sentence', + weasel: 'breve-weasel', + adverb: 'breve-adverb', + adjective: 'breve-adjective', +}; + +export const getRequestMessages = ( { target, type, sentence, blockText } ) => { const dictConfig = config.dictionaries[ type ]; - if ( ! dictConfig || ! dictConfig.apiRequest ) { - throw new Error( `Invalid type: ${ type } or missing apiRequest configuration.` ); - } - let systemMessageTemplate = dictConfig.apiRequest.systemMessage; - if ( dictConfig.type === 'key-value' ) { - const value = dictConfig.dictionary[ replacementText.toLowerCase() ] || ''; - systemMessageTemplate = systemMessageTemplate.replace( '{value}', value ); + if ( ! dictConfig ) { + throw new Error( `Invalid type: ${ type }.` ); } - const systemMessage = systemMessageTemplate.replace( '{text}', replacementText ); - const userMessage = ` - Sentence: ${ parentSentenceText } - Paragraph: ${ blockText } - `; + const paragraph = blockText; + const replacement = + dictConfig.type === 'key-value' ? dictConfig.dictionary[ target.toLowerCase() ] || '' : null; return [ { - role: 'system', - content: systemMessage, - }, - { - role: 'user', - content: userMessage, + role: 'jetpack-ai', + context: { + type: requestTypeMap[ type ], + target, + replacement, + sentence, + paragraph, + }, }, ]; }; From dae97dc18c3a4aa011d8baa608bfdf73c3bb158f Mon Sep 17 00:00:00 2001 From: A W <80767638+a8caustin@users.noreply.github.com> Date: Thu, 4 Jul 2024 12:03:00 -0400 Subject: [PATCH 019/254] Standardize wpcomsh cli post process messages (#38201) * wpcomsh: Fix wp cli success messages * changelog --- .../changelog/fix-wpcomsh-cli-post-process-messages | 4 ++++ projects/plugins/wpcomsh/woa.php | 8 +++----- 2 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 projects/plugins/wpcomsh/changelog/fix-wpcomsh-cli-post-process-messages diff --git a/projects/plugins/wpcomsh/changelog/fix-wpcomsh-cli-post-process-messages b/projects/plugins/wpcomsh/changelog/fix-wpcomsh-cli-post-process-messages new file mode 100644 index 0000000000000..5008c0f7da05d --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/fix-wpcomsh-cli-post-process-messages @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Use wp-cli `success` function for messages diff --git a/projects/plugins/wpcomsh/woa.php b/projects/plugins/wpcomsh/woa.php index 52901075d1ab2..77b16319b318e 100644 --- a/projects/plugins/wpcomsh/woa.php +++ b/projects/plugins/wpcomsh/woa.php @@ -21,8 +21,6 @@ function wpcomsh_woa_post_process_job_cache_flush( $args, $assoc_args ) { 'exit_error' => false, ) ); - - WP_CLI::log( 'Cache flushed' ); } add_action( 'wpcomsh_woa_post_transfer', 'wpcomsh_woa_post_process_job_cache_flush', 99, 2 ); add_action( 'wpcomsh_woa_post_clone', 'wpcomsh_woa_post_process_job_cache_flush', 99, 2 ); @@ -96,7 +94,7 @@ function wpcomsh_woa_post_transfer_update_safecss_to_custom_css( $args, $assoc_a ); } - WP_CLI::log( 'safecss posts updated to custom_css' ); + WP_CLI::success( 'safecss posts updated to custom_css' ); } add_action( 'wpcomsh_woa_post_transfer', 'wpcomsh_woa_post_transfer_update_safecss_to_custom_css', 10, 2 ); add_action( 'wpcomsh_woa_post_reset', 'wpcomsh_woa_post_transfer_update_safecss_to_custom_css', 10, 2 ); @@ -121,7 +119,7 @@ function wpcomsh_woa_post_transfer_woo_express_trial_deactivate_plugins( $args, ) ); - WP_CLI::log( 'Woo Express plugins deactivated' ); + WP_CLI::success( 'Woo Express plugins deactivated' ); } add_action( 'wpcomsh_woa_post_transfer', 'wpcomsh_woa_post_transfer_woo_express_trial_deactivate_plugins', 10, 2 ); @@ -145,6 +143,6 @@ function wpcomsh_woa_post_clone_set_staging_environment_type( $args, $assoc_args ) ); - WP_CLI::log( 'Staging environment set' ); + WP_CLI::success( 'Staging environment set' ); } add_action( 'wpcomsh_woa_post_clone', 'wpcomsh_woa_post_clone_set_staging_environment_type', 10, 2 ); From 0ed083055b78cbeacabfd33f404d49975915691d Mon Sep 17 00:00:00 2001 From: Karen Attfield Date: Thu, 4 Jul 2024 17:07:30 +0100 Subject: [PATCH 020/254] Classic Theme Helper: Requiring the Responsive Video package files, and modifying Featured Content require process (#37969) --- ...pdate-require-classic-theme-helper-package | 4 + .../classic-theme-helper/src/class-main.php | 6 +- ...pdate-require-classic-theme-helper-package | 4 + .../src/class-jetpack-mu-wpcom.php | 2 + ...pdate-require-classic-theme-helper-package | 4 + .../modules/theme-tools/responsive-videos.php | 317 +++++++++--------- 6 files changed, 184 insertions(+), 153 deletions(-) create mode 100644 projects/packages/classic-theme-helper/changelog/update-require-classic-theme-helper-package create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/update-require-classic-theme-helper-package create mode 100644 projects/plugins/jetpack/changelog/update-require-classic-theme-helper-package diff --git a/projects/packages/classic-theme-helper/changelog/update-require-classic-theme-helper-package b/projects/packages/classic-theme-helper/changelog/update-require-classic-theme-helper-package new file mode 100644 index 0000000000000..401e0aa3dbf2f --- /dev/null +++ b/projects/packages/classic-theme-helper/changelog/update-require-classic-theme-helper-package @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Classic Theme Helper - Requiring Responsive Videos and Featured Content files. diff --git a/projects/packages/classic-theme-helper/src/class-main.php b/projects/packages/classic-theme-helper/src/class-main.php index c38ef4f5a2a65..950fc3c46312a 100644 --- a/projects/packages/classic-theme-helper/src/class-main.php +++ b/projects/packages/classic-theme-helper/src/class-main.php @@ -22,8 +22,7 @@ class Main { * @var array */ public $modules = array( - 'class-featured-content.php', - // 'responsive-videos.php', + 'responsive-videos.php', ); /** Holds the singleton instance of the Loader @@ -38,7 +37,7 @@ class Main { public static function init() { if ( ! self::$instance ) { self::$instance = new Main(); - add_action( 'plugins_loaded', array( self::$instance, 'load_modules' ) ); + self::$instance->load_modules(); // TODO Commenting below since we still load them from theme-tools module // add_action( 'init', array( __CLASS__, 'jetpack_load_theme_tools' ), 30 ); // add_action( 'after_setup_theme', array( __CLASS__, 'jetpack_load_theme_compat' ), -1 ); @@ -124,4 +123,5 @@ private static function jetpack_require_compat_file( $key, $files ) { } } } + Main::init(); diff --git a/projects/packages/jetpack-mu-wpcom/changelog/update-require-classic-theme-helper-package b/projects/packages/jetpack-mu-wpcom/changelog/update-require-classic-theme-helper-package new file mode 100644 index 0000000000000..37c379e065c85 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/update-require-classic-theme-helper-package @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Classic Theme Helper - initialize Featured Content from the mu-wpcom package diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 78135f37b5933..eb160073edb88 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -105,6 +105,8 @@ public static function load_features() { // Initializers, if needed. \Marketplace_Products_Updater::init(); + \Automattic\Jetpack\Classic_Theme_Helper\Featured_Content::setup(); + // Only load the Calypsoify and Masterbar features on WoA sites. if ( class_exists( '\Automattic\Jetpack\Status\Host' ) && ( new \Automattic\Jetpack\Status\Host() )->is_woa_site() ) { \Automattic\Jetpack\Calypsoify\Jetpack_Calypsoify::get_instance(); diff --git a/projects/plugins/jetpack/changelog/update-require-classic-theme-helper-package b/projects/plugins/jetpack/changelog/update-require-classic-theme-helper-package new file mode 100644 index 0000000000000..f2d270f900f3b --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-require-classic-theme-helper-package @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +Classic Theme Helper - Requiring Responsive Videos and Featured Content files. diff --git a/projects/plugins/jetpack/modules/theme-tools/responsive-videos.php b/projects/plugins/jetpack/modules/theme-tools/responsive-videos.php index ff1b7c1523331..cf950dba2e68d 100644 --- a/projects/plugins/jetpack/modules/theme-tools/responsive-videos.php +++ b/projects/plugins/jetpack/modules/theme-tools/responsive-videos.php @@ -7,169 +7,186 @@ use Automattic\Jetpack\Assets; -/** - * Load the Responsive videos plugin - */ -function jetpack_responsive_videos_init() { - - /* If the doesn't theme support 'jetpack-responsive-videos', don't continue */ - if ( ! current_theme_supports( 'jetpack-responsive-videos' ) ) { - return; - } - - /* If the theme does support 'jetpack-responsive-videos', wrap the videos */ - add_filter( 'wp_video_shortcode', 'jetpack_responsive_videos_embed_html' ); - add_filter( 'video_embed_html', 'jetpack_responsive_videos_embed_html' ); - - /* Only wrap oEmbeds if video */ - add_filter( 'embed_oembed_html', 'jetpack_responsive_videos_maybe_wrap_oembed', 10, 2 ); - add_filter( 'embed_handler_html', 'jetpack_responsive_videos_maybe_wrap_oembed', 10, 2 ); - - /* Wrap videos in Buddypress */ - add_filter( 'bp_embed_oembed_html', 'jetpack_responsive_videos_embed_html' ); - - /* Wrap Slideshare shortcodes */ - add_filter( 'jetpack_slideshare_shortcode', 'jetpack_responsive_videos_embed_html' ); - - // Remove the Jetpack Responsive video wrapper in embed blocks on sites that support core Responsive embeds. - if ( current_theme_supports( 'responsive-embeds' ) ) { - add_filter( 'render_block', 'jetpack_responsive_videos_remove_wrap_oembed', 10, 2 ); - } -} -add_action( 'after_setup_theme', 'jetpack_responsive_videos_init', 99 ); - -/** - * Adds a wrapper to videos and enqueue script - * - * @param string $html The video embed HTML. - * @return string - */ -function jetpack_responsive_videos_embed_html( $html ) { - if ( empty( $html ) || ! is_string( $html ) ) { - return $html; - } - - // Short-circuit for AMP responses, since custom scripts are not allowed in AMP and videos are naturally responsive. - if ( class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) { - return $html; - } - - // The customizer video widget wraps videos with a class of wp-video - // mejs as of 4.9 apparently resizes videos too which causes issues - // skip the video if it is wrapped in wp-video. - $video_widget_wrapper = 'class="wp-video"'; - - $mejs_wrapped = strpos( $html, $video_widget_wrapper ); - - // If this is a video widget wrapped by mejs, return the html. - if ( false !== $mejs_wrapped ) { - return $html; - } - - Assets::register_script( - 'jetpack-responsive-videos', - '_inc/build/theme-tools/responsive-videos/responsive-videos.min.js', - JETPACK__PLUGIN_FILE, - array( - 'in_footer' => true, - 'enqueue' => true, - 'textdomain' => 'jetpack', - 'css_path' => '_inc/build/theme-tools/responsive-videos/responsive-videos.css', - ) - ); - - return '
' . $html . '
'; -} - -/** - * Check if oEmbed is a `$video_patterns` provider video before wrapping. - * - * @param mixed $html The cached HTML result, stored in post meta. - * @param string $url he attempted embed URL. - * - * @return string - */ -function jetpack_responsive_videos_maybe_wrap_oembed( $html, $url = null ) { - if ( empty( $html ) || ! is_string( $html ) || ! $url ) { - return $html; +if ( ! class_exists( '\Automattic\Jetpack\Classic_Theme_Helper\Main' ) ) { + /** + * Load the Responsive videos plugin + * + * @deprecated $$next-version$$ Moved to Classic Theme Helper package. + */ + function jetpack_responsive_videos_init() { + _deprecated_function( __FUNCTION__, 'jetpack-$$next-version$$' ); + + /* If the doesn't theme support 'jetpack-responsive-videos', don't continue */ + if ( ! current_theme_supports( 'jetpack-responsive-videos' ) ) { + return; + } + + /* If the theme does support 'jetpack-responsive-videos', wrap the videos */ + add_filter( 'wp_video_shortcode', 'jetpack_responsive_videos_embed_html' ); + add_filter( 'video_embed_html', 'jetpack_responsive_videos_embed_html' ); + + /* Only wrap oEmbeds if video */ + add_filter( 'embed_oembed_html', 'jetpack_responsive_videos_maybe_wrap_oembed', 10, 2 ); + add_filter( 'embed_handler_html', 'jetpack_responsive_videos_maybe_wrap_oembed', 10, 2 ); + + /* Wrap videos in Buddypress */ + add_filter( 'bp_embed_oembed_html', 'jetpack_responsive_videos_embed_html' ); + + /* Wrap Slideshare shortcodes */ + add_filter( 'jetpack_slideshare_shortcode', 'jetpack_responsive_videos_embed_html' ); + + // Remove the Jetpack Responsive video wrapper in embed blocks on sites that support core Responsive embeds. + if ( current_theme_supports( 'responsive-embeds' ) ) { + add_filter( 'render_block', 'jetpack_responsive_videos_remove_wrap_oembed', 10, 2 ); + } } + add_action( 'after_setup_theme', 'jetpack_responsive_videos_init', 99 ); - // Short-circuit for AMP responses, since custom scripts are not allowed in AMP and videos are naturally responsive. - if ( class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) { - return $html; + /** + * Adds a wrapper to videos and enqueue script + * + * @deprecated $$next-version$$ Moved to Classic Theme Helper package. + * + * @param string $html The video embed HTML. + * @return string + */ + function jetpack_responsive_videos_embed_html( $html ) { + _deprecated_function( __FUNCTION__, 'jetpack-$$next-version$$' ); + + if ( empty( $html ) || ! is_string( $html ) ) { + return $html; + } + + // Short-circuit for AMP responses, since custom scripts are not allowed in AMP and videos are naturally responsive. + if ( class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) { + return $html; + } + + // The customizer video widget wraps videos with a class of wp-video + // mejs as of 4.9 apparently resizes videos too which causes issues + // skip the video if it is wrapped in wp-video. + $video_widget_wrapper = 'class="wp-video"'; + + $mejs_wrapped = strpos( $html, $video_widget_wrapper ); + + // If this is a video widget wrapped by mejs, return the html. + if ( false !== $mejs_wrapped ) { + return $html; + } + + Assets::register_script( + 'jetpack-responsive-videos', + '_inc/build/theme-tools/responsive-videos/responsive-videos.min.js', + JETPACK__PLUGIN_FILE, + array( + 'in_footer' => true, + 'enqueue' => true, + 'textdomain' => 'jetpack', + 'css_path' => '_inc/build/theme-tools/responsive-videos/responsive-videos.css', + ) + ); + + return '
' . $html . '
'; } - $jetpack_video_wrapper = '
'; - - $already_wrapped = strpos( $html, $jetpack_video_wrapper ); + /** + * Check if oEmbed is a `$video_patterns` provider video before wrapping. + * + * @deprecated $$next-version$$ Moved to Classic Theme Helper package. + * + * @param mixed $html The cached HTML result, stored in post meta. + * @param string $url he attempted embed URL. + * + * @return string + */ + function jetpack_responsive_videos_maybe_wrap_oembed( $html, $url = null ) { + _deprecated_function( __FUNCTION__, 'jetpack-$$next-version$$' ); + + if ( empty( $html ) || ! is_string( $html ) || ! $url ) { + return $html; + } + + // Short-circuit for AMP responses, since custom scripts are not allowed in AMP and videos are naturally responsive. + if ( class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) { + return $html; + } + + $jetpack_video_wrapper = '
'; + + $already_wrapped = strpos( $html, $jetpack_video_wrapper ); + + // If the oEmbed has already been wrapped, return the html. + if ( false !== $already_wrapped ) { + return $html; + } + + /** + * The oEmbed video providers. + * + * An allowed list of oEmbed video provider Regex patterns to check against before wrapping the output. + * + * @module theme-tools + * + * @since 3.8.0 + * + * @param array $video_patterns oEmbed video provider Regex patterns. + */ + $video_patterns = apply_filters( + 'jetpack_responsive_videos_oembed_videos', + array( + 'https?://((m|www)\.)?youtube\.com/watch', + 'https?://((m|www)\.)?youtube\.com/playlist', + 'https?://youtu\.be/', + 'https?://(.+\.)?vimeo\.com/', + 'https?://(www\.)?dailymotion\.com/', + 'https?://dai.ly/', + 'https?://(www\.)?hulu\.com/watch/', + 'https?://wordpress.tv/', + 'https?://(www\.)?funnyordie\.com/videos/', + 'https?://vine.co/v/', + 'https?://(www\.)?collegehumor\.com/video/', + 'https?://(www\.|embed\.)?ted\.com/talks/', + ) + ); + + // Merge patterns to run in a single preg_match call. + $video_patterns = '(' . implode( '|', $video_patterns ) . ')'; + + $is_video = preg_match( $video_patterns, $url ); + + // If the oEmbed is a video, wrap it in the responsive wrapper. + if ( false === $already_wrapped && 1 === $is_video ) { + return jetpack_responsive_videos_embed_html( $html ); + } - // If the oEmbed has already been wrapped, return the html. - if ( false !== $already_wrapped ) { return $html; } /** - * The oEmbed video providers. + * Remove the Jetpack Responsive video wrapper in embed blocks. * - * An allowed list of oEmbed video provider Regex patterns to check against before wrapping the output. + * @since 7.0.0 * - * @module theme-tools + * @deprecated $$next-version$$ Moved to Classic Theme Helper package. * - * @since 3.8.0 + * @param string $block_content The block content about to be appended. + * @param array $block The full block, including name and attributes. * - * @param array $video_patterns oEmbed video provider Regex patterns. + * @return string $block_content String of rendered HTML. */ - $video_patterns = apply_filters( - 'jetpack_responsive_videos_oembed_videos', - array( - 'https?://((m|www)\.)?youtube\.com/watch', - 'https?://((m|www)\.)?youtube\.com/playlist', - 'https?://youtu\.be/', - 'https?://(.+\.)?vimeo\.com/', - 'https?://(www\.)?dailymotion\.com/', - 'https?://dai.ly/', - 'https?://(www\.)?hulu\.com/watch/', - 'https?://wordpress.tv/', - 'https?://(www\.)?funnyordie\.com/videos/', - 'https?://vine.co/v/', - 'https?://(www\.)?collegehumor\.com/video/', - 'https?://(www\.|embed\.)?ted\.com/talks/', - ) - ); - - // Merge patterns to run in a single preg_match call. - $video_patterns = '(' . implode( '|', $video_patterns ) . ')'; - - $is_video = preg_match( $video_patterns, $url ); - - // If the oEmbed is a video, wrap it in the responsive wrapper. - if ( false === $already_wrapped && 1 === $is_video ) { - return jetpack_responsive_videos_embed_html( $html ); + function jetpack_responsive_videos_remove_wrap_oembed( $block_content, $block ) { + _deprecated_function( __FUNCTION__, 'jetpack-$$next-version$$' ); + + if ( + isset( $block['blockName'] ) + && ( + str_contains( $block['blockName'], 'core-embed' ) // pre-WP 5.6 embeds (multiple embed blocks starting with 'core-embed'). + || 'core/embed' === $block['blockName'] // WP 5.6 embed block format (single embed block w/ block variations). + ) + ) { + $block_content = preg_replace( '#
(.*?)
#', '${1}', $block_content ); + } + + return $block_content; } - - return $html; -} - -/** - * Remove the Jetpack Responsive video wrapper in embed blocks. - * - * @since 7.0.0 - * - * @param string $block_content The block content about to be appended. - * @param array $block The full block, including name and attributes. - * - * @return string $block_content String of rendered HTML. - */ -function jetpack_responsive_videos_remove_wrap_oembed( $block_content, $block ) { - if ( - isset( $block['blockName'] ) - && ( - str_contains( $block['blockName'], 'core-embed' ) // pre-WP 5.6 embeds (multiple embed blocks starting with 'core-embed'). - || 'core/embed' === $block['blockName'] // WP 5.6 embed block format (single embed block w/ block variations). - ) - ) { - $block_content = preg_replace( '#
(.*?)
#', '${1}', $block_content ); - } - - return $block_content; } From f8a104d53c13daef83da2dc3c110444bf2198648 Mon Sep 17 00:00:00 2001 From: Calypso Bot Date: Thu, 4 Jul 2024 12:05:10 -0500 Subject: [PATCH 021/254] phan: Update custom stubs (#38185) Co-authored-by: matticbot --- .phan/stubs/amp-stubs.php | 2 +- .phan/stubs/full-site-editing-stubs.php | 2 +- .phan/stubs/woocommerce-internal-stubs.php | 2 +- .phan/stubs/woocommerce-payments-stubs.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.phan/stubs/amp-stubs.php b/.phan/stubs/amp-stubs.php index 84ef33f7ce39b..e5081cd55df7d 100644 --- a/.phan/stubs/amp-stubs.php +++ b/.phan/stubs/amp-stubs.php @@ -1,6 +1,6 @@ Date: Thu, 4 Jul 2024 19:07:26 +0200 Subject: [PATCH 022/254] Like block: Fix PHP warning related to undefined `postId` array key coming from block context (#38199) * If `postId` coming from the Like block context is undefined, null `$post_id`. * Add changelog --- .../changelog/fix-like-block-undefined-postId-array-key | 4 ++++ projects/plugins/jetpack/extensions/blocks/like/like.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 projects/plugins/jetpack/changelog/fix-like-block-undefined-postId-array-key diff --git a/projects/plugins/jetpack/changelog/fix-like-block-undefined-postId-array-key b/projects/plugins/jetpack/changelog/fix-like-block-undefined-postId-array-key new file mode 100644 index 0000000000000..caa2f6e50ea9b --- /dev/null +++ b/projects/plugins/jetpack/changelog/fix-like-block-undefined-postId-array-key @@ -0,0 +1,4 @@ +Significance: patch +Type: bugfix + +Like block: Fix warning displayed when trying to load the Like block on unsupported pages diff --git a/projects/plugins/jetpack/extensions/blocks/like/like.php b/projects/plugins/jetpack/extensions/blocks/like/like.php index 3981e6e46f38d..cd0a1f9635c9d 100644 --- a/projects/plugins/jetpack/extensions/blocks/like/like.php +++ b/projects/plugins/jetpack/extensions/blocks/like/like.php @@ -55,7 +55,7 @@ function render_block( $attr, $content, $block ) { $html = ''; $uniqid = uniqid(); - $post_id = $block->context['postId']; + $post_id = $block->context['postId'] ?? null; $title = esc_html__( 'Like or Reblog', 'jetpack' ); if ( ! $post_id ) { From 85f67b2881bb7ee6b526f90fe46b7e1f6bd1d728 Mon Sep 17 00:00:00 2001 From: Luiz Kowalski Date: Thu, 4 Jul 2024 15:27:20 -0300 Subject: [PATCH 023/254] Jetpack AI Image: move general purpose image generator to production (#38203) * Move general purpose image generator to production * Changelog --- .../changelog/update-jetpack-ai-image-move-to-production | 4 ++++ projects/plugins/jetpack/extensions/index.json | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/update-jetpack-ai-image-move-to-production diff --git a/projects/plugins/jetpack/changelog/update-jetpack-ai-image-move-to-production b/projects/plugins/jetpack/changelog/update-jetpack-ai-image-move-to-production new file mode 100644 index 0000000000000..a6a3cad20dc52 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-jetpack-ai-image-move-to-production @@ -0,0 +1,4 @@ +Significance: minor +Type: enhancement + +Jetpack AI Image: move general purpose image generator to production. diff --git a/projects/plugins/jetpack/extensions/index.json b/projects/plugins/jetpack/extensions/index.json index 9425e8864f864..c7ee8bf1e3c87 100644 --- a/projects/plugins/jetpack/extensions/index.json +++ b/projects/plugins/jetpack/extensions/index.json @@ -68,7 +68,8 @@ "voice-to-content", "ai-featured-image-generator", "ai-title-optimization", - "ai-assistant-experimental-image-generation-support" + "ai-assistant-experimental-image-generation-support", + "ai-general-purpose-image-generator" ], "beta": [ "google-docs-embed", @@ -78,7 +79,6 @@ "videopress/video-chapters", "ai-assistant-backend-prompts", "ai-assistant-extensions-support", - "ai-general-purpose-image-generator", "ai-proofread-breve" ], "experimental": [ "ai-image", "ai-paragraph" ], From 547d87e42e0f5ea8c0817e334043b37ffe0b53b3 Mon Sep 17 00:00:00 2001 From: Karen Attfield Date: Thu, 4 Jul 2024 21:14:25 +0100 Subject: [PATCH 024/254] Classic Theme Helper: Removing the setup call to the featured content class from the Jetpack Mu Wpcom package (#38205) --- .../update-jetpack-mu-wpcom-featured-content-setup-call | 4 ++++ .../packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/update-jetpack-mu-wpcom-featured-content-setup-call diff --git a/projects/packages/jetpack-mu-wpcom/changelog/update-jetpack-mu-wpcom-featured-content-setup-call b/projects/packages/jetpack-mu-wpcom/changelog/update-jetpack-mu-wpcom-featured-content-setup-call new file mode 100644 index 0000000000000..e3cc382c5cea1 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/update-jetpack-mu-wpcom-featured-content-setup-call @@ -0,0 +1,4 @@ +Significance: patch +Type: removed + +Jetpack Mu Wpcom: Removed call to Featured Content class for initial release. diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index eb160073edb88..2d7d5addcf6ac 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -105,7 +105,6 @@ public static function load_features() { // Initializers, if needed. \Marketplace_Products_Updater::init(); - \Automattic\Jetpack\Classic_Theme_Helper\Featured_Content::setup(); // Only load the Calypsoify and Masterbar features on WoA sites. if ( class_exists( '\Automattic\Jetpack\Status\Host' ) && ( new \Automattic\Jetpack\Status\Host() )->is_woa_site() ) { From 104007b9be2a07d489e8692014cda92bda555079 Mon Sep 17 00:00:00 2001 From: Douglas Henri Date: Thu, 4 Jul 2024 17:38:57 -0300 Subject: [PATCH 025/254] AI Assistant: Add feature to tracks event on extensions (#38207) * add feature to jetpack_ai_assistant_extension_generate event * changelog --- .../update-jetpack-ai-inline-extension-tracks-feature | 4 ++++ .../components/ai-assistant-input/index.tsx | 5 ++++- .../ai-assistant/inline-extensions/with-ai-extension.tsx | 1 + 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 projects/plugins/jetpack/changelog/update-jetpack-ai-inline-extension-tracks-feature diff --git a/projects/plugins/jetpack/changelog/update-jetpack-ai-inline-extension-tracks-feature b/projects/plugins/jetpack/changelog/update-jetpack-ai-inline-extension-tracks-feature new file mode 100644 index 0000000000000..a65052c14ca0f --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-jetpack-ai-inline-extension-tracks-feature @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +AI Assistant: Add feature to tracks event diff --git a/projects/plugins/jetpack/extensions/blocks/ai-assistant/inline-extensions/components/ai-assistant-input/index.tsx b/projects/plugins/jetpack/extensions/blocks/ai-assistant/inline-extensions/components/ai-assistant-input/index.tsx index 335cdc9296291..0c8eceb89c2a6 100644 --- a/projects/plugins/jetpack/extensions/blocks/ai-assistant/inline-extensions/components/ai-assistant-input/index.tsx +++ b/projects/plugins/jetpack/extensions/blocks/ai-assistant/inline-extensions/components/ai-assistant-input/index.tsx @@ -28,6 +28,7 @@ export type AiAssistantInputProps = { wrapperRef?: React.MutableRefObject< HTMLDivElement | null >; action?: string; blockType: ExtendedInlineBlockProp; + feature: string; request: ( question: string ) => void; stopSuggestion?: () => void; close?: () => void; @@ -48,6 +49,7 @@ export default function AiAssistantInput( { wrapperRef, action, blockType, + feature, request, stopSuggestion, close, @@ -77,10 +79,11 @@ export default function AiAssistantInput( { const handleSend = useCallback( () => { tracks.recordEvent( 'jetpack_ai_assistant_extension_generate', { block_type: blockType, + feature, } ); request?.( value ); - }, [ blockType, request, tracks, value ] ); + }, [ blockType, feature, request, tracks, value ] ); const handleStopSuggestion = useCallback( () => { tracks.recordEvent( 'jetpack_ai_assistant_extension_stop', { diff --git a/projects/plugins/jetpack/extensions/blocks/ai-assistant/inline-extensions/with-ai-extension.tsx b/projects/plugins/jetpack/extensions/blocks/ai-assistant/inline-extensions/with-ai-extension.tsx index 6d0dcc9f28177..633093e5617b7 100644 --- a/projects/plugins/jetpack/extensions/blocks/ai-assistant/inline-extensions/with-ai-extension.tsx +++ b/projects/plugins/jetpack/extensions/blocks/ai-assistant/inline-extensions/with-ai-extension.tsx @@ -502,6 +502,7 @@ const blockEditWithAiComponents = createHigherOrderComponent( BlockEdit => { inputRef={ inputRef } action={ action } blockType={ blockName } + feature={ feature } request={ handleUserRequest } stopSuggestion={ handleStopSuggestion } close={ handleClose } From 018d3537847d719b2a5941e3575313d4d2ec47b4 Mon Sep 17 00:00:00 2001 From: Jasper Kang Date: Fri, 5 Jul 2024 11:34:09 +1200 Subject: [PATCH 026/254] Stats: Add stats purchases endpoint (#38150) * add purchases endpoint * changelog * fixup project versions * comment * fix wrong http method --- .../changelog/add-stats-purchases-endpoint | 4 +++ projects/packages/stats-admin/composer.json | 2 +- projects/packages/stats-admin/package.json | 2 +- .../packages/stats-admin/src/class-main.php | 2 +- .../stats-admin/src/class-rest-controller.php | 30 +++++++++++++++++++ .../changelog/add-stats-purchases-endpoint | 5 ++++ projects/plugins/jetpack/composer.lock | 4 +-- .../changelog/add-stats-purchases-endpoint | 5 ++++ .../plugins/mu-wpcom-plugin/composer.lock | 4 +-- .../changelog/add-stats-purchases-endpoint | 5 ++++ projects/plugins/wpcomsh/composer.lock | 4 +-- 11 files changed, 58 insertions(+), 9 deletions(-) create mode 100644 projects/packages/stats-admin/changelog/add-stats-purchases-endpoint create mode 100644 projects/plugins/jetpack/changelog/add-stats-purchases-endpoint create mode 100644 projects/plugins/mu-wpcom-plugin/changelog/add-stats-purchases-endpoint create mode 100644 projects/plugins/wpcomsh/changelog/add-stats-purchases-endpoint diff --git a/projects/packages/stats-admin/changelog/add-stats-purchases-endpoint b/projects/packages/stats-admin/changelog/add-stats-purchases-endpoint new file mode 100644 index 0000000000000..ca2d6db7cf60f --- /dev/null +++ b/projects/packages/stats-admin/changelog/add-stats-purchases-endpoint @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Stats: Add purchases endpoint diff --git a/projects/packages/stats-admin/composer.json b/projects/packages/stats-admin/composer.json index 5b19f2020371b..378c7ebae405d 100644 --- a/projects/packages/stats-admin/composer.json +++ b/projects/packages/stats-admin/composer.json @@ -52,7 +52,7 @@ "autotagger": true, "mirror-repo": "Automattic/jetpack-stats-admin", "branch-alias": { - "dev-trunk": "0.20.x-dev" + "dev-trunk": "0.21.x-dev" }, "textdomain": "jetpack-stats-admin", "version-constants": { diff --git a/projects/packages/stats-admin/package.json b/projects/packages/stats-admin/package.json index 6ee71ef1a5de1..128d99549ff6d 100644 --- a/projects/packages/stats-admin/package.json +++ b/projects/packages/stats-admin/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-stats-admin", - "version": "0.20.0", + "version": "0.21.0-alpha", "description": "Stats Dashboard", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/stats-admin/#readme", "bugs": { diff --git a/projects/packages/stats-admin/src/class-main.php b/projects/packages/stats-admin/src/class-main.php index cf83b31c32790..271d29f92ea4b 100644 --- a/projects/packages/stats-admin/src/class-main.php +++ b/projects/packages/stats-admin/src/class-main.php @@ -22,7 +22,7 @@ class Main { /** * Stats version. */ - const VERSION = '0.20.0'; + const VERSION = '0.21.0-alpha'; /** * Singleton Main instance. diff --git a/projects/packages/stats-admin/src/class-rest-controller.php b/projects/packages/stats-admin/src/class-rest-controller.php index 76f9aaca3c50b..c24d766efcc12 100644 --- a/projects/packages/stats-admin/src/class-rest-controller.php +++ b/projects/packages/stats-admin/src/class-rest-controller.php @@ -403,6 +403,17 @@ public function register_rest_routes() { 'permission_callback' => array( $this, 'can_user_view_general_stats_callback' ), ) ); + + // Purchases endpoint. + register_rest_route( + static::$namespace, + sprintf( '/sites/%d/purchases', Jetpack_Options::get_option( 'id' ) ), + array( + 'methods' => WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_site_purchases' ), + 'permission_callback' => array( $this, 'can_user_view_general_stats_callback' ), + ) + ); } /** @@ -1102,6 +1113,25 @@ public function run_commercial_classification( $req ) { ); } + /** + * Get purchases array; I don't see anything sensetive in there, so didn't sentinizie it. + * Plus it is the same case as Jetpack. + * + * @param WP_REST_Request $req The request object. + * @return array + */ + public function get_site_purchases( $req ) { + return WPCOM_Client::request_as_blog_cached( + sprintf( + '/sites/%d/purchases?%s', + Jetpack_Options::get_option( 'id' ), + $this->filter_and_build_query_string( + $req->get_query_params() + ) + ) + ); + } + /** * Return a WP_Error object with a forbidden error. */ diff --git a/projects/plugins/jetpack/changelog/add-stats-purchases-endpoint b/projects/plugins/jetpack/changelog/add-stats-purchases-endpoint new file mode 100644 index 0000000000000..a1c1831fa1ef7 --- /dev/null +++ b/projects/plugins/jetpack/changelog/add-stats-purchases-endpoint @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated composer.lock. + + diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index d73c8ba62b5a4..1675efb892412 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -2467,7 +2467,7 @@ "dist": { "type": "path", "url": "../../packages/stats-admin", - "reference": "f188536acdc40d4d174907d96875313f111fbdb7" + "reference": "ff4b8867ed6377bbbef67e778b08eac0ccbe635c" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2491,7 +2491,7 @@ "autotagger": true, "mirror-repo": "Automattic/jetpack-stats-admin", "branch-alias": { - "dev-trunk": "0.20.x-dev" + "dev-trunk": "0.21.x-dev" }, "textdomain": "jetpack-stats-admin", "version-constants": { diff --git a/projects/plugins/mu-wpcom-plugin/changelog/add-stats-purchases-endpoint b/projects/plugins/mu-wpcom-plugin/changelog/add-stats-purchases-endpoint new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/mu-wpcom-plugin/changelog/add-stats-purchases-endpoint @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/mu-wpcom-plugin/composer.lock b/projects/plugins/mu-wpcom-plugin/composer.lock index 374d96d280fca..58269cae13146 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.lock +++ b/projects/plugins/mu-wpcom-plugin/composer.lock @@ -1306,7 +1306,7 @@ "dist": { "type": "path", "url": "../../packages/stats-admin", - "reference": "f188536acdc40d4d174907d96875313f111fbdb7" + "reference": "ff4b8867ed6377bbbef67e778b08eac0ccbe635c" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1330,7 +1330,7 @@ "autotagger": true, "mirror-repo": "Automattic/jetpack-stats-admin", "branch-alias": { - "dev-trunk": "0.20.x-dev" + "dev-trunk": "0.21.x-dev" }, "textdomain": "jetpack-stats-admin", "version-constants": { diff --git a/projects/plugins/wpcomsh/changelog/add-stats-purchases-endpoint b/projects/plugins/wpcomsh/changelog/add-stats-purchases-endpoint new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/add-stats-purchases-endpoint @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index 153cbbe789207..2793db1d51a74 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -1505,7 +1505,7 @@ "dist": { "type": "path", "url": "../../packages/stats-admin", - "reference": "f188536acdc40d4d174907d96875313f111fbdb7" + "reference": "ff4b8867ed6377bbbef67e778b08eac0ccbe635c" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1529,7 +1529,7 @@ "autotagger": true, "mirror-repo": "Automattic/jetpack-stats-admin", "branch-alias": { - "dev-trunk": "0.20.x-dev" + "dev-trunk": "0.21.x-dev" }, "textdomain": "jetpack-stats-admin", "version-constants": { From e4f09268486f311749e6c4c992aa4e84510a6bcf Mon Sep 17 00:00:00 2001 From: arthur791004 Date: Fri, 5 Jul 2024 11:15:06 +0900 Subject: [PATCH 027/254] MU WPCOM: Port hide-homepage-title feature from ETK (#38190) * MU WPCOM: Port hide-homepage-title feature from ETK * changelog --- .../changelog/mu-wpcom-hide-homepage-title | 4 ++ .../src/class-jetpack-mu-wpcom.php | 1 + .../hide-homepage-title.css | 3 + .../hide-homepage-title.php | 70 +++++++++++++++++++ 4 files changed, 78 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-hide-homepage-title create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/hide-homepage-title/hide-homepage-title.css create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/hide-homepage-title/hide-homepage-title.php diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-hide-homepage-title b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-hide-homepage-title new file mode 100644 index 0000000000000..52a11a8fb73eb --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-hide-homepage-title @@ -0,0 +1,4 @@ +Significance: patch +Type: added + +MU WPCOM: Port the hide-homepage-title feature from ETK diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 2d7d5addcf6ac..ea0902f82a205 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -94,6 +94,7 @@ public static function load_features() { if ( ! class_exists( 'A8C\FSE\Help_Center' ) ) { require_once __DIR__ . '/features/help-center/class-help-center.php'; } + require_once __DIR__ . '/features/hide-homepage-title/hide-homepage-title.php'; require_once __DIR__ . '/features/import-customizations/import-customizations.php'; require_once __DIR__ . '/features/marketplace-products-updater/class-marketplace-products-updater.php'; require_once __DIR__ . '/features/media/heif-support.php'; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/hide-homepage-title/hide-homepage-title.css b/projects/packages/jetpack-mu-wpcom/src/features/hide-homepage-title/hide-homepage-title.css new file mode 100644 index 0000000000000..cad2f55204561 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/hide-homepage-title/hide-homepage-title.css @@ -0,0 +1,3 @@ +body.hide-homepage-title .editor-post-title { + opacity: 0.4; +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/hide-homepage-title/hide-homepage-title.php b/projects/packages/jetpack-mu-wpcom/src/features/hide-homepage-title/hide-homepage-title.php new file mode 100644 index 0000000000000..4b165e7b6756b --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/hide-homepage-title/hide-homepage-title.php @@ -0,0 +1,70 @@ +is_block_editor(); +} + +/** + * Detects if the current page is the homepage post editor, and if the homepage + * title is hidden. + * + * @return bool True if the homepage title features should be used. (See above.) + */ +function wpcom_is_homepage_title_hidden() { + global $post; + + // Handle the case where we are not rendering a post. + if ( ! isset( $post ) ) { + return false; + } + + $hide_homepage_title = (bool) get_theme_mod( 'hide_front_page_title', false ); + $is_homepage = ( (int) get_option( 'page_on_front' ) === $post->ID ); + return (bool) wpcom_is_block_editor_screen() && $hide_homepage_title && $is_homepage; +} + +/** + * Adds custom classes to the admin body classes. + * + * @param string $classes Classes for the body element. + * @return string + */ +function wpcom_add_hide_homepage_title_class_if_needed( $classes ) { + if ( wpcom_is_homepage_title_hidden() ) { + $classes .= ' hide-homepage-title '; + } + + return $classes; +} +add_filter( 'admin_body_class', 'wpcom_add_hide_homepage_title_class_if_needed' ); + +/** + * Enqueue assets + */ +function wpcom_enqueue_hide_homepage_title_assets() { + if ( ! wpcom_is_homepage_title_hidden() ) { + return; + } + + wp_enqueue_style( + 'wpcom-hide-homepage-title', + plugins_url( 'hide-homepage-title.css', __FILE__ ), + array(), + Jetpack_Mu_Wpcom::PACKAGE_VERSION + ); +} +add_action( 'admin_enqueue_scripts', 'wpcom_enqueue_hide_homepage_title_assets' ); From f725afa45afdab6f9cf3bdbefa69e9b20371f1f9 Mon Sep 17 00:00:00 2001 From: arthur791004 Date: Fri, 5 Jul 2024 11:15:26 +0900 Subject: [PATCH 028/254] MU WPCOM: Port font-smoothing-antialiased feature from ETK (#38195) * MU WPCOM: Port font-smoothing-antialiased feature from ETK * changelog --- .../changelog/mu-wpcom-font-smoothing | 4 +++ .../src/class-jetpack-mu-wpcom.php | 1 + .../font-smoothing-antialiased.css | 10 ++++++ .../font-smoothing-antialiased.php | 36 +++++++++++++++++++ 4 files changed, 51 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-font-smoothing create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/font-smoothing-antialiased/font-smoothing-antialiased.css create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/font-smoothing-antialiased/font-smoothing-antialiased.php diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-font-smoothing b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-font-smoothing new file mode 100644 index 0000000000000..7494744a3a342 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-font-smoothing @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +MU WPCOM: Port font-smoothing-antialiased feature from ETK diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index ea0902f82a205..744337b089260 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -90,6 +90,7 @@ public static function load_features() { require_once __DIR__ . '/features/cloudflare-analytics/cloudflare-analytics.php'; require_once __DIR__ . '/features/error-reporting/error-reporting.php'; require_once __DIR__ . '/features/first-posts-stream/first-posts-stream-helpers.php'; + require_once __DIR__ . '/features/font-smoothing-antialiased/font-smoothing-antialiased.php'; // To avoid potential collisions with ETK. if ( ! class_exists( 'A8C\FSE\Help_Center' ) ) { require_once __DIR__ . '/features/help-center/class-help-center.php'; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/font-smoothing-antialiased/font-smoothing-antialiased.css b/projects/packages/jetpack-mu-wpcom/src/features/font-smoothing-antialiased/font-smoothing-antialiased.css new file mode 100644 index 0000000000000..7149796a6dc6f --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/font-smoothing-antialiased/font-smoothing-antialiased.css @@ -0,0 +1,10 @@ +@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) { + body.font-smoothing-antialiased, + /** Overriding an existing core WP rule so the ID selector is necessary */ + body.font-smoothing-antialiased #wpwrap, + body.font-smoothing-antialiased #wpadminbar * { + text-rendering: optimizeLegibility; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/font-smoothing-antialiased/font-smoothing-antialiased.php b/projects/packages/jetpack-mu-wpcom/src/features/font-smoothing-antialiased/font-smoothing-antialiased.php new file mode 100644 index 0000000000000..7499e0e48fcdf --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/font-smoothing-antialiased/font-smoothing-antialiased.php @@ -0,0 +1,36 @@ + Date: Fri, 5 Jul 2024 15:00:02 +0900 Subject: [PATCH 029/254] MU WPCOM: Port override-preview-button-url feature from ETK (#38196) * MU WPCOM: Port override-preview-button-url feature from ETK * changelog * Load feature only on simple sites --- .../mu-wpcom-override-preview-button-url | 4 ++ .../src/class-jetpack-mu-wpcom.php | 1 + .../override-preview-button-url.js | 33 +++++++++++ .../override-preview-button-url.php | 57 +++++++++++++++++++ .../jetpack-mu-wpcom/webpack.config.js | 2 + 5 files changed, 97 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-override-preview-button-url create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/override-preview-button-url/override-preview-button-url.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/override-preview-button-url/override-preview-button-url.php diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-override-preview-button-url b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-override-preview-button-url new file mode 100644 index 0000000000000..ec1c5fef15ce4 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-override-preview-button-url @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +MU WPCOM: Port override-preview-button-url feature from ETK diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 744337b089260..3d2c1206df8b7 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -99,6 +99,7 @@ public static function load_features() { require_once __DIR__ . '/features/import-customizations/import-customizations.php'; require_once __DIR__ . '/features/marketplace-products-updater/class-marketplace-products-updater.php'; require_once __DIR__ . '/features/media/heif-support.php'; + require_once __DIR__ . '/features/override-preview-button-url/override-preview-button-url.php'; require_once __DIR__ . '/features/site-editor-dashboard-link/site-editor-dashboard-link.php'; require_once __DIR__ . '/features/wpcom-block-editor/class-jetpack-wpcom-block-editor.php'; require_once __DIR__ . '/features/wpcom-block-editor/functions.editor-type.php'; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/override-preview-button-url/override-preview-button-url.js b/projects/packages/jetpack-mu-wpcom/src/features/override-preview-button-url/override-preview-button-url.js new file mode 100644 index 0000000000000..f8bd8b1aa7849 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/override-preview-button-url/override-preview-button-url.js @@ -0,0 +1,33 @@ +import { use } from '@wordpress/data'; +import { addQueryArgs } from '@wordpress/url'; + +/** + * The gutenberg block editor preview button opens a new window to a simple site's mapped + * domain. + * Adds logmein query param to editor draft post preview url to add WordPress cookies in + * a first party context ( allowing us to avoid third party cookie issues ) + */ +async function overridePreviewButtonUrl() { + use( registry => { + return { + dispatch: store => { + const namespace = store.name ?? store; + const actions = { ...registry.dispatch( namespace ) }; + + if ( namespace === 'core/editor' && actions.__unstableSaveForPreview ) { + const { __unstableSaveForPreview } = actions; + actions.__unstableSaveForPreview = async ( ...args ) => { + const link = await __unstableSaveForPreview( ...args ); + return link.startsWith( window.location.origin ) + ? link + : addQueryArgs( link, { logmein: 'direct' } ); + }; + } + + return actions; + }, + }; + } ); +} + +overridePreviewButtonUrl(); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/override-preview-button-url/override-preview-button-url.php b/projects/packages/jetpack-mu-wpcom/src/features/override-preview-button-url/override-preview-button-url.php new file mode 100644 index 0000000000000..ae3ae7c905f80 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/override-preview-button-url/override-preview-button-url.php @@ -0,0 +1,57 @@ +is_wpcom_simple() ) { + return false; + } + + global $pagenow; + $allowed_pages = array( + 'post.php', + 'post-new.php', + ); + return isset( $pagenow ) && in_array( $pagenow, $allowed_pages, true ); +} + +/** + * Enqueue assets + */ +function wpcom_enqueue_override_preview_button_url_assets() { + if ( ! should_load_override_preview_button_url() ) { + return; + } + + $asset_file = include Jetpack_Mu_Wpcom::BASE_DIR . 'build/override-preview-button-url/override-preview-button-url.asset.php'; + $script_dependencies = $asset_file['dependencies'] ?? array(); + $script_version = $asset_file['version'] ?? filemtime( Jetpack_Mu_Wpcom::BASE_DIR . 'build/override-preview-button-url/override-preview-button-url.js' ); + $script_id = 'wpcom-override-preview-button-url-script'; + + wp_enqueue_script( + $script_id, + plugins_url( 'build/override-preview-button-url/override-preview-button-url.js', Jetpack_Mu_Wpcom::BASE_FILE ), + $script_dependencies, + $script_version, + true + ); +} +add_action( 'admin_enqueue_scripts', 'wpcom_enqueue_override_preview_button_url_assets' ); diff --git a/projects/packages/jetpack-mu-wpcom/webpack.config.js b/projects/packages/jetpack-mu-wpcom/webpack.config.js index 5a57563896f06..90a04cb02d177 100644 --- a/projects/packages/jetpack-mu-wpcom/webpack.config.js +++ b/projects/packages/jetpack-mu-wpcom/webpack.config.js @@ -16,6 +16,8 @@ module.exports = [ 'core-customizer-css-preview': './src/features/custom-css/custom-css/js/core-customizer-css-preview.js', 'customizer-control': './src/features/custom-css/custom-css/css/customizer-control.css', + 'override-preview-button-url': + './src/features/override-preview-button-url/override-preview-button-url.js', }, mode: jetpackConfig.mode, devtool: jetpackConfig.devtool, From 17aa73d7ed046e90d93022503b9a4715258b4047 Mon Sep 17 00:00:00 2001 From: Foteini Giannaropoulou Date: Fri, 5 Jul 2024 11:02:10 +0300 Subject: [PATCH 030/254] Jetpack Sync: Fix HPOS checksum support for wc_order_operational_data (#38191) * Jetpack Sync: Fix HPOS checksum support for wc_order_operational_data --- projects/packages/sync/changelog/fix-sync-orders-_cart_hash | 4 ++++ projects/packages/sync/src/modules/class-woocommerce.php | 1 + 2 files changed, 5 insertions(+) create mode 100644 projects/packages/sync/changelog/fix-sync-orders-_cart_hash diff --git a/projects/packages/sync/changelog/fix-sync-orders-_cart_hash b/projects/packages/sync/changelog/fix-sync-orders-_cart_hash new file mode 100644 index 0000000000000..730e6d586f9ae --- /dev/null +++ b/projects/packages/sync/changelog/fix-sync-orders-_cart_hash @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Jetpack Sync: Fix HPOS checksum support for wc_order_operational_data diff --git a/projects/packages/sync/src/modules/class-woocommerce.php b/projects/packages/sync/src/modules/class-woocommerce.php index a6b53caaab3fa..0fc6f3ee1cce8 100644 --- a/projects/packages/sync/src/modules/class-woocommerce.php +++ b/projects/packages/sync/src/modules/class-woocommerce.php @@ -557,6 +557,7 @@ public function filter_action_scheduler_comments( $can_sync, $comment ) { '_download_permissions_granted', // See https://github.com/woocommerce/woocommerce/blob/8ed6e7436ff87c2153ed30edd83c1ab8abbdd3e9/includes/data-stores/class-wc-order-data-store-cpt.php#L594 . '_order_stock_reduced', + '_cart_hash', // Woocommerce order refunds. // See https://github.com/woocommerce/woocommerce/blob/b8a2815ae546c836467008739e7ff5150cb08e93/includes/data-stores/class-wc-order-refund-data-store-cpt.php#L20 . From 780144ed28e7db5384eb0e7ce5378d15c47a997b Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Fri, 5 Jul 2024 14:09:07 +0530 Subject: [PATCH 031/254] Social: Fix permissions for update/delete connections endpoints (#38187) * Fix the permissions for the update and disconnect connections endpoint * Fix lints * Add changelog * Ensure that non-editors cannot mark/unmark connections as shared. * Fix up versions * Fallback to author permissions for update * Ensure that user_id exists on connection --- ...te-permissions-for-the-disconnect-endpoint | 4 ++ projects/packages/publicize/package.json | 2 +- .../publicize/src/class-publicize.php | 8 +-- .../publicize/src/class-rest-controller.php | 56 ++++++++++++++++++- 4 files changed, 62 insertions(+), 8 deletions(-) create mode 100644 projects/packages/publicize/changelog/fix-social-update-permissions-for-the-disconnect-endpoint diff --git a/projects/packages/publicize/changelog/fix-social-update-permissions-for-the-disconnect-endpoint b/projects/packages/publicize/changelog/fix-social-update-permissions-for-the-disconnect-endpoint new file mode 100644 index 0000000000000..5ff42effdeed8 --- /dev/null +++ b/projects/packages/publicize/changelog/fix-social-update-permissions-for-the-disconnect-endpoint @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Social | Fixed the permissions for update and disconnection connections endpoints diff --git a/projects/packages/publicize/package.json b/projects/packages/publicize/package.json index b47c13691b3b5..f938bb9acf31c 100644 --- a/projects/packages/publicize/package.json +++ b/projects/packages/publicize/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize", - "version": "0.47.1", + "version": "0.47.2-alpha", "description": "Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/publicize/#readme", "bugs": { diff --git a/projects/packages/publicize/src/class-publicize.php b/projects/packages/publicize/src/class-publicize.php index be4070e853822..715d6cd3f8495 100644 --- a/projects/packages/publicize/src/class-publicize.php +++ b/projects/packages/publicize/src/class-publicize.php @@ -254,7 +254,7 @@ public function get_all_connections_for_user( $args = array() ) { 'connection_id' => $connection['connection_data']['id'], 'can_disconnect' => self::can_manage_connection( $connection['connection_data'] ), 'profile_link' => $this->get_profile_link( $service_name, $connection ), - 'shared' => $connection['connection_data']['user_id'] === '0', + 'shared' => '0' === $connection['connection_data']['user_id'], 'status' => 'ok', ) ); @@ -491,7 +491,7 @@ public function refresh_connections() { } $connections = get_transient( self::JETPACK_SOCIAL_CONNECTIONS_TRANSIENT ); - if ( $connections === false ) { + if ( false === $connections ) { $xml = new Jetpack_IXR_Client(); $xml->query( 'jetpack.fetchPublicizeConnections' ); if ( ! $xml->isError() ) { @@ -693,7 +693,7 @@ public function test_connection( $service_name, $connection ) { public function post_is_done_sharing( $post_id = null ) { // Defaults to current post if $post_id is null. $post = get_post( $post_id ); - if ( $post === null ) { + if ( null === $post ) { return false; } @@ -708,7 +708,7 @@ public function post_is_done_sharing( $post_id = null ) { * @param WP_Post $post Post object. */ public function save_publicized( $post_ID, $post = null ) { - if ( $post === null ) { + if ( null === $post ) { return; } // Only do this when a post transitions to being published. diff --git a/projects/packages/publicize/src/class-rest-controller.php b/projects/packages/publicize/src/class-rest-controller.php index 493617b2e2ad2..b2dd19d7de37a 100644 --- a/projects/packages/publicize/src/class-rest-controller.php +++ b/projects/packages/publicize/src/class-rest-controller.php @@ -82,7 +82,7 @@ public function register_rest_routes() { // Dismiss a notice. // Flagged to be removed after deprecation. - // @deprecated $$next_version$$ + // @deprecated $$next_version$$. register_rest_route( 'jetpack/v4', '/social/dismiss-notice', @@ -146,7 +146,7 @@ public function register_rest_routes() { array( 'methods' => WP_REST_Server::EDITABLE, 'callback' => array( $this, 'update_publicize_connection' ), - 'permission_callback' => array( $this, 'require_author_privilege_callback' ), + 'permission_callback' => array( $this, 'update_connection_permission_check' ), 'schema' => array( $this, 'get_jetpack_social_connections_update_schema' ), ) ); @@ -158,11 +158,61 @@ public function register_rest_routes() { array( 'methods' => WP_REST_Server::DELETABLE, 'callback' => array( $this, 'delete_publicize_connection' ), - 'permission_callback' => array( $this, 'require_author_privilege_callback' ), + 'permission_callback' => array( $this, 'manage_connection_permission_check' ), ) ); } + /** + * Manage connection permission check + * + * @param WP_REST_Request $request The request object, which includes the parameters. + * + * @return bool True if the user can manage the connection, false otherwise. + */ + public function manage_connection_permission_check( WP_REST_Request $request ) { + + if ( current_user_can( 'edit_others_posts' ) ) { + return true; + } + + /** + * Publicize instance. + * + * @var Publicize $publicize Publicize instance. + */ + global $publicize; + + $connection = $publicize->get_connection_for_user( $request->get_param( 'connection_id' ) ); + + $owns_connection = isset( $connection['user_id'] ) && get_current_user_id() === (int) $connection['user_id']; + + return $owns_connection; + } + + /** + * Update connection permission check. + * + * @param WP_REST_Request $request The request object, which includes the parameters. + * + * @return bool True if the user can update the connection, false otherwise. + */ + public function update_connection_permission_check( WP_REST_Request $request ) { + + // If the user cannot manage the connection, they can't update it either. + if ( ! $this->manage_connection_permission_check( $request ) ) { + return false; + } + + // If the connection is being marked/unmarked as shared. + if ( $request->has_param( 'shared' ) ) { + // Only editors and above can mark a connection as shared. + return current_user_can( 'edit_others_posts' ); + } + + return $this->require_author_privilege_callback(); + } + /** * Only administrators can access the API. * From 40c3aaa7c157a6571f220d77557de0154d1d93fc Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Fri, 5 Jul 2024 14:48:35 +0530 Subject: [PATCH 032/254] Social Connections: Select the reconnecting account by default on confirmation screen (#38193) * Social: Select the reconnecting account by default on confirmation screen * Add changelog * Fix up versions * Prevent an account from being selected if it's already being created * Fix unit tests --- ...-account-by-default-on-confirmation-screen | 4 +++ .../publicize-components/package.json | 2 +- .../connection-management/reconnect.tsx | 32 +++++++++++-------- .../confirmation-form/index.tsx | 20 ++++++++++-- .../tests/confirmation-form.test.js | 2 ++ .../social-store/actions/connection-data.js | 15 +++++++++ .../src/social-store/actions/constants.ts | 2 ++ .../social-store/reducer/connection-data.js | 8 +++++ .../social-store/selectors/connection-data.js | 10 ++++++ .../src/social-store/types.ts | 1 + 10 files changed, 78 insertions(+), 18 deletions(-) create mode 100644 projects/js-packages/publicize-components/changelog/update-social-select-the-reconnecting-account-by-default-on-confirmation-screen diff --git a/projects/js-packages/publicize-components/changelog/update-social-select-the-reconnecting-account-by-default-on-confirmation-screen b/projects/js-packages/publicize-components/changelog/update-social-select-the-reconnecting-account-by-default-on-confirmation-screen new file mode 100644 index 0000000000000..ff27efceca7cc --- /dev/null +++ b/projects/js-packages/publicize-components/changelog/update-social-select-the-reconnecting-account-by-default-on-confirmation-screen @@ -0,0 +1,4 @@ +Significance: patch +Type: added + +Updated the connections cofirmation logic to preselect the reconnecting account by default on confirmation screen diff --git a/projects/js-packages/publicize-components/package.json b/projects/js-packages/publicize-components/package.json index a9bcad791a093..da26ff630a94c 100644 --- a/projects/js-packages/publicize-components/package.json +++ b/projects/js-packages/publicize-components/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize-components", - "version": "0.55.1", + "version": "0.55.2-alpha", "description": "A library of JS components required by the Publicize editor plugin", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/publicize-components/#readme", "bugs": { diff --git a/projects/js-packages/publicize-components/src/components/connection-management/reconnect.tsx b/projects/js-packages/publicize-components/src/components/connection-management/reconnect.tsx index bab4d746457b3..7dedd9865b39d 100644 --- a/projects/js-packages/publicize-components/src/components/connection-management/reconnect.tsx +++ b/projects/js-packages/publicize-components/src/components/connection-management/reconnect.tsx @@ -21,7 +21,7 @@ export type ReconnectProps = { * @returns {import('react').ReactNode} - React element */ export function Reconnect( { connection, service, variant = 'link' }: ReconnectProps ) { - const { deleteConnectionById, setKeyringResult, openConnectionsModal } = + const { deleteConnectionById, setKeyringResult, openConnectionsModal, setReconnectingAccount } = useDispatch( socialStore ); const { isDisconnecting } = useSelect( @@ -58,6 +58,12 @@ export function Reconnect( { connection, service, variant = 'link' }: ReconnectP return; } + await setReconnectingAccount( + // Join service name and external ID + // just in case the external ID alone is not unique. + `${ connection.service_name }:${ connection.external_id }` + ); + const formData = new FormData(); if ( service.ID === 'mastodon' ) { @@ -65,24 +71,22 @@ export function Reconnect( { connection, service, variant = 'link' }: ReconnectP } requestAccess( formData ); - }, [ connection, deleteConnectionById, requestAccess, service.ID ] ); + }, [ connection, deleteConnectionById, requestAccess, service.ID, setReconnectingAccount ] ); if ( ! connection.can_disconnect ) { return null; } return ( - <> - - + ); } diff --git a/projects/js-packages/publicize-components/src/components/manage-connections-modal/confirmation-form/index.tsx b/projects/js-packages/publicize-components/src/components/manage-connections-modal/confirmation-form/index.tsx index b59d5db91e616..ee578ef4b0349 100644 --- a/projects/js-packages/publicize-components/src/components/manage-connections-modal/confirmation-form/index.tsx +++ b/projects/js-packages/publicize-components/src/components/manage-connections-modal/confirmation-form/index.tsx @@ -53,11 +53,12 @@ function AccountInfo( { label, profile_picture }: AccountInfoProps ) { */ export function ConfirmationForm( { keyringResult, onComplete, isAdmin }: ConfirmationFormProps ) { const supportedServices = useSupportedServices(); - const { existingConnections } = useSelect( select => { + const { existingConnections, reconnectingAccount } = useSelect( select => { const store = select( socialStore ); return { existingConnections: store.getConnections(), + reconnectingAccount: store.getReconnectingAccount(), }; }, [] ); @@ -121,7 +122,7 @@ export function ConfirmationForm( { keyringResult, onComplete, isAdmin }: Confir return { connected, not_connected }; }, [ isAlreadyConnected, keyringResult, service ] ); - const { createConnection } = useDispatch( socialStore ); + const { createConnection, setReconnectingAccount } = useDispatch( socialStore ); const onConfirm = useCallback( async ( event: React.FormEvent ) => { @@ -149,17 +150,24 @@ export function ConfirmationForm( { keyringResult, onComplete, isAdmin }: Confir option => option.value === external_user_ID ); + if ( reconnectingAccount ) { + setReconnectingAccount( '' ); + } + // Do not await the connection creation to unblock the UI createConnection( data, { display_name: accountInfo?.label, profile_picture: accountInfo?.profile_picture, service_name: service.ID, + external_id: external_user_ID, } ); onComplete(); }, [ createConnection, + reconnectingAccount, + setReconnectingAccount, createErrorNotice, keyringResult.ID, onComplete, @@ -205,6 +213,12 @@ export function ConfirmationForm( { keyringResult, onComplete, isAdmin }: Confir }
{ accounts.not_connected.map( ( option, index ) => { + // If we are reconnecting an account, preselect it, + // otherwise, preselect the first account + const defaultChecked = reconnectingAccount + ? reconnectingAccount === `${ service?.ID }:${ option.value }` + : index === 0; + return ( // eslint-disable-next-line jsx-a11y/label-has-associated-control -- https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues/869
); } @@ -371,26 +381,6 @@ class Search extends React.Component {
); }; - - closeButton = () => { - if ( ! this.props.hideClose && ( this.state.keyword || this.state.isOpen ) ) { - return ( -
- -
- ); - } - - return null; - }; } export default Search; diff --git a/projects/plugins/jetpack/_inc/client/components/search/style.scss b/projects/plugins/jetpack/_inc/client/components/search/style.scss index 9538ff8f16e65..fa387a1dc26e9 100644 --- a/projects/plugins/jetpack/_inc/client/components/search/style.scss +++ b/projects/plugins/jetpack/_inc/client/components/search/style.scss @@ -27,6 +27,31 @@ background-color: $white; border-radius: inherit; height: 100%; + + &:focus-visible { + outline-offset: -2px; + } + } + + .dops-search__clear-btn { + min-width: 48px; + padding: 0.25em; + + background: none; + border: solid 1px currentColor; + border-radius: 4px; + color: var(--jp-gray-50); + + &:focus-visible { + outline-offset: 2px; + } + } + + .dops-search__icon-navigation, + .dops-search__clear-btn { + &:focus-visible { + outline: solid 2px var(--jp-green-50); + } } .dops-search__open-icon, @@ -68,7 +93,9 @@ top: 0; right: 0; overflow: hidden; - + gap: 0.25rem; + background-color: var(--jp-white); + .dops-search__input-fade { position: relative; flex: 1 1 auto; diff --git a/projects/plugins/jetpack/changelog/fix-jetpack-search-clear-btn b/projects/plugins/jetpack/changelog/fix-jetpack-search-clear-btn new file mode 100644 index 0000000000000..d7d13ec06df07 --- /dev/null +++ b/projects/plugins/jetpack/changelog/fix-jetpack-search-clear-btn @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +Update search close button behaviour diff --git a/tools/eslint-excludelist.json b/tools/eslint-excludelist.json index 88596c607a4ed..e4b17c2718378 100644 --- a/tools/eslint-excludelist.json +++ b/tools/eslint-excludelist.json @@ -10,7 +10,6 @@ "projects/plugins/jetpack/_inc/client/components/popover/index.jsx", "projects/plugins/jetpack/_inc/client/components/popover/util.js", "projects/plugins/jetpack/_inc/client/components/root-child/index.jsx", - "projects/plugins/jetpack/_inc/client/components/search/index.jsx", "projects/plugins/jetpack/_inc/client/components/section-nav/index.jsx", "projects/plugins/jetpack/_inc/client/components/section-nav/item.jsx", "projects/plugins/jetpack/_inc/client/components/section-nav/tabs.jsx", From 6e9ff5de8aabfe1897b9c44abce46c25ffbf6037 Mon Sep 17 00:00:00 2001 From: Igor Zinovyev Date: Fri, 5 Jul 2024 20:21:58 +0300 Subject: [PATCH 037/254] Add release tracks to the Monorepo CLI. (#38095) * Added a tracks sending script. * Added a version diff function. * Added release start event tracking. * Added the point release number check. * Added more logic to the start event data. * Update tools/includes/version-compare.sh Co-authored-by: Brad Jorsch * Update tools/includes/version-compare.sh Co-authored-by: Brad Jorsch * Update tools/includes/version-compare.sh Co-authored-by: Brad Jorsch * Update tools/release-plugin.sh Co-authored-by: Brad Jorsch * Changed the increment function name to better reflect the getter status. * Changed the version_diff to output actual values. * Optimized the logic a bit, h/t @anomiex. * Removed the unneded function, h/t @anomiex. * Added release step tracking events. * Update tools/includes/send_tracks_event.sh Co-authored-by: tbradsha <32492176+tbradsha@users.noreply.github.com> * Added a return statement. * Fixed the additional data to be like a flat object. --------- Co-authored-by: Brad Jorsch Co-authored-by: tbradsha <32492176+tbradsha@users.noreply.github.com> --- tools/includes/send_tracks_event.sh | 41 ++++++++++++++ tools/includes/version-compare.sh | 86 +++++++++++++++++++++++++++++ tools/release-plugin.sh | 53 +++++++++++++++++- 3 files changed, 179 insertions(+), 1 deletion(-) create mode 100644 tools/includes/send_tracks_event.sh diff --git a/tools/includes/send_tracks_event.sh b/tools/includes/send_tracks_event.sh new file mode 100644 index 0000000000000..b63064644ab45 --- /dev/null +++ b/tools/includes/send_tracks_event.sh @@ -0,0 +1,41 @@ +#!/bin/bash + +# Sends a tracks event. +# - 1: Event name +# - 2: An optional JSON-formatted payload of extra tracks params, e.g. `{"a":1, "b":2}` +function send_tracks_event { + # Bail if no event name is provided. + if [[ -z "$1" ]]; then + return + fi + + local TRACKS_URL TRACKS_RESPONSE USER_AGENT PAYLOAD + TRACKS_URL='https://public-api.wordpress.com/rest/v1.1/tracks/record?http_envelope=1' + USER_AGENT='jetpack-monorepo-cli' + PAYLOAD=$(jq -nr --arg email "$(git config --get user.email)" '.commonProps._ul = $email') + + # Add event name to payload. + PAYLOAD=$(jq -r --arg eventName "$1" '.events = [{_en: $eventName}]' <<< "$PAYLOAD") + + # Add extra params to payload if provided. + if [[ -n "$2" ]]; then + PAYLOAD=$(jq --argjson extraParams "$2" '.events[0] += $extraParams' <<< "$PAYLOAD") + fi + + # True on fail to bypass pipefail. + TRACKS_RESPONSE=$(curl --fail -sS "$TRACKS_URL" \ + -H "User-Agent: $USER_AGENT" \ + -H 'Accept-Encoding: gzip, deflate' \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + --data "$PAYLOAD" \ + --compressed 2>&1 || true) + + if ! jq -e . <<< "$TRACKS_RESPONSE" &> /dev/null; then + # Likely a cURL error response. + echo "Invalid response: $TRACKS_RESPONSE" + elif ! jq -e '.code == 202' <<< "$TRACKS_RESPONSE" &> /dev/null; then + # Likely a Tracks error response. + echo "Failed Tracks call: $TRACKS_RESPONSE" + fi +} diff --git a/tools/includes/version-compare.sh b/tools/includes/version-compare.sh index 2bb5dc7218cab..10bfdd10c5b0c 100644 --- a/tools/includes/version-compare.sh +++ b/tools/includes/version-compare.sh @@ -88,3 +88,89 @@ function version_compare { [[ ${#A[@]} -gt ${#B[@]} ]] fi } + +# Compute the difference between two version numbers, semver style. +# +# Note this is a bit looser than `pnpm semver`, as it accepts 4-part versions. +# +# @param $1 First version. +# @param $2 Second version. +# Outputs: equal, suffix, patch, minor, or major. +function version_diff { + # Variable for the version_difference call + local INCREMENT + + # Returning 0 if neither $1 > $2, nor $2 > $1 + if ! version_compare "$1" "$2" 1 && ! version_compare "$2" "$1" 1; then + echo "equal" + return + fi + + if version_compare "$1" "$2"; then + + # $1 is greater than $2 + version_get_increment "$2" "$1" + else + + # $2 is greater than $1 + version_get_increment "$1" "$2" + fi + + case "$INCREMENT" in + "1") + echo "prerelease" + ;; + "2") + echo "patch" + ;; + "3") + echo "minor" + ;; + "4") + echo "major" + ;; + esac +} + +# Compute the increment needed to get from $1 to $2, semver style. +# +# Note this is a bit looser than `pnpm semver`, as it accepts 4-part versions. +# +# @param $1 First version. +# @param $2 Second version. +function version_get_increment { + + local V1="${1%%+*}" V2="${2%%+*}" + + local A=() B=() i DIFF + + # First, compare the version parts. + IFS='.' read -r -a A <<<"${V1%%-*}" + IFS='.' read -r -a B <<<"${V2%%-*}" + + while [[ ${#A[@]} -lt ${#B[@]} ]]; do + A+=( 0 ) + done + while [[ ${#B[@]} -lt ${#A[@]} ]]; do + B+=( 0 ) + done + + i=0 + + # If AA is ahead of BB, we have found our difference. + while [[ $i -lt ${#A[@]} && $i -lt ${#B[@]} ]]; do + local AA=${A[$i]} + local BB=${B[$i]} + + if [[ $AA -lt $BB ]]; then + let DIFF="4 - $i" + + INCREMENT=$DIFF + return + fi + i=$((i + 1)) + done + + # Version parts were equal, this means that the difference is the suffix. + INCREMENT=1 +} diff --git a/tools/release-plugin.sh b/tools/release-plugin.sh index fd40355eb2cd7..f801fff87e1a3 100755 --- a/tools/release-plugin.sh +++ b/tools/release-plugin.sh @@ -10,7 +10,7 @@ BASE=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd) . "$BASE/tools/includes/version-compare.sh" . "$BASE/tools/includes/normalize-version.sh" . "$BASE/tools/includes/changelogger.sh" - +. "$BASE/tools/includes/send_tracks_event.sh" # Instructions function usage { @@ -143,6 +143,50 @@ done proceed_p "" "Proceed releasing above projects?" Y +# Sending tracking event +TRACKING_DATA="{}" +RELEASED_PLUGINS="{}" +for PLUGIN in "${!PROJECTS[@]}"; do + + CUR_VERSION=$("$BASE/tools/plugin-version.sh" "$PLUGIN") + VERSION_DIFF=$( version_diff "$CUR_VERSION" "${PROJECTS[$PLUGIN]}" ) + + if [[ "${PROJECTS[$PLUGIN]}" == *-* ]]; then + + # The version is a prerelease. + if proceed_p "" "Is this $PLUGIN release fixing a known problem caused by a previous release?" N; then + VERSION_DIFF="bugfix" + fi + + elif [[ "${PROJECTS[$PLUGIN]}" =~ ^[0-9]+\.[0-9]+\.[0.]*[1-9] ]]; then + + # The version in patch-level. + VERSION_DIFF="bugfix" + + # If a project follows semver versioning, we prompt. + if jq -e '.extra.changelogger["versioning"] == "semver"' "$BASE/projects/$PLUGIN/composer.json" &>/dev/null; then + if ! proceed_p "" "Is this $PLUGIN release fixing a known problem caused by a previous release?" N; then + VERSION_DIFF="patch" + fi + fi + fi + + RELEASED_PLUGINS=$( + jq \ + --arg property "$( echo "$PLUGIN" | sed 's/\//_/' )_release_type" \ + --arg value "$VERSION_DIFF" \ + '.[ $property ] = $value' <<< "$RELEASED_PLUGINS" + ) + RELEASED_PLUGINS=$( + jq \ + --arg property "$( echo "$PLUGIN" | sed 's/\//_/' )_version" \ + --arg value "${PROJECTS[$PLUGIN]}" \ + '.[ $property ] = $value' <<< "$RELEASED_PLUGINS" + ) +done + +send_tracks_event "jetpack_release_start" "$RELEASED_PLUGINS" + # Figure out which release branch prefixes to use. PREFIXDATA=$(jq -n 'reduce inputs as $in ({}; .[ $in.extra["release-branch-prefix"] | if . == null then empty elif type == "array" then .[] else . end ] += [ input_filename | capture( "projects/plugins/(?

[^/]+)/composer\\.json$" ).p ] ) | to_entries | sort_by( ( .value | -length ), .key ) | from_entries' "$BASE"/projects/plugins/*/composer.json) TMP=$(jq -rn --argjson d "$PREFIXDATA" '$d | reduce to_entries[] as $p ({ s: ( $ARGS.positional | map( sub( "^plugins/"; "" ) ) ), o: []}; if $p.value - .s == [] then .o += [ $p.key ] | .s -= $p.value else . end) | .o[]' --args "${!PROJECTS[@]}") @@ -173,9 +217,11 @@ fi git checkout -b prerelease if ! git push -u origin HEAD; then + send_tracks_event "jetpack_release_prerelease_push" '{"result": "failure"}' die "Branch push failed. Check #jetpack-releases and make sure no one is doing a release already, then delete the branch at https://github.com/Automattic/jetpack/branches" fi GITBASE=$( git rev-parse --verify HEAD ) +send_tracks_event "jetpack_release_prerelease_push" '{"result": "success"}' # Loop through the projects and update the changelogs after building the arguments. for PLUGIN in "${!PROJECTS[@]}"; do @@ -246,14 +292,17 @@ while [[ $SECONDS -lt $TIMEOUT && -z "$BUILDID" ]]; do done if [[ -z "$BUILDID" ]]; then + send_tracks_event "jetpack_release_github_build" '{"result": "not_found"}' die "Build ID not found. Check GitHub actions to see if build on prerelease branch is running, then continue with manual steps." fi yellow "Build ID found, waiting for build to complete and push to mirror repos." if ! gh run watch "${BUILDID[0]}" --exit-status; then + send_tracks_event "jetpack_release_github_build" '{"result": "failure"}' echo "Build failed! Check for build errors on GitHub for more information." && die fi +send_tracks_event "jetpack_release_github_build" '{"result": "success"}' yellow "Build is complete." # Wait for new versions of any composer packages to be up. @@ -409,3 +458,5 @@ if [[ ${#MANUALBOTH[@]} -gt 0 ]]; then the stable tag with \`./tools/stable-tag.sh \` and you're all set. EOM fi + +send_tracks_event "jetpack_release_done" From 21c3e00d9ba1fe1031602d8df0f076a00c80ca36 Mon Sep 17 00:00:00 2001 From: Mikael Korpela Date: Fri, 5 Jul 2024 20:36:56 +0300 Subject: [PATCH 038/254] Subscription and payment blocks: improve loading animation (#38174) --- .../changelog/update-subscribe-modal-loading | 4 + .../blocks/subscriptions/spinner.svg | 23 +++++ .../extensions/blocks/subscriptions/view.js | 20 ++++- .../extensions/blocks/subscriptions/view.scss | 3 - .../jetpack/extensions/shared/memberships.js | 90 ++++++++++++------- .../extensions/shared/memberships.scss | 90 +++++++++++-------- .../subscribe-modal/subscribe-modal.js | 8 +- .../subscribe-overlay/subscribe-overlay.js | 9 +- 8 files changed, 168 insertions(+), 79 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/update-subscribe-modal-loading create mode 100644 projects/plugins/jetpack/extensions/blocks/subscriptions/spinner.svg diff --git a/projects/plugins/jetpack/changelog/update-subscribe-modal-loading b/projects/plugins/jetpack/changelog/update-subscribe-modal-loading new file mode 100644 index 0000000000000..637c4fdf39461 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-subscribe-modal-loading @@ -0,0 +1,4 @@ +Significance: minor +Type: enhancement + +Subscribe block: improve loading animation diff --git a/projects/plugins/jetpack/extensions/blocks/subscriptions/spinner.svg b/projects/plugins/jetpack/extensions/blocks/subscriptions/spinner.svg new file mode 100644 index 0000000000000..9c7bc859acfa6 --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/subscriptions/spinner.svg @@ -0,0 +1,23 @@ + + + + + diff --git a/projects/plugins/jetpack/extensions/blocks/subscriptions/view.js b/projects/plugins/jetpack/extensions/blocks/subscriptions/view.js index 06f1fe47d4c19..af141a3099d29 100644 --- a/projects/plugins/jetpack/extensions/blocks/subscriptions/view.js +++ b/projects/plugins/jetpack/extensions/blocks/subscriptions/view.js @@ -2,7 +2,7 @@ import './view.scss'; import '../../shared/memberships.scss'; import domReady from '@wordpress/dom-ready'; -import { showModal } from '../../shared/memberships'; +import { showModal, spinner } from '../../shared/memberships'; // @ts-ignore function show_iframe_retrieve_subscriptions_from_email() { @@ -33,7 +33,7 @@ function show_iframe( data ) { const url = 'https://subscribe.wordpress.com/memberships/?' + params.toString(); - showModal( url ); + return showModal( url ); } domReady( function () { @@ -49,11 +49,21 @@ domReady( function () { forms.forEach( form => { if ( ! form.payments_attached ) { form.payments_attached = true; + + const button = form.querySelector( 'button[type="submit"]' ); + + // Injects loading animation in hidden state + button.insertAdjacentHTML( 'beforeend', spinner ); + form.addEventListener( 'submit', function ( event ) { if ( form.resubmitted ) { return; } + button.classList.add( 'is-loading' ); + button.setAttribute( 'aria-busy', 'true' ); + button.setAttribute( 'aria-live', 'polite' ); + // If email is empty, we will ask for it in the modal that opens // Email input can be hidden for "button only style" for example. let email = form.querySelector( 'input[type=email]' )?.value ?? ''; @@ -83,6 +93,12 @@ domReady( function () { app_source, post_access_level: form.dataset.post_access_level, display: 'alternate', + } ).then( () => { + // Allows hiding other modals when the subscription modal/iframe shows up, e.g. hiding the subscription overlay modal + form.dispatchEvent( new Event( 'subscription-modal-loaded' ) ); + + button.classList.remove( 'is-loading' ); + button.setAttribute( 'aria-busy', 'false' ); } ); } } ); diff --git a/projects/plugins/jetpack/extensions/blocks/subscriptions/view.scss b/projects/plugins/jetpack/extensions/blocks/subscriptions/view.scss index 1255e4bf2daa7..f6ed193d3c806 100644 --- a/projects/plugins/jetpack/extensions/blocks/subscriptions/view.scss +++ b/projects/plugins/jetpack/extensions/blocks/subscriptions/view.scss @@ -1,10 +1,7 @@ -@import '@automattic/jetpack-base-styles/gutenberg-base-styles'; - @function x($var-name, $fallback) { @return unquote("var(#{$var-name}, #{$fallback})"); } - .is-style-compact { .is-not-subscriber { .wp-block-jetpack-subscriptions__button, diff --git a/projects/plugins/jetpack/extensions/shared/memberships.js b/projects/plugins/jetpack/extensions/shared/memberships.js index 079766ef95ed5..9cb258c21b3d4 100644 --- a/projects/plugins/jetpack/extensions/shared/memberships.js +++ b/projects/plugins/jetpack/extensions/shared/memberships.js @@ -22,53 +22,79 @@ export function handleIframeResult( eventFromIframe ) { window.removeEventListener( 'message', handleIframeResult ); const dialog = document.getElementById( 'memberships-modal-window' ); dialog.close(); - document.body.classList.remove( 'modal-open' ); + document.body.classList.remove( 'jetpack-memberships-modal-open' ); } } } export function showModal( url ) { - // prevent double scroll bars. We use the entire viewport for the modal so we need to hide overflow on the body element. - document.body.classList.add( 'modal-open' ); + return new Promise( resolvePromise => { + const existingModal = document.getElementById( 'memberships-modal-window' ); + if ( existingModal ) { + document.body.removeChild( existingModal ); + } - const existingModal = document.getElementById( 'memberships-modal-window' ); - if ( existingModal ) { - document.body.removeChild( existingModal ); - } + const dialog = document.createElement( 'dialog' ); + dialog.setAttribute( 'id', 'memberships-modal-window' ); + dialog.classList.add( 'jetpack-memberships-modal' ); + dialog.classList.add( 'is-loading' ); - const dialog = document.createElement( 'dialog' ); - dialog.setAttribute( 'id', 'memberships-modal-window' ); + const iframe = document.createElement( 'iframe' ); + iframe.setAttribute( 'frameborder', '0' ); + iframe.setAttribute( 'allowtransparency', 'true' ); + iframe.setAttribute( 'allowfullscreen', 'true' ); - const iframe = document.createElement( 'iframe' ); - const inputLanguage = document.querySelector( 'input[name="lang"]' ); - let siteLanguage = null; - if ( inputLanguage ) { - siteLanguage = inputLanguage.value; - } - iframe.setAttribute( 'id', 'memberships-modal-iframe' ); - iframe.innerText = - 'This feature requires inline frames. You have iframes disabled or your browser does not support them.'; - iframe.src = url + '&display=alternate&jwt_token=' + getTokenFromCookie(); - if ( siteLanguage ) { - iframe.src = iframe.src + '&lang=' + siteLanguage; - } - iframe.setAttribute( 'frameborder', '0' ); - iframe.setAttribute( 'allowtransparency', 'true' ); - iframe.setAttribute( 'allowfullscreen', 'true' ); - dialog.classList.add( 'jetpack-memberships-modal' ); + iframe.addEventListener( 'load', function () { + // prevent double scroll bars. We use the entire viewport for the modal so we need to hide overflow on the body element. + document.body.classList.add( 'jetpack-memberships-modal-open' ); + dialog.classList.remove( 'is-loading' ); + resolvePromise(); + } ); + + iframe.setAttribute( 'id', 'memberships-modal-iframe' ); + iframe.innerText = + 'This feature requires inline frames. You have iframes disabled or your browser does not support them.'; + iframe.src = url + '&display=alternate&jwt_token=' + getTokenFromCookie(); - document.body.appendChild( dialog ); - dialog.appendChild( iframe ); + const siteLanguage = document.querySelector( 'input[name="lang"]' )?.value; + if ( siteLanguage ) { + iframe.src = iframe.src + '&lang=' + siteLanguage; + } + document.body.appendChild( dialog ); + dialog.appendChild( iframe ); - window.addEventListener( 'message', handleIframeResult, false ); - dialog.showModal(); + window.addEventListener( 'message', handleIframeResult, false ); + dialog.showModal(); + } ); } +export const spinner = + '' + + ' ' + + ' ' + + ' ' + + ' ' + + ''; + function setUpModal( button ) { + // Injects loading animation in hidden state + button.insertAdjacentHTML( 'beforeend', spinner ); + button.addEventListener( 'click', event => { event.preventDefault(); - showModal( button.getAttribute( 'href' ) ); - this.blur(); + + // Shows the injected loading animation in button + button.classList.add( 'is-loading' ); + button.setAttribute( 'aria-busy', 'true' ); + button.setAttribute( 'aria-live', 'polite' ); + + const url = button.getAttribute( 'href' ); + showModal( url ).then( () => { + button.classList.remove( 'is-loading' ); + button.setAttribute( 'aria-busy', 'false' ); + } ); + + button.blur(); return false; } ); } diff --git a/projects/plugins/jetpack/extensions/shared/memberships.scss b/projects/plugins/jetpack/extensions/shared/memberships.scss index b67ed10f47f29..7dacbdaecd208 100644 --- a/projects/plugins/jetpack/extensions/shared/memberships.scss +++ b/projects/plugins/jetpack/extensions/shared/memberships.scss @@ -1,51 +1,67 @@ /* Additional styling to thickbox that displays modal */ /* stylelint-disable selector-max-id */ +@import '@automattic/jetpack-base-styles/gutenberg-base-styles'; -.jetpack-memberships-modal #TB_title { - display: none; +@keyframes jetpack-memberships_button__spinner-animation { + 100% { + transform: rotate(360deg); + } } -#memberships-modal-window.jetpack-memberships-modal, -#TB_window.jetpack-memberships-modal { - background-color: transparent; - background-image: url( 'https://s0.wp.com/i/loading/dark-200.gif' ); - background-size: 50px; - background-repeat: no-repeat; - background-position: center 150px; - margin: 0 !important; - box-shadow: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; - border: none; - bottom: 0; - left: 0; - right: 0; - top: 0; - width: 100% !important; - height: 100%; +.jetpack-memberships-spinner { + display: none; + width: 1em; + height: 1em; + margin: 0 0 0 5px; + svg { + /* Better center-align the spinner with button text, because 1m height doesn't take line-height into account */ + margin-bottom: -2px; + width: 100%; + height: 100%; + } } -#memberships-modal-window.jetpack-memberships-modal { - padding: 21px; +.jetpack-memberships-spinner-rotating { + transform-origin: center; + animation: jetpack-memberships_button__spinner-animation .75s infinite linear } -.jetpack-memberships-modal #TB_iframeContent, -.jetpack-memberships-modal #memberships-modal-iframe { - margin: 0 !important; - height: 100% !important; - width: 100% !important; - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; +.is-loading .jetpack-memberships-spinner { + display: inline-block; } -/* This is a class added by Thickbox on open modals. */ -BODY.modal-open { + +body.jetpack-memberships-modal-open { overflow: hidden; } -dialog::backdrop { - background-color: #000; - opacity: 0.7; +dialog.jetpack-memberships-modal { + opacity: 1; + + &, iframe { + position: fixed; + margin: 0; + padding: 0; + height: 100%; + width: 100%; + top: 0; + left: 0; + right: 0; + bottom: 0; + box-shadow: none; + border: 0; + background: transparent; + } + + &::backdrop { + background-color: #000; + opacity: 0.7; + transition: opacity .2s ease-out; + } + + &.is-loading { + &, &::backdrop { + opacity: 0; + } + } + } diff --git a/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/subscribe-modal.js b/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/subscribe-modal.js index 23c7c22c6be17..3dca3a92b7830 100644 --- a/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/subscribe-modal.js +++ b/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/subscribe-modal.js @@ -11,7 +11,6 @@ domReady( function () { return; } - const close = document.getElementsByClassName( 'jetpack-subscribe-modal__close' )[ 0 ]; let hasLoaded = false; let isScrolling; @@ -25,7 +24,14 @@ domReady( function () { }, Jetpack_Subscriptions.modalLoadTime ); }; + // When the form is submitted, and next modal loads, it'll fire "subscription-modal-loaded" signalling that this form can be hidden. + const form = modal.querySelector( 'form' ); + if ( form ) { + form.addEventListener( 'subscription-modal-loaded', closeModal ); + } + // User can edit modal, and could remove close link. + const close = document.getElementsByClassName( 'jetpack-subscribe-modal__close' )[ 0 ]; if ( close ) { close.onclick = function ( event ) { event.preventDefault(); diff --git a/projects/plugins/jetpack/modules/subscriptions/subscribe-overlay/subscribe-overlay.js b/projects/plugins/jetpack/modules/subscriptions/subscribe-overlay/subscribe-overlay.js index 8aeba31838ec6..922b61c4b7a87 100644 --- a/projects/plugins/jetpack/modules/subscriptions/subscribe-overlay/subscribe-overlay.js +++ b/projects/plugins/jetpack/modules/subscriptions/subscribe-overlay/subscribe-overlay.js @@ -10,13 +10,13 @@ domReady( function () { return; } - const close = document.querySelector( '.jetpack-subscribe-overlay__close' ); + const close = overlay.querySelector( '.jetpack-subscribe-overlay__close' ); close.onclick = function ( event ) { event.preventDefault(); closeOverlay(); }; - const toContent = document.querySelector( '.jetpack-subscribe-overlay__to-content' ); + const toContent = overlay.querySelector( '.jetpack-subscribe-overlay__to-content' ); // User can edit overlay, and could remove to content link. if ( toContent ) { toContent.onclick = function ( event ) { @@ -25,9 +25,10 @@ domReady( function () { }; } - const form = document.querySelector( '.jetpack-subscribe-overlay form' ); + // When the form is submitted, and next modal loads, it'll fire "subscription-modal-loaded" signalling that this form can be hidden. + const form = overlay.querySelector( 'form' ); if ( form ) { - form.addEventListener( 'submit', closeOverlay ); + form.addEventListener( 'subscription-modal-loaded', closeOverlay ); } function closeOverlayOnEscapeKeydown( event ) { From 41dfa3cf3d9918a2a4f59de963387b2d8075fc73 Mon Sep 17 00:00:00 2001 From: Yuliyan Slavchev Date: Sun, 7 Jul 2024 11:07:54 +0300 Subject: [PATCH 039/254] wpcomsh: Fix generate POT scanned file paths (#38153) * wpcomsh: Fix generate POT scanned file paths * Update language files * changelog * Use -prune to avoid scanning nested directories --------- Co-authored-by: Brad Jorsch --- .../plugins/wpcomsh/bin/i18n/generate-pot.sh | 13 +- .../changelog/fix-wpcomsh-generate-pot | 4 + .../plugins/wpcomsh/languages/wpcomsh-af.mo | Bin 4997 -> 3658 bytes .../plugins/wpcomsh/languages/wpcomsh-af.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-am.mo | Bin 4555 -> 3485 bytes .../plugins/wpcomsh/languages/wpcomsh-am.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-an.mo | Bin 4092 -> 3039 bytes .../plugins/wpcomsh/languages/wpcomsh-an.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-ar.mo | Bin 59972 -> 45356 bytes .../plugins/wpcomsh/languages/wpcomsh-ar.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-as.mo | Bin 5999 -> 4677 bytes .../plugins/wpcomsh/languages/wpcomsh-as.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-ast.mo | Bin 3832 -> 2884 bytes .../plugins/wpcomsh/languages/wpcomsh-ast.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-az.mo | Bin 18877 -> 16794 bytes .../plugins/wpcomsh/languages/wpcomsh-az.po | 950 +++------------ .../plugins/wpcomsh/languages/wpcomsh-bal.mo | Bin 3034 -> 2451 bytes .../plugins/wpcomsh/languages/wpcomsh-bal.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-bel.mo | Bin 4891 -> 3802 bytes .../plugins/wpcomsh/languages/wpcomsh-bel.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-bg_BG.mo | Bin 10498 -> 7180 bytes .../wpcomsh/languages/wpcomsh-bg_BG.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-bn_BD.mo | Bin 7215 -> 5334 bytes .../wpcomsh/languages/wpcomsh-bn_BD.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-bo.mo | Bin 5816 -> 4293 bytes .../plugins/wpcomsh/languages/wpcomsh-bo.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-bre.mo | Bin 5205 -> 4038 bytes .../plugins/wpcomsh/languages/wpcomsh-bre.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-bs_BA.mo | Bin 9618 -> 7236 bytes .../wpcomsh/languages/wpcomsh-bs_BA.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-ca.mo | Bin 8676 -> 5985 bytes .../plugins/wpcomsh/languages/wpcomsh-ca.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-ckb.mo | Bin 7368 -> 4768 bytes .../plugins/wpcomsh/languages/wpcomsh-ckb.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-cs_CZ.mo | Bin 13579 -> 10207 bytes .../wpcomsh/languages/wpcomsh-cs_CZ.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-cv.mo | Bin 32812 -> 29312 bytes .../plugins/wpcomsh/languages/wpcomsh-cv.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-cy.mo | Bin 8372 -> 6643 bytes .../plugins/wpcomsh/languages/wpcomsh-cy.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-da_DK.mo | Bin 6666 -> 4731 bytes .../wpcomsh/languages/wpcomsh-da_DK.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-de_DE.mo | Bin 52207 -> 39357 bytes .../wpcomsh/languages/wpcomsh-de_DE.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-de_DE_formal.mo | Bin 52226 -> 39358 bytes .../wpcomsh/languages/wpcomsh-de_DE_formal.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-dv.mo | Bin 1529 -> 994 bytes .../plugins/wpcomsh/languages/wpcomsh-dv.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-el-po.mo | Bin 31518 -> 22232 bytes .../wpcomsh/languages/wpcomsh-el-po.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-el.mo | Bin 21731 -> 18230 bytes .../plugins/wpcomsh/languages/wpcomsh-el.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-en_GB.mo | Bin 21455 -> 18889 bytes .../wpcomsh/languages/wpcomsh-en_GB.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-eo.mo | Bin 7921 -> 5520 bytes .../plugins/wpcomsh/languages/wpcomsh-eo.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-es_CL.mo | Bin 51257 -> 38529 bytes .../wpcomsh/languages/wpcomsh-es_CL.po | 950 +++------------ .../wpcomsh/languages/wpcomsh-es_ES.mo | Bin 51211 -> 38488 bytes .../wpcomsh/languages/wpcomsh-es_ES.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-es_MX.mo | Bin 51235 -> 38478 bytes .../wpcomsh/languages/wpcomsh-es_MX.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-es_PR.mo | Bin 6640 -> 5416 bytes .../wpcomsh/languages/wpcomsh-es_PR.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-et.mo | Bin 5365 -> 3908 bytes .../plugins/wpcomsh/languages/wpcomsh-et.po | 952 +++------------ .../plugins/wpcomsh/languages/wpcomsh-eu.mo | Bin 4980 -> 3599 bytes .../plugins/wpcomsh/languages/wpcomsh-eu.po | 952 +++------------ .../wpcomsh/languages/wpcomsh-fa_IR.mo | Bin 38212 -> 30699 bytes .../wpcomsh/languages/wpcomsh-fa_IR.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-fi.mo | Bin 9694 -> 7527 bytes .../plugins/wpcomsh/languages/wpcomsh-fi.po | 952 +++------------ .../plugins/wpcomsh/languages/wpcomsh-fo.mo | Bin 2636 -> 2040 bytes .../plugins/wpcomsh/languages/wpcomsh-fo.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-fr-ch.mo | Bin 52208 -> 39161 bytes .../wpcomsh/languages/wpcomsh-fr-ch.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-fr_BE.mo | Bin 52194 -> 39152 bytes .../wpcomsh/languages/wpcomsh-fr_BE.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-fr_CA.mo | Bin 52315 -> 39283 bytes .../wpcomsh/languages/wpcomsh-fr_CA.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-fr_FR.mo | Bin 52160 -> 39127 bytes .../wpcomsh/languages/wpcomsh-fr_FR.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-ga.mo | Bin 16078 -> 14506 bytes .../plugins/wpcomsh/languages/wpcomsh-ga.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-gd.mo | Bin 11126 -> 9367 bytes .../plugins/wpcomsh/languages/wpcomsh-gd.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-gl_ES.mo | Bin 9876 -> 6905 bytes .../wpcomsh/languages/wpcomsh-gl_ES.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-gu.mo | Bin 5861 -> 4552 bytes .../plugins/wpcomsh/languages/wpcomsh-gu.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-he_IL.mo | Bin 57981 -> 43485 bytes .../wpcomsh/languages/wpcomsh-he_IL.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-hi_IN.mo | Bin 8718 -> 6433 bytes .../wpcomsh/languages/wpcomsh-hi_IN.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-hr.mo | Bin 11287 -> 8134 bytes .../plugins/wpcomsh/languages/wpcomsh-hr.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-hu_HU.mo | Bin 15018 -> 12077 bytes .../wpcomsh/languages/wpcomsh-hu_HU.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-hy.mo | Bin 4704 -> 3641 bytes .../plugins/wpcomsh/languages/wpcomsh-hy.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-id_ID.mo | Bin 49167 -> 37144 bytes .../wpcomsh/languages/wpcomsh-id_ID.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-is_IS.mo | Bin 10584 -> 9086 bytes .../wpcomsh/languages/wpcomsh-is_IS.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-it_IT.mo | Bin 50434 -> 37856 bytes .../wpcomsh/languages/wpcomsh-it_IT.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-ja.mo | Bin 55683 -> 42054 bytes .../plugins/wpcomsh/languages/wpcomsh-ja.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-jv_ID.mo | Bin 3059 -> 2550 bytes .../wpcomsh/languages/wpcomsh-jv_ID.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-ka_GE.mo | Bin 7210 -> 5504 bytes .../wpcomsh/languages/wpcomsh-ka_GE.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-kab.mo | Bin 14072 -> 11859 bytes .../plugins/wpcomsh/languages/wpcomsh-kab.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-kir.mo | Bin 5253 -> 3900 bytes .../plugins/wpcomsh/languages/wpcomsh-kir.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-kk.mo | Bin 5693 -> 4257 bytes .../plugins/wpcomsh/languages/wpcomsh-kk.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-km.mo | Bin 11734 -> 9743 bytes .../plugins/wpcomsh/languages/wpcomsh-km.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-kmr.mo | Bin 3448 -> 2610 bytes .../plugins/wpcomsh/languages/wpcomsh-kmr.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-kn.mo | Bin 5841 -> 4415 bytes .../plugins/wpcomsh/languages/wpcomsh-kn.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-ko_KR.mo | Bin 51987 -> 39528 bytes .../wpcomsh/languages/wpcomsh-ko_KR.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-lo.mo | Bin 4226 -> 3419 bytes .../plugins/wpcomsh/languages/wpcomsh-lo.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-lt_LT.mo | Bin 7610 -> 5017 bytes .../wpcomsh/languages/wpcomsh-lt_LT.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-lv.mo | Bin 29138 -> 25938 bytes .../plugins/wpcomsh/languages/wpcomsh-lv.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-me_ME.mo | Bin 3143 -> 2265 bytes .../wpcomsh/languages/wpcomsh-me_ME.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-mhr.mo | Bin 2907 -> 2218 bytes .../plugins/wpcomsh/languages/wpcomsh-mhr.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-mk_MK.mo | Bin 6260 -> 4404 bytes .../wpcomsh/languages/wpcomsh-mk_MK.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-ml_IN.mo | Bin 7365 -> 5528 bytes .../wpcomsh/languages/wpcomsh-ml_IN.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-mn.mo | Bin 7646 -> 5255 bytes .../plugins/wpcomsh/languages/wpcomsh-mn.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-mr.mo | Bin 6911 -> 5151 bytes .../plugins/wpcomsh/languages/wpcomsh-mr.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-mrj.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-ms_MY.mo | Bin 6057 -> 4628 bytes .../wpcomsh/languages/wpcomsh-ms_MY.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-mwl.mo | Bin 2424 -> 1925 bytes .../plugins/wpcomsh/languages/wpcomsh-mwl.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-my_MM.mo | Bin 5627 -> 4275 bytes .../wpcomsh/languages/wpcomsh-my_MM.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-ne_NP.mo | Bin 6325 -> 4884 bytes .../wpcomsh/languages/wpcomsh-ne_NP.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-nl_NL.mo | Bin 50007 -> 37822 bytes .../wpcomsh/languages/wpcomsh-nl_NL.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-nn_NO.mo | Bin 9046 -> 7354 bytes .../wpcomsh/languages/wpcomsh-nn_NO.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-no.mo | Bin 14179 -> 12702 bytes .../plugins/wpcomsh/languages/wpcomsh-no.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-oci.mo | Bin 5038 -> 4089 bytes .../plugins/wpcomsh/languages/wpcomsh-oci.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-orm.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-pa_IN.mo | Bin 12190 -> 8566 bytes .../wpcomsh/languages/wpcomsh-pa_IN.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-pl_PL.mo | Bin 11567 -> 8928 bytes .../wpcomsh/languages/wpcomsh-pl_PL.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-ps.mo | Bin 3940 -> 2784 bytes .../plugins/wpcomsh/languages/wpcomsh-ps.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-pt_BR.mo | Bin 49887 -> 37542 bytes .../wpcomsh/languages/wpcomsh-pt_BR.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-pt_PT.mo | Bin 11306 -> 8269 bytes .../wpcomsh/languages/wpcomsh-pt_PT.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-ro_RO.mo | Bin 51623 -> 38726 bytes .../wpcomsh/languages/wpcomsh-ro_RO.po | 958 +++------------ .../wpcomsh/languages/wpcomsh-ru_RU.mo | Bin 66472 -> 49826 bytes .../wpcomsh/languages/wpcomsh-ru_RU.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-rue.mo | Bin 634 -> 582 bytes .../plugins/wpcomsh/languages/wpcomsh-rue.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-rup_MK.mo | Bin 1194 -> 901 bytes .../wpcomsh/languages/wpcomsh-rup_MK.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-sah.mo | Bin 3788 -> 3194 bytes .../plugins/wpcomsh/languages/wpcomsh-sah.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-si_LK.mo | Bin 6822 -> 5157 bytes .../wpcomsh/languages/wpcomsh-si_LK.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-sk_SK.mo | Bin 7933 -> 5737 bytes .../wpcomsh/languages/wpcomsh-sk_SK.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-skr.mo | Bin 27070 -> 23528 bytes .../plugins/wpcomsh/languages/wpcomsh-skr.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-sl_SI.mo | Bin 6150 -> 4341 bytes .../wpcomsh/languages/wpcomsh-sl_SI.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-snd.mo | Bin 5174 -> 3803 bytes .../plugins/wpcomsh/languages/wpcomsh-snd.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-so_SO.mo | Bin 3068 -> 2391 bytes .../wpcomsh/languages/wpcomsh-so_SO.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-sq.mo | Bin 46900 -> 37505 bytes .../plugins/wpcomsh/languages/wpcomsh-sq.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-sr_RS.mo | Bin 14107 -> 10318 bytes .../wpcomsh/languages/wpcomsh-sr_RS.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-su_ID.mo | Bin 3987 -> 3224 bytes .../wpcomsh/languages/wpcomsh-su_ID.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-sv_SE.mo | Bin 49652 -> 37293 bytes .../wpcomsh/languages/wpcomsh-sv_SE.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-sw.mo | Bin 3943 -> 3048 bytes .../plugins/wpcomsh/languages/wpcomsh-sw.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-ta_IN.mo | Bin 9369 -> 7350 bytes .../wpcomsh/languages/wpcomsh-ta_IN.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-te.mo | Bin 12904 -> 10420 bytes .../plugins/wpcomsh/languages/wpcomsh-te.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-th.mo | Bin 7979 -> 5686 bytes .../plugins/wpcomsh/languages/wpcomsh-th.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-tir.mo | Bin 1515 -> 1264 bytes .../plugins/wpcomsh/languages/wpcomsh-tir.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-tl.mo | Bin 6475 -> 5091 bytes .../plugins/wpcomsh/languages/wpcomsh-tl.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-tlh.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-tr_TR.mo | Bin 51310 -> 38683 bytes .../wpcomsh/languages/wpcomsh-tr_TR.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-ug_CN.mo | Bin 8001 -> 6215 bytes .../wpcomsh/languages/wpcomsh-ug_CN.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-uk.mo | Bin 15451 -> 12290 bytes .../plugins/wpcomsh/languages/wpcomsh-uk.po | 952 +++------------ .../plugins/wpcomsh/languages/wpcomsh-ur.mo | Bin 6762 -> 4726 bytes .../plugins/wpcomsh/languages/wpcomsh-ur.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-uz_UZ.mo | Bin 4150 -> 3148 bytes .../wpcomsh/languages/wpcomsh-uz_UZ.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-vi.mo | Bin 10420 -> 7264 bytes .../plugins/wpcomsh/languages/wpcomsh-vi.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-yi.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-yor.mo | Bin 1297 -> 1123 bytes .../plugins/wpcomsh/languages/wpcomsh-yor.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh-zh.mo | Bin 1709 -> 1368 bytes .../plugins/wpcomsh/languages/wpcomsh-zh.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-zh_CN.mo | Bin 46905 -> 35312 bytes .../wpcomsh/languages/wpcomsh-zh_CN.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-zh_HK.mo | Bin 17940 -> 15158 bytes .../wpcomsh/languages/wpcomsh-zh_HK.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-zh_SG.mo | Bin 47763 -> 36170 bytes .../wpcomsh/languages/wpcomsh-zh_SG.po | 948 +++------------ .../wpcomsh/languages/wpcomsh-zh_TW.mo | Bin 47152 -> 35505 bytes .../wpcomsh/languages/wpcomsh-zh_TW.po | 948 +++------------ .../plugins/wpcomsh/languages/wpcomsh.pot | 1026 +++++++++++++++-- 241 files changed, 16585 insertions(+), 99196 deletions(-) create mode 100644 projects/plugins/wpcomsh/changelog/fix-wpcomsh-generate-pot diff --git a/projects/plugins/wpcomsh/bin/i18n/generate-pot.sh b/projects/plugins/wpcomsh/bin/i18n/generate-pot.sh index c7fda46c5895b..9b8c8efb4d218 100755 --- a/projects/plugins/wpcomsh/bin/i18n/generate-pot.sh +++ b/projects/plugins/wpcomsh/bin/i18n/generate-pot.sh @@ -3,8 +3,17 @@ cd $(dirname "$(dirname "$(dirname "$0")")") rm -f languages/wpcomsh.pot -find . -name '*.php' -and ! -path './build/*' -and ! -path './custom-colors/*' \ - -and \( \ +find -L . \ + \( \ + -path './vendor/*/vendor' \ + -or -path './vendor/*/wordpress' \ + -or -path './vendor/*/node_modules' \ + -or -path './vendor/*/jetpack_vendor' \ + \) \ + -prune \ + -or \ + -name '*.php' -and ! -path './build/*' -and ! -path './custom-colors/*' \ + -and \( \ ! -path './vendor/*' \ -or -path './vendor/automattic/jetpack-mu-wpcom/*' \ -or -path './vendor/automattic/at-pressable-podcasting/*' \ diff --git a/projects/plugins/wpcomsh/changelog/fix-wpcomsh-generate-pot b/projects/plugins/wpcomsh/changelog/fix-wpcomsh-generate-pot new file mode 100644 index 0000000000000..fcb15fa61e816 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/fix-wpcomsh-generate-pot @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Fix generate POT script to follow symlinks in vendor/* and update language files. diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-af.mo b/projects/plugins/wpcomsh/languages/wpcomsh-af.mo index 8c43cb5f3e8cf345b172d3a29a7517e7876ca3ed..b45e66855ad8287e6dbb758c0c99b5c3b5edc632 100644 GIT binary patch delta 1636 zcmY+DO>9(E6vywtK&Jz=Q-;q{=!0URB9+gn1q3pHEz(kf@L^&wBXc2RJMYz**N_rq z!eYWgHu6Ll2HEi8N<&Hl320o1rY7!Ks39bfkbn!r0un=F;P)Rc3s2tv{qDK%-gD1A z_rB_q-&!hnr^nA4Y!hlhGbR}GKAalog$+-l4L^ac@C3}lZ(sww2kYTuSO=d$O`R~= z7#>sS*Z>u0CY%BnLB>~1r|ZZ-P0T`Km>!sb{ct+m2OD7lYTT&%e!}^u98bdzzJKog z8<5BR#7l91b^h-#&idwdtzpcc?!#T@KY&Rl{0%9JdFuNAg*@gzUh`m_Z74AhYJn9{ z31*;nyx#TqLXF$${DUyb`X=u>0{ABW2vkWgLIwKX`Bz~c|3|2W+9;34bwK&6p%Uwc zN_;ci1$Vgqb8sU51*mntg_UhI{-B{9E+Cq?5H`h(SqxSB4AGXu?NAFHh11}tkX+1X zjuF(^ehrn#Wk_iA9n|=1PaPiR=uqH?j{iU&^MqG3d=AsFnZcUa3AOW# z<7TKzy$ct>0jT*tRNPU=3RGfM=bxTJ{Z*1PbSTp=p#q(UI;#s%->re^&0QI-r zf~wGc_x&ljG$e3TpfusCCvtRb*p@h9>mERd6?Kf>k%*D@ZJJ5mw<9s06#1 ztx|4)n!f{TXS<+wegGbThoCBT6Y6Mxf$eY{>TXmX(@?-H(KMh3a`gW*hL|p-z%nH& zBNwv>Z9sF-N+es2me*P@UrWIaPDFeK<6Ig)*<;h*$8<&Ro$(kLtS`ciThO54|lxu?Wl2KyrR8KlXF- zz1ZZv!}(lj$KILxMJ$@wu(#O{{DLi-fsxRTl&slrKl(VZB|n!Niq1E*&dL^i-wp<) z(CaPOlG$fV<aw%!bnooAD@(5n&dy_JcXl4^%!-{MEql7f|@9zMt-OmLkxmo4ACDNUm+neAsP+-K}k%|=y&d|VHf14 z>wdTHtvYq;oKxrYbC>P-lH$6Zb~Ww!3zfPDe&=FtTo1ibsrSHd!Asy%@V)TY@F;u{ zUJ4JsNvSu(*}!GUCv_X#0q=rufEJ3JIP^z>pAPRo7x(~t3*){DMb3BO+u;wO$a^}x ze;K$-t@DEs?Wc>g;n_IwtO!M{OVqFxH$ z{{>~UIyeTMpw4kheB5)OoK4+l#;ZC>&d*S;Jp~!m-%KWFo``e8%14Zuf zzzrzt+Q0;gUL_QL?}g&u`=RLhAQZcO6N;Qipp5$o?}p=0)}IOQHy~S7Z7A|Q6nhN=?}g%@&%_QOzsiNGm8?_n zT{Kx|k|z4ewNXQz4iqfVt_%H%K*0=copzOUxNffTs=MrW5A6U=a?(kfTn$=__F4?gv=y4zM6UPIZlO)l4%4fj)che5i#LvfQH`3&c zy!M*r#R=LxZIQN26CdrTeS{{L)V6)JC7Rg%Lo`fZ`QigmuC*G~U1Cbk$IixxiiUN*Wz-)bQEPa&vk0IY^DRp&Zj2UGiz&VI*#?4D{QW&Q=g6!U-DEI zJ)h<3XzaUc#-tq^2k6WW;*pxMX<;)p(=%z;2I!(^6FNTjnO^IJPU6z8Uh_WXLy|BJ zriDvOizpNERn3~LuV(G0DdR%Tx;$}tE*!*Wq)pyZb11Cl660bucXuZ)BimB*E=B|0 z9_fxLY}aQaHIIdR@kpzAk=)T~G z_$D1`?2+Vp=*u_~Kj_%?tuDNdYOQWj3nlwLo|rCnJ83dHCk+D&b<&zGtBvl2-EQ|Q zyNQThOt6~_blslZb8fz?U0OjzEaS53R);`aoUn}AY{m|9we0z&jPO}vVzpc*Z45!c zge7xXCGYuRORWrQN2?X0j%XOF)wt}sG*_o=2Vdym6X}avPgOdtu>&PHUHdn$JIP2( zFimJHo|w=kjr7pAb8Ln7c;Dr^o%vyoHk*V1;XtUOcHt7Mk8i8jtfWP1%@*PigrllN zHv`JFsQWD?A*t705u*y*jMbXYve8844U-|+7n;|8C`ZF<)9J|Zs+1Vum8M!p;*6Xn zdCIxn?NgtOT527=s^zMKHsst?!rFG*yGYC(F)uq{rFu1{R05opRXDPFIT-ki-MvO! z)U^exSK+_j!#SzMZM~D~js|{!YOd2qtydnabvh>QlraGv>CMb1`oN*ajZ?ZuCdkFZ zM01fhHNr>eLr5Au?76rK%}#X|SvfOlK0s-X+UY@rEVWU4Np1Knst(7wrzSz8ZYPLu zC(0vVS)wPdAJ|OJA$j8U%`4-pfmL!M^fS$>813VwFHBRf#@6JR)W#M^ZlWa7VTlW? z%R%g`liyVBks>p!t~5^BEhmdLW>L7MrzWQkG$s!=ruOsL+CSNvJh*p~Yi#NG(p=+= z&17s#?{7|yNjhP#jrGxhi3I_-kHq29!y1cZB*`PE*XJ9D&W#iMY}%|bmv+45pO!w< zcEuPcBQtSho>P^#bULWI`H`u^x_&&8>g$f^{fEbHYaFww%}n95mOd8yqB7~espf&^ zWW&URo*6qyS}cjemNuIoyJLE6HS=d}r)V6H&guS&GsFeDQRQI0U}FqFrp9L-&Xtlu z63R&V-n#<(^(}|4%KG_SrtuZz0FcX@>#@|Hjb^$ z&U+*?6qR_j-wS75G3yyIpBc;NaOp`28-$b)X7n< zmMkSo%u_#XQaDVaPT+T`8=51CqY`zd+Bp6tg$xE14{NE9Hm$1&o}9*M{3F<2o?}W> zViUBNIwI$dov9W67O?Vm8CfpNLM*pE&18g2aQ-PP$sN~Z^<6|ciqH02O+j&K?7CH5 zrh@cvy~Hw+*NzRg!e1_{!n^hx>h~+JlYTL~j6ZK>9g6{*Y%33o5}DO^jh_`~6Bsv|iYT^uNNAjo_2 z+nN$Q#5iKb*Acwoq&R6WXA!TJX|3_PoWNCQ`_2xeY@Fp-P^mCNb+7ByV$1;E6NB|* zotXIRAxTM+jhwc+UXdjv@T6Mt_eSP5H366CsLVC#DJ%OSy4Yfs8Jhh6lUy)LNkaS~ zPx# diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-af.po b/projects/plugins/wpcomsh/languages/wpcomsh-af.po index 039bb070a3e0d..81f8ad5d4c8a4 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-af.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-af.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Jammer, jy het nie toegang tot hierdie bladsy nie." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugins" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Kleurskema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Verwelkoming" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Donker" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Lig" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Deurskynend" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Oorsig" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Stellings" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Alle webwerwe" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Kanselleer antwoord" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Lewer kommentaar op %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Lewer kommentaar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Stoor my inligting in hierdie webblaaier vir die volgende keer wat ek hier kommentaar lewer." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Lees aan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opsioneel" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Webwerf" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Kanselleer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "kommentaar " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Antwoord" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Die adres word nooit bekend gemaak nie)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Meld af" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Spring weg" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Piekieprentjie" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Jou blog se naam" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titel" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ja" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nee" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Wysig" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Sluit uit:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Keer weg" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Stoor" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "E-pos" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Naam" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(op die meeste 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Aantal kommentare om te wys:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Nuutste kommentaar" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "op" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Rooster" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lys" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Vertoon as:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Middel" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Regs" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Links" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Geen" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "Die jongste bydraes" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titel:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-am.mo b/projects/plugins/wpcomsh/languages/wpcomsh-am.mo index 877a692b9f0c6591fcc98e0150f2ae873a146f22..1de6aa67eac27640b22cbe53b65683afd238f07c 100644 GIT binary patch delta 1320 zcmYk5TS$~a7=~v{chz;*)>GyoH#O6>lUa}y6lO?d1zvQbF2oa(?gnb45StWb2kBx6 ztgyNWy68rbu8JbMD+sy>3?f*Fz@h{pBgyJ{w-Nl9cb@saIsV_w|GIp5 zqGI&aV@wk~v78D!n_^5U9E1(<77W4*ytqx|IOj3qvr(bsd52_}%1F8@+)m;1mqNX&3+Ld=G=i#i14$g*xCEtcUkp{5{mTPtKo(T4w=rRug2h zGMS&j{pZpsC!mh)P>*mo)WRnr#k5l?)iJmW#$g0Lhnn{VQp_xs<}bkHhxv^Omh^?3h4jSo@j;HB^k ztc2W9GJCq>GE|Kip4`u;`mgPOC51W|gP})uBbxuULh`F0cmbSC;7@ zI@AU^7~f=8qjgAGQpVynRE0=Zfb?Qzu(;pK-YtcrOhn5;| zF8P)gW6ItVvooocw!(WT5RF9#dt(EArlBX+W$${6eT^NRtph#%_N}+druvQsJNr#@ zcOO-(E8HEm7koRjS~}V~qW$4LvEE+TXTSSOJngnEZGJMA{=#GT`-|eTQjieYWDOD%hjx0o@h;7sX=@F7F^ZYn zxh0X2*a(dX0ToiyhT0#fJ{Qx4^_&6=`tq9U*$?Y0dK?6uzI*s>!60BH^NGow>$*p(RU#~ z6*7&4$E^O5<+(w7LG`kzz~PeR70YW-0{sBVt!}~*@K-n%{sybyU288Vi1?4TtbudT z$6I|J#8qvC5^rm)7nIt?;t>q{p#*rt%+pZcCj^8EtK$*=yD1-u2NfWM&}**&-gRuDz@cS8xdpGg8VS-TIVpx3Q_ z1TI7mpH$mxSo8=xzE$U^+Pq|FPU=D789;_as z)K^dfU#FT{xQP3~q+Wny;BGhpHp5ZyaFr^=4o5Laf^Jv?Pg#dAp>%cyN`MOVpWH~^o7 zx1ba}mS`+hEqoNtvRnma|3xTY)jlYB+MpzU1IiT!1r}>qbX&vE@Nx7%pd`Ex=fW|3 zYx3YqD1o21`c@bxfG4rHL3yr*=#pSMlZK0-6uKKq`~y%2Ltb9StK2 zxz%KN0nUT+z)dKf8pu!GVUjDU;M~Q(7RnXOW)k}fD4lPCZEzRlRZ%k#MnNrRUKpke18nS zg!o?T;4CpPq&qqCXGLMuBeUbx;FZZzTU{Vu#50Jzz%t~TWXKotV63!@sg^?}zuezs zWSTWT2IUV##wtXvLymAg!tKO=$1|afWrI)+a5W-#JjdGB!bQjeL|*PC$WlZ;@uv_~ zuN$L7Wm6N5&bsZo#YwtRciFCa>9pRN@?B5WXLH$(Os>^a>(aTTYH+fRZrVcU-IjDm zbhm8MxQ1LN<7R!e-febT(=g>_Ql1x0DxY1o(e<_GJ9*!2iWsT5W4{^KB`&U2RXdCR15Y?Qk2(r)^%*DMjr_ zB@g;)CmG^NHym`bNxBe=&UEOklX2^`n{iUP-(yUJ!?CQafGWPi2!{R5Scu_1?iiYHu#zv_0>7-o=p>SBBJ@ z&Qm7*!UX-=lmb(_ti{mTYl5!m#)!$AgSSjjG(iu$XH4<52``xNs3~4nvI+v8lTBqx z=S*`%Kt{CFn6hXaWKTeQcPp=U8RkLW1*%_z>t*Q|!mF+k}0lNY)cPCJue3 zGcv`q>_*EfH;pJAj)V0^Z&toH^?w0$TnRB_uhPfSs6<_L*lkK(k|sF9ewQglOA_Hy zOkuyImBML(SS32`)lvhSm`fMp4y1(hCJg9QN8cpoSJ-Z%-xEt54(!7?u+(xfZjltU zRXR%~4&%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "ይቅርታ ፣ ወደዚህ ገጽ እንድትደርስ አልተፈቀደልህም ።" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "ተሰኪወች " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "አጭር መግለጫ" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "ቅንብሮች" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "ሁሉም ጣቢያዎች" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "ምላሽ ሰርዝ" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "አስተያየት ያስቀምጡ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "በዚህ አሳሽ ውስጥ ስሜን ፣ ኢሜይልን እና ድር ጣቢያን ለቀጣዩ ጊዜ አስተያየት ስሰጥ ያስቀምጡ ። " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "ግድየለሽ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "ድር ጣቢያ " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "ተው " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "ዎርድፕረስ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "አስተያየት" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "ምላሽ " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "ዘግተህ ውጣ " - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "ጀምር" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "አዲስ ገጽ አክል" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "ጥፍር አካል " -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "አርእስት " -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "አዎ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "አይ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "አዲት " #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "አስቀር፤ " -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "አሰናብት " - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "ቆጥብ " msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "ኤ-ደብዳቤ " -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "ስም " @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "የአስተያየቶች ቁጥር ብዛት ለማሳየት፤" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "የቅርብ ጊዜ አስተያየቶች " #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "ዝርዝር" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "አማክል " -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "ቀኝ " -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "ግራ " -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "የለም " -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "አርእስት፦" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-an.mo b/projects/plugins/wpcomsh/languages/wpcomsh-an.mo index ecd1d7885b633e2d3167aa504da3edfb2abf8c64..40598b9138e0e2d96f38c12b5d2a15206b0021c6 100644 GIT binary patch delta 1417 zcmYk+OGs2v9LMo9nd2j8OtZ{hb9-o7_ErLGVNMZ}k|a??1h<)6-kJx@V-vv;6(rK8 zTR{*lgccD&6ckYqkqe1h2^C21jf>V16w&uLo}k10@8|x{J+FJt)!(sC&83fxbFUdn zH?fSE2pO{%Qx#k&m*yH1!%^(RI~c|9ScAW?3M(s(;nqYjjE&Y7tRr_&?KYs=btAu$ z>ET*UMK3mDzs--L8hX}K*g>AP`3=-Ww~(K?ZS%XReh;jVZT&Nwzrx)J^n#{Cdxw%+=P0g7F2y3s$HkeccLcfv-u!yA|FQW*m=}Amz6WWxx!5n zZ=wbau}^APg~}U{N2b}j0(CmAxCcA1fn&?!M)GrPr~2K;2tGm{nF-W5uTcw_!jc}m zw+%j{-ed;V@h7T7nAPZLB1n~Sa1nOcycgB3-#UbyW{0pumpTQ=qW#82=hHBS_dXY|>_n<@Gi*zw=E&D&8 zo6}UN<5}E}=dl5w+JwgWphZa*Rq1lt4|GMvaq4nwT@Fqq>L(aTGZzvzSo( z)jI!mgjU%~Xq)t>xQ);NTL~4towlr*(1NwNwS*??BK{Ta)(S$qqOywEQoftrS^eqi z8&T0mT#9jNCzcZ|u6%C#`c+zp&E-2|)?f#rw^?HA9MrLFAha7Q`X92MXe0F1>pS_s zXt(q&*%CDi|J}-9Fx(zo2=5O*gqv4-nSz%y@ewz3(z7^)5ijkT-QEeem?{MOs@j86 z)#2!gf*J7hT(Tz}KND0`@2o%ICFt+Ov*|SEgG}}EP%`*deK_c=8GrbrW-PQI^PtWGNH6uh)+hH_rgV`XVS;}(OVx*fsw zx^zRlm>6-(t8mS(M8Zo3U6Fw%re`!a=V$Xy&P({^r96%}p<)n^o(*0_Uj^g!NB#ml CEuhW- literal 4092 zcmZXWO>A996@UklQtCpXe}tbFrVWs$^>b{Kknr3zb!^9Wzd~;H29I~Z>q)+qLDGK*l>U1YAB5cM5D%GuG|7)9PN)6_cniNT!MDQ; z@GkgScsq=#{|iv`d^z!}@F4Qnll&YMJAML1--}891$-CsOHk(jIsN{6lK&26-oGHX z`fuvri!npUw?SN~?twCYAC&R;!4JUwkXxNdoP(lg3Cg+`q1fXRJrq3^6n|ZTr{PoS z_m?2I`U4M{|7z<0Clq_GC;1kFbqM)(DE3T1ZgrA}=wC?k63mc41;vgRQvc7A{3|H) zf0y_Q6#HL=-0Ckp_P~F`8F(Gu`4*)f$Cwf1a|G#q@QYCNe;2+JJ_Fwke+Wh23sBa1 z5sH1kglt9q7TybAfimum#Q#9q{~nz59(XsD{XYz4og+}znSe5H9*X`YDEadw6#bW= z%rBwL|4Qor7L@VdOMDg%BVSAM@1e~96BK)2hj+ujCGKHyv14E2{fYab*mE$+V^G#P z3S~c!LCL2x>G!4d`vv#_{hx-i?o}vyo=*H4ya)L^P~!3fD0+Vk#g6A8xB4j$1AmkH zk8s#U-vrcf8p?bNB|aXCo~!UEdyZX^ zUP;ZDYm(Ng-I1c1#31eUheqD+6B8tr|YiE zGxG3V?TQ*Q{0uHtXY7`kW&2T`@!SPnKJ-kk&Q!fswm?9Wz9?42b-&qGXZwxk)!7Xj z2+yWk%&V>|qB>_gI7&}7CWtJ4K35yDjCo2Py76>ugx)|)bceMS9}a6%WO~!CMjU~; zgu_L>8vJI&nl)lVd`KkBE?v*+`5p5{YHgWXwq;rSb{SJ8`xsCaC5zRjOOEIjSLT?) zHgmP?Ll_L#t~LS9zSMO4O-Ws^O{ZfcI~OA)b6KS-NLjUl;wedad5b)@eBpb8wpziw zde!+vF3Lt&uvwHTwE|~lF+)tMe%}W+d6T-VYs(Q?gy5~L6Qe>B zuh~%jY^(GAjHFW+8Xu|)K4go5U8sv>%tcaaU1Crl&ibszzQLNyl`qYRUd*kD*lKf& zqt;xGL8}(OGozpTI&VkR;@Q?YyWt||uQknLZ9P6Zez-Myq%}UqYkO?8J$mGkQLdrW z^QUK8pR_^7w)NP^=+Kns)D>lGWzc70NhlAI*{+z-oplp%?(y?0r&`Buj0>iSYc{lI zijJ3a)7HmUT{%R~1(UZi+(M}Q3v$n9ols>feZ0^h2 z9f!t84v&nsOx|BNLkm=Ziukrkzt7Ap4=o1&Iol~)^VtpCcO5yxiO{XO+~_%*_iY$b z=L@4(y$eQX2MjT+20U%)E?2hXtw*a$m%A$_Gg1$W0j>sA?8vUpx+{#z4e6^W zX_^6@y1=OwUtZCRJ~}#jm|pSC6WR zT0+p{caL0{j@$lGLHIc}6u>Cm#ELphb+Fyw6~4ki6KbX)9qRf>>82pfl01r1Z3`J_aWlKgb3++-TL%A2{n**zR7D1= zsobznDVau1a{h@EwI%0y1|J0qhwE03IZ_fL(V%k9nh?yJN~aC=YBzL83iFPYQb1E= z&)Hb9{BHfc;qFN6I`t|zIre>#@uiv$7C-Z`yMlY_C$6MUOG?lu!R&2c^Hdx$ln?6v z#X}FIxN2KyGKq3WDd?Jvvf5`hSs475>lt158j6A>g7}BZCo5EVWW8dh1gY`4EZX5n z*IKdzyE(r*fSTw^pA#mZ5|~ddsUcq^N}+^w7>lXr1WeL{&#L4)4ioQ_E=G*qJt8A& zCUz=3vE?dtGM%{_%g*c^x}Bm-p0xQ!?jFzGp|WV)&7JLM_zE;zrr%K|-A+|TL#%xf zd8;#~&naD%+Q`ne*PBl2vgFrJ4cJ|TVr@BIr(NMpNx^EI(LCFDv#dxh2`BaXO|^P? z`%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Lo siento, no tiens permisos pa acceder a esta pachina." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugins" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Combinación de colors" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Negro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Claro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Escureixiu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Resumen" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Achustes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Totz los puestos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cancelar la respuesta" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Deixa un comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Alza lo mío nombre, correu electronico y web en este navegador pa la proxima vegada que comente." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opcional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Cancelar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Responder" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Salir" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Prencipiar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Anyadir una nueva pachina" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titol" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Sí" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "No" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Editar" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Excluir:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Refusar" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Alzar" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "Correu electronico" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nombre" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Numero de comentarios a amostrar:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Comentarios recients" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centrau" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Dreita" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Cucha" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Garra" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titol:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ar.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ar.mo index cefa6cc1a6295f54b663800bac55550e573f153b..800132dc95a50495118d6255e14a2689dd14b502 100644 GIT binary patch delta 8798 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 YFJ_uVQO^p2vKunj6*X>t<{9 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ar.po b/projects/plugins/wpcomsh/languages/wpcomsh-ar.po index 5d18b9e2dff4e..d6a3765361c21 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-ar.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-ar.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "⁦%1$s⁩ على %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "يمكنك تعديل الجرافتار الخاص بك من صفحة ملفك الشخصي." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "التسويق" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "عذرًا، غير مسموح لك الوصول إلى هذه الصفحة." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "إضافات" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "استخدم لوحة التحكم القديمة لووردبريس.كوم لإدارة موقعك." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "النمط الافتراضي" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "استخدم WP-Admin لإدارة موقعك." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "النمط الكلاسيكي" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "نمط واجهة المسؤول" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "استكشف الإضافات" @@ -72,424 +42,10 @@ msgstr "يمكنك الوصول إلى مجموعة متنوعة من الإضا msgid "Flex your site's features with plugins" msgstr "تطوير ميزات موقعك باستخدام الإضافات" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "عرض القالب" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "استكشاف القوالب" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "تعمَّق في عالم قوالب ووردبريس.كوم. اكتشف التصميمات سريعة الاستجابة والمذهلة التي تنتظر إضفاء الحيوية على موقعك." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "البحث عن القالب المثالي لموقعك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "بضع كلمات جذابة لتحفيز القراء على التعليق" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "تمكين المكوِّنات في التعليقات" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "السماح للزائرين باستخدام حسابات على ووردبريس.كوم أو فيسبوك أو للتعليق" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "اضبط نموذج التعليقات مع نظام التحية ونظام الألوان الذكي." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "نظام الألوان" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "نص التحية" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "السماح بالمكوِّنات" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "غامق" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "فاتح" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "شفاف" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "أطلق متجرك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "إضافة نطاق" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "نمو أعمالك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "تحصيل ضريبة المبيعات" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "الحصول على المدفوعات من خلال WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "إضافة منتجاتك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "تخصيص متجرك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "غروب الشمس" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "ساكورا" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "مسحوق الثلج" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "الغسق" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "تباين" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "أسود كلاسيكي" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "ساطع كلاسيكي" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "أزرق كلاسيكي" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "مائي" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "نظرة عامة" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "مشاركة \"%s\" عبر Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "للوصول إلى إعدادات الخطط والنطاقات ورسائل البريد الإلكتروني وغير ذلك، انقر على \"استضافة\" في الشريط الجانبي." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "ووردبريس.كوم" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "الإعدادات" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "تحقيق أرباح" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "مراقبة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "تهيئة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "عمليات الشراء" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "رسائل البريد الإلكتروني" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "أسماء النطاقات" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "الإضافات" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "الخطط" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "الاستضافة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "جميع المواقع" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "خطأ: يرجى محاولة التعليق مجددًا." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "خطأ: لقد انتهت صلاحية تسجيل دخولك في فسبوك." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "إلغاء الرد" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "اترك رداً على %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "أضف تعليق" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "احفظ اسمي، بريدي الإلكتروني، والموقع الإلكتروني في هذا المتصفح لاستخدامها المرة المقبلة في تعليقي." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "تم إرسال التعليق بنجاح" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "اشترك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "أدخل عنوان بريدك الإلكتروني" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "هل تهتم بتلقي تحديثات التدوينات؟ ما عليك سوى النقر على الزر أدناه للبقاء على اطلاع بالمستجدات!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "لا تفوِّت شيئًا!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "أكمل قراءة الموضوع" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "اشترك الآن للاستمرار في القراءة والحصول على حق الوصول إلى الأرشيف الكامل." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "اكتشاف المزيد من %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "جارٍ تحميل تعليقك..." - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "سنبقيك مطلعًا بالمستجدات!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "اختياري" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "موقع إلكتروني" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "كتابة رد..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "إلغاء" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "رسائل بريد إلكتروني لتعليقات جديدة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "أرسل رسالة بالبريد الإلكتروني تتضمن المقالات الجديدة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "أخطرني بالمقالات الجديدة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "أسبوعيًّا" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "ووردبريس" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "التعليق" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "رد" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "يومياً" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "على الفور" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(البريد الإلكتروني لن يتم نشره)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "تسجيل الخروج" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "تم تسجيل الدخول بواسطة %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "سجِّل الدخول لترك تعليق." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "سجّل الدخول لترك رد." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "اترك تعليقًا. (تسجيل الدخول اختياري)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "اترك ردًا. (تسجيل الدخول اختياري)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "موقع الويب (اختياري)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "البريد الإلكتروني (لن يصبح العنوان عامًّا مطلقًا)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "تلقى تنبيهات على الويب والهاتف المحمول للتدوينات من هذا الموقع." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "سجِّل الدخول أو أدخل اسمك وبريدك الإلكتروني لترك تعليق." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "سجِّل الدخول لإدخال اسمك وبريدك الإلكتروني لترك رد." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "اكتب تعليقاً..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "ابدأ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "استخدم أداة الاستيراد الموجَّهة في ووردبريس.كوم لاستيراد التدوينات والتعليقات من Medium وSubstack وSquarespace وWix والمزيد." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "تفضَّل بزيارة ⁦%1$s⁩إعدادات Jetpack⁦%2$s⁩ للحصول على مزيد من إعدادات الكتابة المدعومة من Jetpack." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "تحديثات مجدولة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "تحقق من عنوان البريد الإلكتروني للنطاقات الخاصة بك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "إعداد الموقع" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "أكمل إعداد Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "أكمل إعداد المتجر" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "قم بتحديث تصميم موقعك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "تمكين مشاركة المقالة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "تثبيت التطبيق للهاتف المحمول" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "لم تتم استعادة أي ملفات." @@ -563,134 +119,6 @@ msgstr "ثمَّة استيراد قيد التشغيل بالفعل." msgid "The backup import has been cancelled." msgstr "تم إلغاء استيراد النسخة الاحتياطية." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "الخطوات التالية لموقعك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "إضافة مكوّن Subscribe إلى موقعك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "استورد المشتركين الحاليين" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "عرض مقاييس الموقع" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "إعداد ssh" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "ثبّت إضافة مخصصة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "اختر قالباً" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "إعداد عرض لداعميك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "ربط حساب Stripe لتحصيل المدفوعات" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "إضافة صفحة \"نبذة عني\" الخاصة بك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "إدارة خطة الرسائل الإخبارية المدفوعة لديك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "توصيل حسابات وسائل التواصل الاجتماعي الخاصة بك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "إدارة المشتركين لديك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "كتابة 3 تدوينات" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "الحصول على أول 10 مشتركين" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "تمكين نموذج الاشتراكات" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "تخصيص رسالة الترحيب" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "جني الأموال باستخدام خدمة الرسائل الإخبارية لديك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "تحديث صفحة \"نبذة عنك\"" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "ترحيل المحتوى" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "التحقق من عنوان البريد الإلكتروني" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "يمنع إنشاء تدوينة وصفحة جديدتين بالإضافة إلى تحرير التدوينات والصفحات الموجودة، كما يغلق موقع التعليقات على نطاق واسع." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "فعّل وضع القفل" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "وضع القفل" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "للحصول على ملكية الموقع، نطلب من الشخص الذي تحدِّده أن يتصل بنا على %s لتزويدنا بنسخة من شهادة الوفاة." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "اختر شخصًا ليعتني بموقعك بعد مماتك." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "جهة اتصال قديمة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "الملكية المحسَّنة" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "أصبح الخيار \"يمكن لأي شخص التسجيل\" نشطًا حاليًا. الدور الافتراضي الحالي هو %1$s. %4$s يرجى النظر في تعطيل هذا الخيار في حال عدم وجود حاجة إلى التسجيل المفتوح." @@ -720,149 +148,37 @@ msgstr "الملف غير موجود" msgid "Could not determine importer type." msgstr "يتعذر تحديد نوع أداة الاستيراد" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "مشاركة موقعك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "تحرير صفحة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "يحتوي موقعك على الأنماط المميزة. قم بالترقية الآن لنشرها وافتح أعدادًا كبيرة من الميزات الأخرى." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "خصّص نطاقك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "إضافة صفحة جديدة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "جذب حركة المرور إلى موقعك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "حدّد اسما لموقعك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "المطالبة بنطاقك المجاني لمدة عام" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "مُهدًى إلى مؤلف الموقع" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "صورة مصغرة" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "مشاركة \"%s\" عبر ميزة الإشهار" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "مشاركة" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "قم بترقية خطتك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "إنشاء خدمة الرسائل الإخبارية المدفوعة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "إعداد طريقة الدفع" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "اختر نطاقًا" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "أطلق مدوّنتك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "تحرير تصميم الموقع" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "تهيئة موقعك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "سمِّ مدونتك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "خصّص موقعك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "ارفع أول مقطع فيديو لك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "ابدأ بإعداد موقع الفيديو الخاص بك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "ابدأ تشغيل موقعك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "إضافة روابط" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "تخصيص Link in Bio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "حدّد تصميمًا" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "ابدأ الكتابة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "أكتب مقالتك الأولى" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "أضف مشتركين" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "اختر خطة" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "تخصيص الرسائل الإخبارية" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "يتعذر تحميل الفئة %1$s. يرجى إضافة الحزمة التي تحتوي عليها باستخدام المؤلف والتأكُّد من أنَّك تحتاج إلى برنامج التحميل التلقائي من Jetpack" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "ينبغي تسجيل الأسماء المستعارة لنطاق النص قبل موضع إضافة ⁦%1$s⁩. تم إرسال هذه الملحوظة بواسطة نطاق ⁦%2$s⁩." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "يعتمد البرنامج النصي \"%s\" على wp-i18n، لكنه لا يقوم بتحديد \"textdomain\"" @@ -1063,27 +379,27 @@ msgstr "أنت محظوظ! لقد اختار لك مصمِّمو القالب ا msgid "Uncheck to disable" msgstr "ألغِ التحديد لتعطيل" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "معرّف موجز Spotify " -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "معرّف موجز Apple Podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "العنوان:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "موجز RSS للبودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "الاستماع على Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "الاستماع على Apple Podcasts" @@ -1095,98 +411,114 @@ msgstr "عرض المعلومات حول البودكاست الخاص بك وا msgid "Podcast" msgstr "البث الصوتي" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "تحديد تصنيف iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "تعيين تصنيف البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "تعيين الكلمات المفتاحية للبودكاست" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "تعيين صورة البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "نظيف" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "نعم" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "لا" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "تعيين البودكاست على أنه صريح" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "تعيين حقوق نشر البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "تعيين ملخص البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "تعيين مؤلف البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "تعيين العنوان الفرعي للبودكاست" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "تعيين عنوان البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "هذا هو عنوان URL الذي ترسله إلى iTunes أو خدمة البث الصوتي." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "موجز البودكاست الخاص بك: ⁦%1$s⁩" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "تحديد تصنيف البودكاست:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "تصنيف المدونة لوسائط البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "تصنيف البودكاست 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "تصنيف البودكاست 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "تصنيف البودكاست 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "الكلمات المفتاحية للبودكاست" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "صورة البث الصوتي" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "الوسم بأنه صريح" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "حقوق نشر البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "ملخص البودكاست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "اسم موهبة البودكاست" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "العنوان الفرعي للبودكاست" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "عنوان البودكاست" @@ -1303,8 +635,6 @@ msgid "Edit" msgstr "تعديل" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "صفحتي الرئيسية" @@ -1432,31 +762,31 @@ msgstr "المساحة المتوافرة على القرص" msgid "Disk space used" msgstr "المساحة المستخدمة على القرص" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "انقر لمزيد من المعلومات" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "احسب العناصر في التصنيفات الفرعية إلى أن تصل إلى الإجمالي الأصل." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "الحد الأقصى لنسبة الخط :" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "الحجم الأصغر للخط" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "معرفات التصنيفات، مفصولة بفاصلة." -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "إستثناء:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "أقصى عدد من التصنيفات ليتم عرضها:" @@ -1474,24 +804,14 @@ msgstr "تصنيفاتك الأكثر استخدامًا بتنسيق السحا msgid "Category Cloud" msgstr "سحابة التصنيفات" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "تم فصل Jetpack وأصبح الموقع خاصًا. أعد الاتصال بـ Jetpack لإدارة إعدادات رؤية موقعك." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "تحديث الرؤية" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "بدء الموقع" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "تجاهل" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "تَستخدم حاليًا %1$s من أصل %2$s من حد الرفع (%3$s%%)." @@ -1628,47 +948,47 @@ msgstr "اعرض أحدث صورك على إنستغرام." msgid "Instagram" msgstr "إنستغرام" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "السيرة الذاتية" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "العنوان الرئيسي" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "صورة" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "عدم عرض الاسم" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "عرض بحجم صغير" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "عرض بحجم متوسط" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "عرض بحجم كبير" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "عرض بحجم كبير جدًا" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "عنوان URL الخاص بـ about.me المخصص لك" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "عنوان المربع الجانبي" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "لن يتوافر المربع الجانبي about.me بعد 1 يوليو 2016. سيعرض المربع الجانبي بعد هذا التاريخ رابطًا نصيًا بسيطًا لملفك الشخصي about.me. يرجى إزالة هذا المربع الجانبي." @@ -1685,19 +1005,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "عرض ملفك الشخصي about.me مع صورة مصغَّرة" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "يتعذَّر إحضار البيانات المطلوبة." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "أنشئ موقعاً أو مدونة مجانية على ووردبريس دوت كوم." -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "إنشاء موقع مجاني على وردبرس.كوم" @@ -1707,8 +1022,8 @@ msgstr "يعمل من خلال WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "المدونة لدى وردبرس.كوم" @@ -1785,10 +1100,6 @@ msgstr "حفظ" msgid "Activate & Save" msgstr "تفعيل وحفظ" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "إدارة إعدادات رؤية موقعك" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "تم تثبيت هذه الإضافة بواسطة ووردبريس.كوم، كما أنَّها توفِّر ميزات معروضة في اشتراك خطتك." @@ -1902,8 +1213,7 @@ msgstr "هاتف" msgid "Email" msgstr "البريد الإلكتروني" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "الاسم" @@ -1917,27 +1227,27 @@ msgstr "استعلام حول الحجز" msgid "Reservations" msgstr "الحجوزات" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "إظهار التعليقات من:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "لون خلفية الخط:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "لون خلفية الصّورة الرمزية:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "لا صورة رمزية" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 كحد أقصى)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "عدد التعليقات:" @@ -1959,37 +1269,37 @@ msgid "Recent Comments" msgstr "أحدث التعليقات" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "لم تعجبك أي مقالات مؤخرًا. بمجرد إبداء إعجابك، سيعرضها هذا المربع الجانبي بالمقالات التي أعجبتني." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "في" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s في %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "إعجابات المؤلف التي سيتم عرضها:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "شبكة" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "قائمة" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "أعرض كـ:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "عدد المواضيع الواجب عرضها (1 إلى 15):" @@ -2023,62 +1333,62 @@ msgstr "أصَوِّت" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "وضِّح لقرائك أنَّك صَوَّت باستخدام ملصق \"صَوَّت\"." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "النص المعروض بعد جرافاتار. هذا اختياري ويمكن أن يستخدم لوصف نفسك أو مدونتك." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "رابط جرافاتار. هذا عنوان URL اختياري سيتم استخدامه عندما ينقر أي شخص على جرافاتار الخاص بك:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "محاذاة الصورة الرمزية " -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "الحجم:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "بريد إلكتروني مخصص:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "حدد مستخدم أو اختر \"مخصص\" وأدخل البريد الإلكتروني المخصص." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "سانتر" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "يمين" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "يسار" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "بدون" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "كبير جدا (256)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "كبير (128 بكسل)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "وسط (96 بكسل)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "صغير (64 بكسل)" @@ -2095,7 +1405,7 @@ msgstr "صورة رمزية" msgid "Insert a Gravatar image" msgstr "إدارج صورة رمزية" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "اختيار صورة لعرضها في الشريط الجانبي الخاص بك:" @@ -2107,28 +1417,28 @@ msgstr "نشر حديثاً" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "عرض شارة منشورة حديثًا في الشريط الجانبي الخاص بك" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "حجم صورة الأفاتار (بكسل):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "عرض كل المؤلفين (بما في ذلك المؤلفون الذين لم يكتبوا أي مقالات)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "العنوان:" @@ -2144,12 +1454,12 @@ msgstr "إظهار شبكة من صور مؤلف أفاتار." msgid "Author Grid" msgstr "شبكة المؤلف" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "موقع خاص" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "هذا الموقع خاص." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-as.mo b/projects/plugins/wpcomsh/languages/wpcomsh-as.mo index 134472f5411768ab6af48583effb7f0ca4511510..6a8630a802fd43f7e445f1b8d7d7f612c08af401 100644 GIT binary patch delta 1518 zcmX}rTWm~09LMq5>dorvwq>id)U{i*b-(t3E*c4OY49SU*mj$AcSE-k5;hX?LgHaU zQj$KPBGik;3m!-%B0RVxLZo<*5EUVDjfC&->@eB?`J9I10$kC6Up z^PC$EH0XSX{LB|Fh4=$Y(Z^_NABFnRSk&_gt{!&QVJ+=*TzxC@Gp$_oe$3Sqn9KJ~ zw|8UAe)k~l>POJe3r8^rPrCLVTQG!itiZ#ry%)z&zl!tmA!;JS zMr6mGJA(Y{LlGJ@v+bw>&$|vcaSHVZs8oMOWhTHZ+OQlop@Ur1e$>@ZV37J5)C4l9 zGxPuh_zKnkV-fjZ$jx`x(7;nYSd4lhf*Wu%s^10F1Ye{672j|XhWJZN#C5nBccT_| z2`Aw_)VLq82fw=K$J69j1NNg9 zZAT+PhD|x4GMmu$spx>uCFTF+R&P?=8D5KB~{OwHo`1B|_vAGSmJ>lzcu z#J+g4yUQ%^PQ{XYx=d4NvfV^lT1+IGNJaOUNUSx{9(7cwV$pcitcbR?c6X-i#e#_a zS+I3vTgt5I=;D%WukJ|LLxqjS8>2gUzdDkP$Fa)}6;}Cn+1BB|GI75@$6hL`u|q}6 zY-ga^J_&>}KLdq68!rBCn}QWK7My5L1#j51C5x=TG+~>|CT9+moy*BA57qnr0>%KP AL;wH) delta 2826 zcmZvcd2Ccg7{I4UYgyXbq8wEUPc4=;B2CqVXDmT+}Q~+gtG!%cua3Fj-lll*0@GKKzXscd00wvOqwf+?p183n7 z_&1ygv-u>%U^$fa7AS$Ohmz19D2{%E1@Ib_eFb#+a8jIs-1QPD4r8z$wnE9^oSwg| z^=mMj`3$;yU>=l!N}%kof%59>Au*~|ke_O!6Z_3WknST%BOZ@=lN-sgV(liu?%7C(e5|qbT0*mDP zpT*#3CSp)F)(j?l_y{6x79y`&niw4Aj=cMoq5KCe-~%B_ek@54pL?w_JqCy^cffM8+e-k?Dv$%qoNe ztC5Jbxd`uPru)6ignTxo2-R1`h=CL!vl02Nd3(F~z9g+i>V zGJj;5Dl_Z-D}pEiD-^IS`@7UqpBXi*s6P@l>+IaLCky>8rr|eg^{EQ8KB_7L4UN)U zbWIILAnc-PMbuuGHnpg#IT~mR`-7^g#f-EB%$QmbT+t8+Tk3JM7SD!`Ky+fYPo?EO zVT4v0VSmUhG|Z4c5G*wO;W{H`F11J!`-C2_jHQvLm}N$c`lg8FLPb_ajc6cb8gqK$ z8>^~`w@y`?(P$vtVA&Vbt`1!6*-?v|B6SNQre&!bDmOG|eD~1wZ&D^WiM>vu(@C~6 zFr36bC%M*1yy+x2JBe4E#0jPjImt~!N){Rbg{-l2Rofao0HgO z5Au~xJK(CFPU2m5C?|1HoQOrH4!DCu9Qxm`o2)PL&CToO1a`KH-Q-Str!O~ai#sM9 zeC$xR;~Qe1^!=H?-VO1f>*RHe9(R%(z#%sx+ewgSyZv_mtL43TU|&M)C3mq2cV2+r zq5ZA_(rsg5pR15em;G5repZ)Po%K#)qg3ER#))}kxuK^(uXC?a#>&@1U Lx86N4XI#pEqb%TL diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-as.po b/projects/plugins/wpcomsh/languages/wpcomsh-as.po index 9b56f717c57d8..cb367fdbf13ac 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-as.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-as.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "ক্ষমা কৰিব, এইখন পৃষ্ঠাত প্ৰৱেশ কৰিবলৈ আপোনাৰ অনুমতি নাই।" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "প্লাগিনসমূহ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "গাঢ়" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "পাতল" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "অৱলোকন" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "ছেটিংছ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "সকলো ছাইট" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "মন্তব্য বাতিল কৰক" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "মন্তব্য দিয়ক" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "মই অহাবাৰ মন্তব্য কৰাৰ বাবে এই ব্ৰাউজাৰত মোৰ নাম, ইমেইল আৰু ৱেবছাইট সঞ্চয় কৰক।" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "বৈকল্পিক" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "ৱেবছাইট" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "বাতিল" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "মন্তব্য" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "প্ৰত্যুত্তৰ দিয়ক" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "লগ আউট" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "আৰম্ভ হৈ যাওঁক" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "নতুন পৃষ্ঠা যোগ কৰক" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "থাম্বনেইল" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "শীৰ্ষক" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "হয়" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "নহয়" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "সম্পাদনা" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "বাহিৰ কৰকঃ" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "খাৰিজ" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "সংৰক্ষণ কৰক" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "ইমেইল" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "নাম" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "দেখুৱাবলগীয়া মন্তব্যৰ সংখ্যা:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "শেহতীয়া মন্তব্যসমূহ" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "গ্ৰিড" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "তালিকা" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "কেন্দ্ৰ" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "সোঁফালে" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "বাওঁফালে" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "নাই" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "শিৰোনাম:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ast.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ast.mo index c58ea8a9137bf7952c6349792a8eb3732a729408..95a6d36e6315b263fa98f189e74a7de138cca963 100644 GIT binary patch delta 1355 zcmYk+Uq}=|9Ki9p^55P0FH`%Y=2@DTWmXtbl$3U*rR2Y$2T88GRTu7d;r1>HD&Ko4 zS}J_83=#w(MCc(Y2rbGN2?EOpp}?2IhoZulpzlwoXqex8=C?aHvpci8QZ`dOxLA;O zS5XcSrNp>LsU|$So`%w#rc^n$U?ZBCi{t3UDWs}bG#NOneTUiPA21V_kgAqx((yZH zDK)58);h|=RT<#Z=HV{#LX?Rckg7s7GVZLl9p(Oco%f)RJdEowrmx#rLY_pbx=oYE z`s$v(Fp4tqILebx=<6>qk9cKTF$X)4s(NYoi5k$_C`WJ^^YI4C z5#GW<88}R*5FevV_zdL@XHb4Phca#+Yj9ELUIxqce3aj9(s_k8h_VxPC=1u4yjTcj z-WD(WAE4901*%HW6yY_LiSM8c96~vQ5u~aKnr%3Ra(@9g;AiC7)DJw2zfl%G#M{tS z&FIHYH1VR3{g;K_=mB#m6MjUQ=o8BQFDOs`4bR|DogZg5PGog*`35!<@}N>`)>!?^ zl5PPZi_3#bksS}p`ODeL2e*;fLhL7`$eGFqQ%-CpwiCOFN>#NoVD(!|4NOogsQVyUQc#Ql}g>2;E-)$R|N zmfM?ou&8~&whYy2L<}n#XtLvRblkU@WuB>XKt5RZ~}2 zARIL#rfr2|>V!2tX_@iV>I0+252<=*!P-C2K+zcpq$$*>Ap z$%K0>`&4NOxp=0jEG5MIPUB0st1}OrGp97FfltYjZ5*I*7a6){qr`9$u z?dz{!b^W}0@70@qZTGI{6s?Qgg)H8pl!5s!9<;yTs?>+zKj3ZfjyEZF3~DHP0^bUK zc^wL1ZCV~kUw=k_CE!u&@IF@Y8d+i{2=-k6nnlA z`5h?xJP-L(KjQIDcs2I_GV<3@?EF0x|NIf2hOfu(Gb}3WKEy-jABD2+87TIgi~3V= zKl(b9ID9kmdr;Q@Vbp&NQ}mxgS?3-G%lP|vh~9>cpCacVrl@0(KlLb&H^Md8h3BF8 z{4lzO94Q0PQP{y_3d*H*de;LaD=iu$| z(@@S`#_uC2`S*D!>pdI$zXjioehJFDSE0=NdE~F4tosKj`@af52LBxO+b~l4?}Re{ zE-3!l6Z@wlAB_DSD1Lqfik)33etI0rKA(ab_Mq7DMJVfk1>b`_Zukoz7qAnLR_H! z2{ZU#DEkj^vW$07_8CE0?+Z}AKNG)yHS*g~&i{S*D7+l?e?ihjeFTwqKO%X1W7~a$ zvX}P<5RJ(G(%y%>7ioz?dlw?UmvikyK8(m2B#)%cBOF7`h(Z(pVaBy4=Qx5${6C6F zUW?BpP7fi{9%-Kc{}4Y*dk~Sc9zZ1Lq=}EDEl$upJMmrWs5H4ZQahyGJ3$ls5Agml zGKa_=693+fNSvfL--k#$ge)M(kWV6{g4%;fJBqZCY2+|6iyTBGhd+U+d7b30PPJRt zBUgJ}xKQaj*i=`hAKGd@O|{Xb-PA+Vw~Z=FsC&Uy`u@JR_QJGIMn22)ESc7+-7ux; z8=p<xI=-HJ|5tHLGk;^Q9|Cg{y-)mb<=MFlA!% z2<`1KAE^afR@SS9fhjR&0$mMkf#QmSuWHfw3u@7>n>t6yLXm}_x@@Vsg~@W&-AeL0 zwHL7mJ}t4=!BJLxucVak!lwj$_FSLdm?NaxuFt1G9|EDUoq zI;u_;cqXVNks4^c(}gK$_B2k)H3c+%XUk)w!@&79e*WVba0yTxQ-4GU0ijxv0>G0SS1fVaaNcp z#YjtFrnMEHOlwo7deim-XT@4Png!kSZZlxhy7S^2`g`b$CfKyG3ux_ENnJzvU!tiY?kfWoj9>}$jB%;3wuuXWlFO^W@SG^ zRO;c-dCqy$a%taIZP|qItqllPDY-N`Q}gVobHmhBRy{Fsqk6*mbj5QJ^(4vhB#ASS zFf>=IxoKf&u;yazD$~|0xitY>ZEo?^dX{5Q&*FM!40G3HXIu3~YUNDptlh{07pS$! zejPnKGkdT#bEq|YfY;7}na<3i2WDtfr%#>kwjQ@$#&-09_RQ3R&Zqfg|nYCN)kwtcWY(=z#RV5XM1$~95$XcMZ>bXTWV zy!)(8s@AFWy7AYX+2(raR#PzaNt+L?pHk;aqsKp~CDc}n<7|~(tnp*OyH*$D?I3QK zVn!|E#_O6H!}0c32Fsd?rLLDJYLdp?NmHTJn#)}vakzm}pvEthSy4CjskREQn4a4* z{`#BF4W+6W*0NDku6#`iE9#U{u$QrYx|gq6&Ibxji9uPdRy@U0U{fsjMOKctYt;=2 z1xhxcfXND6oblyalO{>!#hRoUl-HxocVxJ%`1FoN_G#0YUH5$EF`rY_>ZM;S)Z^{4 z;#@2v2JlAG4M|q^7+*2k@GD?^Q`xpi-V>w&Ww9GB)|vGw=gN(DYAL6{8O~n$#xy!9 zW?YaJ6B?)W8BW4Ul`AR9#JMzTdHkZ3x>|zOSS#mec(bPqQtl?cXWm&GYPoPWA75T~ zCGLqO@0#P7=xq|WVffHtsaK114vacc8_e}P)CmEwcqI07eu{*Y!6f>1)P%a0T1dSk zNURw|mWkSV9SVhhe1-dneH!Z_8=RnqK`Z>N5FI#Zy z6#G)nt2Z;LniA)mS80<=%>_7}m6@q1COZz;VMqQO*dTQLc4SRFZYZd$<11>OtJef5 xaXH7PmNHC!l3khga@*F6HW*2GLp4n(`DBVMjijSkv{m;q{@I~4v=v8E{{t6am%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Perdona pero nun tienes permisu p'acceder a esta páxina." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugins" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Prietu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Claro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Resume" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Axustes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Tolos sitios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Encaboxar la rempuesta" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Guardar el nome, corréu y sitiu web nesti restolador pa la próxima vegada que comente." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Soscribir" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opcionales" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Sitiu web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Encaboxar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Comentariu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Responder" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Colar" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Escomenzar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Amestar una páxina nueva" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Títulu" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Sí" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Non" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Editar" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Escluyir:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Escartar" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Guardar" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Teléfonu" msgid "Email" msgstr "Corréu electrónicu" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nome" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Númberu de comentarios amosaos:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Comentarios recientes" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Llista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centru" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Drecha" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Esquierda" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Denguna" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Títulu:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-az.mo b/projects/plugins/wpcomsh/languages/wpcomsh-az.mo index 9dbfd2e3233608a2b21ddd5fb11c93306425bca6..6c670f8679af1906e306986917379116c56f21c9 100644 GIT binary patch delta 5458 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 delta 7515 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketinq" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Bağışlayın, bu səhifəyə giriş üçün izniniz yoxdur." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Qoşmalar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,426 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Ağılda qalacaq bir neçə sözlə oxuyucularınızı şərh yazmağa sövq edin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Şərh formanız üçün şux bir qarşılama və rəng sxemi tərtib edin." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Rəng sxemi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Təbrik Mətni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Qoyu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Açıq" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Şəffaf" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Qürub" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Təzad" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Əsas Görünüş" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" -"wordpress.comr\n" -"r" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Parametrlər" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Konfiqurasiya" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Satınalmalar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-poçtlar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domenlər" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Planlar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Bütün saytlar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Xəta: Sizin Facebook sessiyanızın müddəti doldu." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cavabı ləğv et" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "%s üçün bir cavab yazın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Bir şərh yazın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Abunə" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "E-poçt ünvanınızı daxil edin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Oxumağa davam et" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "İstəyə Bağlı" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Veb sayt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "İmtina" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Həftəlik" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Şərh" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Cavabla" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Gündəlik" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Anında" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Ünvan heç kimə bəyan edilməyəcək)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Çıxış" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Şərh Yaz..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Başla:" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -565,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Mövzu seçin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -722,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatür" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Sizin Bloqunuzun adı" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Yazmağa Başla" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1065,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "Ləğv etmək üçün yenidən yoxla" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Başlıq" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1097,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "Podkast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "iTunes kateqoriyasını seç:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Podkast kateqoriyalarını qur" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Podkast açar kəlmələrini qur" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Podkast təsvirini qur" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Təmiz" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Bəli" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "No" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Podkastı açıq olaraq qur" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Podkast müəllif hüquqlarını qur" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Podkast xülasəsini qur" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Podkast müəllifini təyin et" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Podkast altyazısını qur" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Podkast başlığını qur" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Podkast qidalandırıcınız: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Podkast kateqoriyası seç:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Podkastlar üçün bloq kateqoriyası" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Podkast kateqoriyası 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Podkast kateqoriyası 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Podkast kateqoriyası 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Podkast açar kəlmələri" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Podkast təsviri" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Açıq olaraq işarələ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Podkast müəllif hüquqları" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Podkast xülasəsi" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Podkast istedad adı" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Podkast altyazısı" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Podkast başlığı" @@ -1301,8 +631,6 @@ msgid "Edit" msgstr "Redaktə et" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1430,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Şriftin maksimal faizi:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Şriftin minimal faizi:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Kateqoriya ID, vergüllə ayrılmış" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Ayrı tut:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Göstəriləcək kateqoriyaların maksimal miqdarı:" @@ -1472,24 +800,14 @@ msgstr "Bulud formatında ən çox istifadə etdilən kateqoriyalarınız." msgid "Category Cloud" msgstr "Kateqoriya buludu" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Gizlət" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Hazırda %2$s yükləmə limitinizin %1$s qədərini istifadə edirsiniz (%3$s%%)." @@ -1626,47 +944,47 @@ msgstr "Ən son Instagram fotolarını göstər." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Bioqrafiya" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Sərlövhə" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Adı Göstərmə" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Kiçik Göstər" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Orta Ölçüdə Göstər" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Böyük Ölçüdə Göstər" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Çox Böyük Ölçüdə Göstər" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Sizin about.me URL" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Vidcet başlığı" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1683,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "about.me profilini miniatür rəsm ilə göstər" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "WordPress.com-da pulsuz sayt və ya bloq yarat" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "WordPress.com-da pulsuz veb sayt yarat" @@ -1705,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "WordPress.com Bloqu" @@ -1783,10 +1096,6 @@ msgstr "Qeyd et" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1900,8 +1209,7 @@ msgstr "Telefon" msgid "Email" msgstr "E-poçt" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Ad" @@ -1915,27 +1223,27 @@ msgstr "Rezervasiya Sorğusu" msgid "Reservations" msgstr "Rezervasiyalar" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Bundan şərhləri göstər:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Mətnin arxa fon rəngi: " -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Avatarın arxa fon rəngi:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Avatar yoxdur" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(ən çoxu 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Göstəriləcək şərhlərin miqdarı:" @@ -1957,37 +1265,37 @@ msgid "Recent Comments" msgstr "Son şərhlər" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr " " #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%2$s üzərində %1$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Müəllifin bəyəndiklərini göstər:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Tor" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Siyahı" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Görüntüləmə şəkli:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2021,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Gravatar-dan sonra görünən mətn. Bu istəyə bağlıdır və özünüzü tanıtmaq və ya bloqunuzun nə haqqında olduğunu anlatmaq üçün istifadə edilə bilər." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar bağlantısı. Bu Gravatarınıza hər kəs tərəfindən tıkladığı istəyə bağlı bir URL-dır:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar tarazlığı:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Ölçü:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Özəl E-poçt Ünvanı:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Bir istifadəçi seçin və ya \"özəl\"i seçib özəl bir e-poçt ünvanı daxil edin." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Mərkəz" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Sağ" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Sol" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Heç biri" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Ekstra Böyük (256 piksel)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Böyük (128 piksel)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Orta (96 pikel)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Kiçik (64 pikel)" @@ -2093,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Gravatar təsvirini daxil et" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Yan menyu çubuğunuzda göstəriləcək bir təsvir seçin:" @@ -2105,28 +1413,28 @@ msgstr "Təzə Nəşrlər" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Yan menyu çubuğunuzda Yeni Nəşr edilmiş bir nişan göstərin" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Avatar ölçüsü (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Bütün müəllifləri göstər (hələlik heç bir yazı yazmayanlar da daxil olmaqla)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Başlıq:" @@ -2142,12 +1450,12 @@ msgstr "Müəllif avatar təsvirləri tor şəklində göstərilsin." msgid "Author Grid" msgstr "Müəllif Toru" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Bu sayt özəldir." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bal.mo b/projects/plugins/wpcomsh/languages/wpcomsh-bal.mo index 44b0adffa1be216574b5e09e1bcfb57b54af7fd3..c20e6fe524abc38f75d1cf549c54f0c1b3f656a6 100644 GIT binary patch delta 1127 zcmY+@&r1|x9LMqR)~>p0S^mf}waF|sLNFqNf_}JC&|;xMT{;Zz=q|V`?2guLsZJpw zGz!@v@*sJzE*`8up+6xH1rY=V(ItW?==~X=4n53wUe7c0?DKr*JF{EuQA_oGb8^XO z14Jj0OPHO-^&OmOPj;Fe!ezXKZ*VvM#xyo0&1$d>8?h5>aR51Nh*JtrV;!Dzjvz~{e~wPCnyhH8^k8| zw^MXfvWzo}D)9~H1nLK6Y{t8&#OAR9m)!jo)DyqJ9^6C@+v21L`iOc3pHYc_$Ep_o zNk^IgL1mm^mc~guigl=s2T}7cq87Z2s$3TJjoic*yn~uQk4p3zYTg=FaKl~iOY{Df z$q=*H+s>dSUO**q70=@}H(o$088;=Or`JZu;w#(9s(YBwI%=v&{4lsn7ieunZ`@P; zX&$kkP!cM=s?bWb6Z)#vItYDO{~Ed25u%S6Aodb!UEBP3KHx@rSXHW<=qL8+FQ+E; z&ZtaWLa;s2Z1P@5Pzr;x4d?yRRN#gApcq&tnDl3-!)PcqnXZJEotg3qrRY`axHlF| zFy9-VDHgF}V}+@FXyg7|5TA0oNF*{wTguabvezciB+0Wwq*e@3bVwrNlluS_ZZM-k|`MIRJeeaVBr|Lh1J<~zUhotgPA|1-Ot z?LQBT@N`I~NKZJVj z6R5FhptmB`SPk!?c3kB*SJ4@4FauBMZolH875jYL^Ky}c7Lmbyja2)>? zs!*KIp$a(%xn;hAD(E|S3;dzn{{yylmRDJ*!d}XiUxnAhVW@!n;1C>zT;@?G-JgNF zKM$4gdAJugp%T9Z6}JOPVcswOGf<6wI$+vGfG^4$7oa-51l8es>3;gu5Y^d5uX0y$$s-ufgr`tF7p-K;N@LEOQxhnctW)_*c2_X;+C7 zs6fk5&%FxO*&9%WpN5aacT4|A$O#og1@0-=QdtdEb^aQ|m>su#$A{c(vZTE{T^%w_P^12uebe(i)%hKlLc(*m%>#u z>Eqm|X0qwxhPQdsN8U`i^kp;U7hNmN%~X&@L6&t6RThUE&D_ie8B@}*L0lkd<(-c! zW9_41s}aPRnfEn9+Q}q}pnRp75A^PWTlU3dqg5Nb$d6kexgZ?3F0R{?{&*JTp1{-* zWcGNPoXmV`7n4+l+1Rh-HV-0i58GNd{J|nx-7NSmc^<@#taGJusqZ-jy6{oo*`8xX ztKVJ>UD>skHuM?YXG=+z`>aqPb-5l`4xII&%_+*vBw5WIO?};?PZY$i?$9KwxiohN znn~wGe|y(t=u$HqqKGroah^J}&`R^pX8%NcdL{R979=Qw6e!_RT1pFXBnsJMGnIPY zBx-k3?#Q=noJ8Yvn5L|K=xcepaXt=eHn3rs)TER3v2`a}KFg7D**9Drjh4`g=A2zh tH^$Ge1d+4FEoXUBicv*?V*8uU*2$Thxuu#a>^xh&R-G+Fca97k{ug0R6jJ~I diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bal.po b/projects/plugins/wpcomsh/languages/wpcomsh-bal.po index ee341f5169739..d08002a1c9e3f 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-bal.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-bal.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Extensions" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Fosc" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Clar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Opcions" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cancel·la les respostes" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Desa el meu nom, correu electrònic i lloc web en aquest navegador per a la pròxima vegada que comenti." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Lloc web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Cancel·la" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Respon" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Surt" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Títol" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Sí" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "No" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Edita" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Excloure:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Descarta-ho" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Desa" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "Correu electrònic" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nom" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Nombre de comentaris que cal mostrar:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Comentaris recents" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Llista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centrat" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Dreta" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Esquerra" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Cap" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Títol:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bel.mo b/projects/plugins/wpcomsh/languages/wpcomsh-bel.mo index 0a58d8ecbb34f75321a3de1a4ed7f66bf94d94cd..16bccc8d03a7512bd793b92c2c42a82cf21b1df2 100644 GIT binary patch delta 1363 zcmX}sSx8h-9LMqhnB$g?OPMX2lcr{imMsJk(ISNyNDCoWw2dX{OrR3=kP$&eFV&@j zqC|SAAYy2U3blF=dMN1n5Q4No4-pYWZ-f zy=;`_L@_ZGFx!ajlQ>b%rka)FIb4T#F@#?+6UUIlfR`9a4`Vg?5!67}ki+_1ejD}teP_b8KSoX9nQMQ6S>&%U zh4F2~T^Pk#T=;+-HpVFz1B|9TA2mP`YGTE%y&832Evn-+Sc?s)6*`W3?zGF#;Q?|F zgN$!K+=ahtAkSdBR4s)0Sm^R9)UMQ^2B^b&+=si^wmaBJp2nywt!>5WxDz$uZr6Sa z)$e)i(O%x5QiS)MLpYWEE$WTF;}rajHJC?Z@=ZDE`39VU%~*n+sEJ)f4jbX534C<< zH|MV`)?YIXP9E)Y6VuHI$Vuf!WQQqY#@)Io{wWWK0yui4)gE}YD>plUc^Pc zz&tF(9oek^W-1*t=neW&9lk+5_#U6*FW26mGyX8YLnN2KB*34!i{U^&DXBq0J zt)dArFIz}x|21)qZ&iernQgK8gx*|5TTzp&naxFgbov0bQp<=^B86B$XnR!jA5u+J z5{n2ebC{SYT3!9zmy9=rk{{Z{Mf3gykLE;U(PJI4?oM0R9y{purWL1eh_vqQZtwC& z(oTn3yR5OTlT++qxGn0PNnc&qbSM^$*p|rtNVF@wKGxBJo!-y%lE8sm(TqUiWag%n zsTce~Kkg3>U-1Xbzv%b-PyK{fl)Y+NuOAQlkNg2YK74cdjPB80iN5S`AoD8sJ@g;= nac?YVrdJlal+hJwkF+wJ_bpWERp!>Gs@uf&yw3rzso>>5J{+bv delta 2486 zcmYk6Yiv|S6vwB~0<}N^E24m0RFFq0ilRUPg#wBx79mpnU~r+gW#c}`?zXjwx-F$b zc%;+~n#e=2QTap)-KJ7#AxfftAekEtK}8cEF(J`tjGqWbfB)Sk4v(r`Z93w1ODP<}2s z{R>!!{w0*3MJ!5d;c_M!o`I_PIXE7^;PeJaP9_F^*a{VJ7hDaq@TCG{Zoq2v z%_aFnKY)|aPeJ+p463lNOXxqzm|vXXcc|9gbPFf3N|$X8yc;ft_rm8PkBK;Y3mk{u z14n(;^wxC!0`(;d95(P(%P&VsUE zhf3^E$G;(`Wk&IvoCwPxF3eo0^-Cew!K{YrKn+xfH^Ddb`#-`9cgD;_H0B};a&P&w z)GIM^V+HdZL=~uw3ZS8mDfq)u82Y2q1zn7kBkGuvzI~`0kLvfYHqcGO(fv1c+wVu_ zA+wxSRjHCEoc^Svu-v_SP#0B$y3AvUE}(|0*I1KBZeF6_zlJWAhW<#@cKsDUh&+X? zLUijjDiIx%ey-CHj@R6WJcQgns!*08I-1#tT0R4L1euR4LKY&$k2C2eF3oflHqVVj zyp7?MpEN6C@mNbV-k3BiBk=}P6^d>1BMx4|-w|oa6c2blXady6Y;-sLT~Rt|$!v@^Cx3yu9S=;9Mjf=*-K zvpt^eNAC%a1-n@`D33Y!K?m{A<=yvwTkI9ove*t_91Pm?F%{26!9lCB?~rSsLK%Ak z^aVRH2y9x)z;;ymqBNFu21Sm(B=gPa@h{h zqE>=Yxf1j21v?b%QQz3)k<9^ndfu(m@q%`bxCivvp7-qOoUdc#+ZVL5Lq2j7^`&

%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Вам не дазволены доступ да гэтай старонкі." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Плагіны" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Цёмная" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Светлая" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Агляд" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Налады" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Усе сайты" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Адмяніць адказ" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Пакінуць каментар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Захаваць маё імя, адрас электроннай пошты і вэб-сайт у гэтым браўзеры на наступны раз, калі я буду пакідаць каментарый." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Неабавязкова" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Сайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Адмена" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Каментыраваць" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Адказаць" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Выйсці" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Эскіз" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Назва" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Так" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Не" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1300,8 +632,6 @@ msgid "Edit" msgstr "Рэдагаваць" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1429,31 +759,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Выключыць:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1471,24 +801,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Адхіліць" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1625,47 +945,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1682,19 +1002,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1704,8 +1019,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1782,10 +1097,6 @@ msgstr "Захаваць" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1899,8 +1210,7 @@ msgstr "telefone" msgid "Email" msgstr "Пошта" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Імя" @@ -1914,27 +1224,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Колькасць каментароў для адлюстравання:" @@ -1956,37 +1266,37 @@ msgid "Recent Comments" msgstr "Нядаўнія каментары" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Сетка" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Спіс" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2020,62 +1330,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Па цэнтру" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Справа" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Злева" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Не" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2092,7 +1402,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2104,28 +1414,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Назва:" @@ -2141,12 +1451,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bg_BG.mo b/projects/plugins/wpcomsh/languages/wpcomsh-bg_BG.mo index a5396e43ed3352fd5ef657d0c90033ef1694a7cf..cf74ae4f5417b26ac8e04500264b1de318235181 100644 GIT binary patch delta 2657 zcmYk-3rv+|9LMp8Bo!4DICufYgLp&}Z)JH&69Mm+5HE4t}JFt%WSY{NqAlw?c_&P0BuoU9X8VJfb| z-na?*nO)93m}pGQyiXy68y_Nlo71Sizj1n~0epvD@fr@oUvW70>e7CFDyrjBOv5Ee z6H|x9xB>P2r`R38#zguz7b&RWWoH{cNc}c4NplzVLOreP>6natP%p|uwHt%X$P~Ex z6z5!bz0A1`htMvlI{lk%6g1S!et=<+o<>5!5CrwCd$0~oI_DB9)&s^<4`kR75wKZq354NEOn!vY3 z(fCl;1E_&bLUmMx^leJek1MbrZpLDK2Nz)Ms%tQox2i!oYCs#1Tc!!O;(m91ILo5@ zvrq%5Ma^&{j>Mg)r9Oq3coy@q4dVm$wbuj4qQp!o1uaD->cLg0hU=YMox4#pJAl*i z2x^A^q6Uz{9}(?s0M%{;X5$3ZAE2eEexmOFCQQ-y|1t$8XWl^V{RgO(Xht2TR#XQU zP%pTJ8sHsNyH4EHiUd#tDnt!no~tj%LDcIo7n@KMJ%&B?{eMA01Gt20cnjl8)r(c2 z9>CG~HnNJQ75(@V>a28RdU~M`E3rRn=8dQU?M0oTgU+*fl==;fX-0cELF(`T>P5$0 z{WNM|7f>DDM9ttX>hsBBgS7&=r~yt!cEha4VYm$k;3vqO%=f4j{T*lEy-e2s6oo>D zryGf^qdub~V!Sc$`qDO8VxP5Ce%KVkt46$RPqmDY1-Dnm}mKIve-XA_`9s zqqP4@T6U$O?Zp4Hsn~(g$|yb5PCOq+uJ2y63dOIqXDeN~0R6-);z@#?iYKkMR%SY( zzaR1bS&ewACfC7H(y~871c`?UB|ew@w5OAad4%>`OWl!}MBGo>PJPBY7bD%p z1vr*?l!y%`D<<@RU^tOaOeB=F71~!0di;NW4YD)wLp28Th{p&eosXGB39*=%ORON~ z5c3IbuM$VcJVjIxQ#F1a1SOs9+3`~Qp;B=GfwugEYc3Kx) zAB+aqSzl_U-JI$hwlVT_)XWa8Bn#7UcBIB1t~YZ+4Gnt3++ZD9=$WX$AsSlKV0)(( zrI*x3>O+P+8Zjl2>Z)Kv)V`UPolzR93e`vbMUlEXY%rzan%bznmKLyO>BV+m`ZAm9 zJ7<6P6?Y9+*My?}XgIn$WGga!&08~GNw5ohRoG{H=h^9f&f5IUiS}YHF-cj$Q*W#TZj(CT?&%9&aVdK5ky2Ja( zYq7QdY`f1t*0%ZA+KoBcU0b}5z2n}&)-A1#_Cij+O&ySv)YQ78bqf!+*s=lTwlcTT p-p#$<{LjGM3HHFCcWuGI4Euau&*b4%kvf08pJuP6`9@x5!hcMKSIqzb literal 10498 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bg_BG.po b/projects/plugins/wpcomsh/languages/wpcomsh-bg_BG.po index ce33656226e8d..8263c697368b7 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-bg_BG.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-bg_BG.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Маркетинг" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Нямате необходимите права за достъп до тази страница." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Разширения" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Няколко думи, които да подтикнат посетителите ви да коментират" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Настройте формуляра за коментари с остроумно приветствие и цветова схема." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Цветова схема" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Приветстващ текст" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Тъмно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Светла" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Прозрачна" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Добавяне на домейн" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Залез" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Сакура" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Лек сняг" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Здрач" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Контраст" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Класическа ярка" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Класическа синя" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Накратко" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Настройки" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Конфигурация" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Покупки" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Имейли" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Домейни" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Планове" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Всички сайтове" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Отказ" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Вашият отговор на %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Вашият коментар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Запазване на името, имейл адреса и уебсайта ми в този браузър за следващия път когато коментирам." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Абонирай се" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Въведете имейл адреса си" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Цялата публикация" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "По избор" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Уебсайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Отмени" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Ежеседмично" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Коментар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Отговор" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Ежедневно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Незабавно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Адресът няма да бъде публикуван)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Изход" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Добавяне на коментар…" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Първи стъпки" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Избор на тема" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Добавяне на нова страница" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Картинка" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Стартирайте сайта си" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "Отмаркирайте за деактивация" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Заглавие" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "Подкаст" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Да" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Не" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Редакция" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Изключване на:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Пускане на сайта" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Отмяна" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Биография" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Заглавие" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Снимка" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Заглавие на джаджа" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Създаване на безплатен сайт или блог с WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Създаване на безплатен сайт в WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Блог в WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Съхраняване" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Телефон" msgid "Email" msgstr "Имейл" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Име" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Цвят на текста:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Фон на аватара:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Без аватари " -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(най-много 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Брой коментари:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Последни коментари" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "в" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s в %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Мрежа" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Списък" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Показване като:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Размер:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Изберете потребител, или \"собствен\" и въведете вашия имейл адрес." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Център" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Дясно" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Ляво" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Нищо" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "Най-нови" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Размер на аватар (в пиксели): " -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Показване на всички автори (включително и тези, които не са написали нищо) " -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Заглавие: " @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bn_BD.mo b/projects/plugins/wpcomsh/languages/wpcomsh-bn_BD.mo index 5b7c5337f01b8ad3406f95cff19942030cad9bd4..13780e332b1def9fd3ba312d42878e752b0aedc5 100644 GIT binary patch delta 1733 zcmZ9MeQ4EX6vxlqTzB{0c{jc8PMx#Ow`MQC=IeY*H?yd%LL@L(W6n8nyN1_)7IbX} zB5H^aGZZ5F=eJNP^ZpS^HA4%;AV?TSU_V0oD~3t^)v!L_-+lH^hkJgX=RB|HIp;k0 z^R;7(3-_i^88)O1orAWPnRUSfQ}`ecD$J_jpYU<`2yTUQA2UnCE|`D^VH^%ZEggd8 z@EGK0Cp^zU?RO5Q%nBCJ(84QF3$H!Ier0F z!^_^j4&~tYu!{5Twja0)HSwOe$Dt1T%iI5YRuG1z^rxUA)dIC)o3~$td$D&yIdIkY zk9zwSl%qdFId5Y$qJ!Zy>~TLqyDNur7##@Puv?&R{+{RiFdgIO@LBrL;`JcB4YmJv z68#ixhf3WbR1KU;5q~w#`+*TS6Z@Ly9jJr?ro@vV}9cAP$8S}{pFNCm$eL(Lk*B2 zTL!gmlOJz~Yp`F3T7MeK@eiTaeNmwCDvg^^8)jLp=hX;hcSCvF4_CpXP!YNcb+ezK zHcZu+HN%CFE^CKc-wBVy{ZR8BLKSBfd0qeu%`~dX-OEr5_TZK#^gLF`4GyXrc5dH>tPQ2c{mQggxV*VQF7ob$Z@t1MGDc|EVa!Ti^8ZI{9hDCIVRCf zbm-GEyyyk2Mpb}Hsa{SUD%pgR`ltwX8Qr`j*`FKevDbRKdj|52+j9N=@Q^#5 zY>4f36{$|wpZcNLS+%*${gPhonya_C;p(B9Pr_g{3@(Pjm2l)#7<}wb)^xgwnm3DI zPfNz)m%`wiF!;>nG7H?L%-#6KaO6Z7eCmFkvE8kx-R0iR&T`%9Z1H+F87tne+fh~= Io_#*{AG;m7e*gdg literal 7215 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 NVWz(u+nRO6{2x&gK_vhH diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bn_BD.po b/projects/plugins/wpcomsh/languages/wpcomsh-bn_BD.po index 353af9bce5f28..ff24f4800512f 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-bn_BD.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-bn_BD.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "দুঃখিত, আপনি এই পাতাটি দেখার জন্য অনুমতিপ্রাপ্ত নন।" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "প্লাগইনসমূহ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "অন্ধকার" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "হালকা" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "WooPayments দিয়ে অর্থপ্রদান করুন" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "সারসংক্ষেপ" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "সেটিংস" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "ই মেইল " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "ডোমেইনসমূহ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "সকল সাইট" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "জবাব বাতিল" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "%s এর জন্য একটি উত্তর রাখুন" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "এখানে আপনার মন্তব্য রেখে যান" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "পরবর্তিতে ব্যবহারের জন্য আপনার নাম, ইমেইল ঠিকানা এবং ওয়েব ঠিকানা এই ব্রাউজারে সংরক্ষণ করুন।" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "গ্রাহক হন" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "ঐচ্ছিক" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "ওয়েবসাইট" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "বাতিল" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "ওয়ার্ডপ্রেস" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "মন্তব্য দিন" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "জবাব" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "প্রস্থান" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "ওয়েবসাইট (ঐচ্ছিক)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "শুরু করুন" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "একটি নতুন পাতা যোগ করুন" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "থাম্বনেইল" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "শিরোনাম" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "হ্যা" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "না" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "এডিট করুন" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "বাদ থাকবে:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "বাতিল" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "সংরক্ষণ" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "ফোন" msgid "Email" msgstr "ইমেল" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "নাম" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(ধরা যাক প্রায় ১৫টি )" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "যে কয়টি মন্তব্য প্রদর্শন করবে :" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "সাম্প্রতিক মন্তব্যসমূহ " #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "চালু করুন" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "গ্রিড" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "তালিকা" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "আকারঃ" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "মাঝামাঝি" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "ডান" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "বাম" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "কোনটাই না" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "শিরোনাম:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bo.mo b/projects/plugins/wpcomsh/languages/wpcomsh-bo.mo index 628285d156889c23974a2c0e8c54e6967a982a1b..6b33320a71bd1e17eba99b916f0b9f7acf3563f0 100644 GIT binary patch delta 1349 zcmYk+TS(JU9Ki82U2Zz(W#+oL)wHs#rZZEDl+aY{;!F6_6-=iXZiAd%s2GGnz4*|f z3qcpHC#i>6l92<0dIH zDoP#IN1d@LwI45K@{1yKgBLD}Ih)82y8@1Ti~VGePpiTkmN_zX%0M$yjv z>WOK1hTX)kP$mkHH|bc85{Hmis?OMea!SqEf^C@1@eN};@g34C-(Ns4e#h15ps^SO zn2;6M@gO^G#dEu?Y3aS2m9l?)ls9bI*#Y{#MPm`0X|~Afxf7AJL~fghr7bjcwk>F62Sp|-s!h>>u=7b zBihX9ddj1Ew@i=cQP5ztGDG`nNN+(rzYo9S}*3;>V|?xy1LM-PZW0O RNsl-A({n!~IbNJ;`v*Z+jTry{ literal 5816 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "དགོངས་དག ཁྱེད་ལ་ཤོག་ངོས་འདིར་འཇུག་པའི་ཆོག་མཆན་མི་འདུག" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "མཐུད་སྣེ།" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "སྨུག་པོ། " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "སྐྱ་བོ།" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "མདོར་བསྟན།" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "སྒྲིག་འགོད།" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "བཟོ་དབྱིབས།" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "དྲ་ཚིགས་ཡོངས།" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "ལན་དོར།" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "མཆན་འདེབས།" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "རྗེས་མར་ངས་དཔྱད་མཆན་སྤེལ་དུས་སུ་ངའི་མིང་དང་། གློག་ཡིག་ས་གནས། དྲ་ཚིགས་བཅས་ཉར་ཚགས་བྱེད་རོགས།" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "མུ་མཐུད་དུ་ཀློག" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "རང་མོས།" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "དྲ་ཚིགས།" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "འདོར་བ།" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "དཔྱད་མཆན།" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "ལན་སློག" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "ཐོ་འབུད།" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "མགོ་རྩོམ་པར་བྱ།" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "བསྡུས་རིས།" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "ཁ་བྱང་།" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "ཡིན།" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "མིན།" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "རྩོམ་སྒྲིག" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "དེ་ཕུད:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1469,24 +799,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "ཡང་བསྐྱར་མི་འཆར།" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1623,47 +943,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1702,8 +1017,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1780,10 +1095,6 @@ msgstr "ཉར་ཚགས།" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "" msgid "Email" msgstr "གློག་འཕྲིན།" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "རུས་མིང་།" @@ -1912,27 +1222,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "དཔྱད་མཆན་འཆར་གྲངས:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "ཉེ་མཆན།" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "དྲ་མིག" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "གསལ་ཐོ།" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "དབུས།" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "གཡས།" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "གཡོན།" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "མེད།" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2090,7 +1400,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2102,28 +1412,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "ཁ་བྱང:" @@ -2139,12 +1449,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bre.mo b/projects/plugins/wpcomsh/languages/wpcomsh-bre.mo index a8812a5a9ed137a7b85bf24ae34d50c3598fc26a..1bcf48a552e5478784e580668646dcd8fadbb320 100644 GIT binary patch delta 1762 zcmX}sO=y%y9LMq5n%K>5lHEKe#X*V(Pt=3pIk?0|U24fM7<;jcY1vW3$ z2reR`EjAveJ$SGwC=FhGg`xr5Dw2bWAjXrTAc!C-LcoLe((f-$I_&@X%*@XFJiAXS z#$%c1Ue+&$)IcmEc79?^E1u5cL5j{crUDDF3fJN{*o`@O1wX|xEWkTB4<}GV{DVa} zh4~nyFin{hIl_Febj_6Q3Jd~E%0AV;w;W}HKvd` z%>mTH2TcoC?Ud!eD^~GH()ZspA!l$VEDbz&o@pBBY9p*GiEX6gbh3-Zz zY%gj<-=QYzLbX4NI;kH~?T1~x&5+?V%?N6Mi?|doqXv5He1R*If zcns%bEvkPL#;^tHVh*GFokT4#^OMVrpmux}wc{J89sZ3v(ifVFXR^7Ww>{sU@3zoM>k6nSSdW{ivmzJ)rXJIK3ZJ|i{}%Lx79DCzsJ2_5MM zLVq+$%L(28dKE|sVlh#vf=imC%H@}!HdU_QzgER2%mN}sC{+-;ZzY|Ij(9Dxf+!~H z3GG5@4WXAzyVkE@CT(^Z_A{MyJxa-sOrPQx%>RGVeXJwuh&a(eln}axT0-x|Mq&%0 zzv`K!Kbx5pC8PT;a~0KC;-25xig@2U~1i<UK z(>&X6YaQt7x4}?}O@?B5^=ZGaqw8?I3H$8PP&%ir-)!$~k9YRiM0km94%dX6I(mD2 z!?VBFj)r6QL3o7?!xlgZG=baANiTs^*Q)IFIJ<=Z9oc7~GoxKBo+LlKXwmDiA zY52ai@1WlwZ%y|2gZ_~HD|$S4}7kN^Mx literal 5205 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 h4vW~6cqUcQp@)6HyM;gkJ`5%Yn(;@%> diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bre.po b/projects/plugins/wpcomsh/languages/wpcomsh-bre.po index 3ebc059aa9d30..a2315b4cdda19 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-bre.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-bre.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Askouezhioù" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Livioù" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Teñval" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Kuzh-Heol" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Sell a-vras" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Arventennoù" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Arventennoù" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domanioù" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "An holl lec'hiennoù" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Nullañ ar respont" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Lezit ur respont da %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Ober un evezhiadenn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Koumanantiñ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Lakait ho chomlec'h postel" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Kenderc'hel da lenn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Lec'hienn web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Nullañ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Evezhiadenn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Eilañ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Digennaskañ" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Krogit ganti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Dibab un tem" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Skeudennig" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Roit un anv d'ho plog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titl" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ya" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nann" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Aozañ" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "Koumoulenn Rannoù" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Nullañ" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Skeudenn" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Krouit ul lec'hienn pe ur blog digoust war WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Krouti ul lec'hienn digoust war WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog war WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Saveteiñ" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Pellgomz" msgid "Email" msgstr "Postel" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Anv" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Liv foñs an Avatar" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Avatar ebet" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Niver a evezhiadennoù da ziskouez:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Evezhiadennoù nevez" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "war" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s war %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Diskouez evel :" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Steudañ ar Gravatar :" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Kreiz" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Dehou" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Kleiz" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Hini ebet" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Krenn (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Bihan (64 piksel)" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "Embarzhit ur skeudenn Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "Gwasket a-nevez" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Ment an Avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titl:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Ul lec'hienn brevez eo homañ." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bs_BA.mo b/projects/plugins/wpcomsh/languages/wpcomsh-bs_BA.mo index 76c850bb05b3db3bd651d80f0f784f1bf707f4ed..5b0ef684aa0891ce519dd1a8ffbb0d32686fd8f3 100644 GIT binary patch delta 2771 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-bs_BA.po b/projects/plugins/wpcomsh/languages/wpcomsh-bs_BA.po index 1967d5917394d..bd93d225beb99 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-bs_BA.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-bs_BA.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Žao mi je, nije vam dozvoljeno pristupiti ovoj stranici." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugini" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Galerija tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Nekoliko riječi kojima ćete motivirati vaše čitatelje da komentarišu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Podesite formu komentara s pametnim pozdravom i shemom boja." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Šema boja" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Pozdravni tekst" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Tamno" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Svijetlo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Providno" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Zalazak sunca" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Pregled" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Postavke" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Kupi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Email" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domene" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Sve stranice" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Greška: vaša Facebook prijava je istekla." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Poništi odgovor" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Odgovorite na %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Komentariši" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Sačuvaj moje ime, email i web stranicu u ovom browseru za buduće komentare." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Pretplati se" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Upišite vašu email adresu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Nastavi čitati" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Neobavezno" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Web stranica" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Poništi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "komentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Komentariši" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Adresa neće nikada biti javno objavljena)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Odjava" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Web stranica (neobavezno)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Napišite komentar..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Započnimo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Odaberi temu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Spojite račune društvenih mreža" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Umanjeno" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Dajte ime vaše blogu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Naslov" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Da" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ne" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1300,8 +632,6 @@ msgid "Edit" msgstr "Uredi" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1429,31 +759,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Najveći postotak fonta:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Najmanji postotak fonta:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Izuzmi:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1471,24 +801,14 @@ msgstr "" msgid "Category Cloud" msgstr "Oblak kategorija" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Zatvori" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1625,47 +945,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Fotografija" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1682,19 +1002,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Nije moguće dohvatiti tražene podatke." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1704,8 +1019,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog na WordPress.com" @@ -1782,10 +1097,6 @@ msgstr "Sačuvaj" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1899,8 +1210,7 @@ msgstr "Telefon" msgid "Email" msgstr "Email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Ime" @@ -1914,27 +1224,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Pozadinska boja teksta:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Pozadinska boja avatara:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Nema avatara" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(najviše 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Broj komentara za prikaz:" @@ -1956,37 +1266,37 @@ msgid "Recent Comments" msgstr "Nedavni komentari" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "na" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Mreža" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Prikaži kao:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2020,62 +1330,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Tekst prikazan nakon Gravatara. Ovo je neobavezno i može se koristiti kao vaš opis ili opis vašeg bloga." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar link. Ovo je neobavezni URL koji će se koristiti kada neko klikne na vaš Gravatar." -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Poravnanje gravatara:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Veličina:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Email adresa:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Odaberite korisnika ili \"ostalo\" nakon čega je potrebno da upišete korisničku email adresu." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centrirano" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Desno" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Lijevo" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Ništa" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Veoma veliko (256 piksela)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Veliko (128 piksela)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Srednje (96 piksela)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Malo (64 piksela)" @@ -2092,7 +1402,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Umetni Gravatar sliku" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2104,28 +1414,28 @@ msgstr "Nedavno objavljeno" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Veličina avatara (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Prikaži sve autore (uključujući i one koji nisu napisali nijedan članak)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Naslov:" @@ -2141,12 +1451,12 @@ msgstr "Prikaži mrežu avatara autora." msgid "Author Grid" msgstr "Autorska mreža" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ca.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ca.mo index 378b2f3bc0e5032b89959e6be9ad264c307d22de..93fca48e5fbafb62380f1a0d0402a5b40e1a1519 100644 GIT binary patch delta 2548 zcmY+_TWl0n9LMp~0s_)@+tONSX}cizUMN%rDix#`ZUvFH6hSCcc3MWav%0%A)EHM{ zgoyW?cp)M@5TZONB#kCS5+cYRZ8gF7A zj^N}3EJR(e<}eZ$U?J0(dOGAZt*D7QP`SGUdr<`>aTM;vakv|+(V`Nb#6~<7To2u8 zOo(v_Dq#h3$XozDMuAPJs4M_=BbtBHw%Ib^{B0CM6GCZFm_Qp@GRzIk}2IKv~^~0#d zA0hwD#~e!VGgKkx0xw}oTl6a(CH@;V&L^90oPtU?6IDPJ2kl55>iTkAf@@H}do4JB z09D|jV0<+26Vy9#9OvLSS?s@_$v>P>qA|>_aW>wCMHsnsmGCG& zjGtn99$qNzWDzQHIdaL&Mg4AZ4*O4T)69wVONgqh1DkL+YKy-PJdHUS#(altmbu8X zm8O)GRKh0I!dg&|WLt`kDwW!S7qI|eMHO@~7{8C2;CSF5QiC}a zjE7M3{DQT36}8ebmfeh%sBr>Sz)n=5sdwmbui1|jZ;qh8f)l6-&!7tWIkb`$bD;&$V$Xw)83xw*{H8d#VsUO5PE0y|4R#TyOAT6ei@oMqr_@6 zhDrZn(I?eGXw_Q?6|s>}dx&TtW)c&L3PQ!IX?xX{5~bdOg1<+!~Ad*3GFI-RO2ZebJ=-Jg3W6hr;%)P>uaP)S2l;te?Ab za*Gr1aZQWUAL~n+7Pp&&m*5cV346X-?d-6fc}2E8uhzbu*D`MH_L%P)j>(wK$)6os z=WcWTWSE@2n6MrB74~#~qb(ip59}LXoMBHERA+T~ksdc0Zu62+cc7;5`;5YqQH)Pn$;f0~L V!4H$MXgK0V!#$qgZ?{i==09o}E}8%U literal 8676 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 KhK2Dz4F3xxq@Sn& diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ca.po b/projects/plugins/wpcomsh/languages/wpcomsh-ca.po index fbf2f54101787..4d96f2701da96 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-ca.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-ca.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Màrqueting" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "No teniu permisos per accedir a aquesta pàgina." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Extensions" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Unes poques paraules enganxoses que motivin els lectors a comentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Esquema de colors" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Text de salutació" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Fosc" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Lleuger" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparent" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Obriu la botiga" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Feu créixer el vostre negoci" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Recapteu l'impost sobre les vendes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Cobreu amb WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Afegiu els productes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Personalitzeu la vostra botiga" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Posta de sol" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Visió general" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "wordpress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Opcions" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Configuració" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Compres" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Correus electrònics" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Dominis" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Plans" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Tots els llocs web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Error: la connexió del Facebook ha caducat." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cancel·la la resposta" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Deixa una resposta a %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Deixa un comentari" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Desa el meu nom, correu electrònic i lloc web en aquest navegador per a la pròxima vegada que comenti." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Subscriu-te" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Introduïu el vostre correu electrònic" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Continua llegint" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opcional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Lloc web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Cancel·la" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Setmanal" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Comentari" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Respon" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Diari" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Surt" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Per començar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Instal·la l'aplicació per a mòbils" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Tria un tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Afegeix una pàgina nova" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Actualitza el pla" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Poseu nom al blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Títol" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Neteja" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Sí" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "No" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Resum del Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Edita" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Màxim percentatge de font:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Mínim percentatge de font:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Excloure:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "Núvol de categories" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Descarta-ho" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografia" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Crea un lloc web gratuït o un blog a Wordpress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "Gràcies a Wordpress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Bloc a WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Desa" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Telèfon" msgid "Email" msgstr "Correu electrònic" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nom" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Color del fons del text:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Color del fons de l'avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Sense Avatars" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(màxim 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Nombre de comentaris que cal mostrar:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Comentaris recents" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "a" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s a %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Graella" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Llista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Mostra com a:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Enllaç del gravatar. Això és una URL opcional que s'usarà quan algú faci clic en el teu gravatar. " -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Mida:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Seleccioneu un usuari o feu clic a \"personalitzat\" i entreu una adreça de correu electrònic personalitzada." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centre" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Dreta" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Esquerra" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Cap" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Petit (64 pixels)" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Mida de l'avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Mostra tots els autors (incloent-hi els que no han escrit cap entrada)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Títol" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ckb.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ckb.mo index a260cba23e94022d2eed9db7a256a78b9f9b278e..d367582641cd318ce3f191a36aeef5b7a9f9540e 100644 GIT binary patch delta 1849 zcmZA1eN5F=9LMp4JbAfbJc>fV4KYI`D#D~R6|SWY&0@NRt#ySfU4?rIu34G8)(lxt zR!4fEKXPmNKy4<>{$OSgZmuo=%C+vpW?QTIN392ot^TO>{=i{to$>v>e&_st=bYd9 zo^$!4`S{Y<)xwNXL)k#wNciU&6TqGfE|gz0jmgE|unPad7Oc!NW&sA!gMFBd&!D>`7^`L*HGiVgo^DWNDAFvRAcI{~lqJG(^ z=ee$4;w-~j+N)fB6J{~L*~*Ou-agY{%ue^hE@!uE??L{|fNMX1In)m!Ni)N){bl5v zjKy*sLyi9t-hk&_{W4}Szxj$ArQ{pT!|&Y-*Kr;7KT#cW`r^ z_6jN!W3K)Vc2Pf#>c4=O^jMd%(HGaa2X)AtrpdLhLG7gYDRALY{@L^Yf z3Gbu+0qRWrj#^PVm7Q3I&G;nh!#_l2>T}dMS8--*-1Ari8=@E2qf+0FuVOdq!~Vjh zn8i!A!-7s(9R(u!V#OtU`50hSw%1mE~ndMyPN(nbgk0w|< z*XY!$^bbl!6DiI0s<@&PzlvB%EFpA$v_-cQDq746Lgz^fnl0?VzFw(WP1F&$5VsNk zFY9Tj{ZFHQ0ov0hqLEPcmJwRzU4-^s#ZPDpl)W{Cela?vD(RY3`&>oT5GpN%POr+{ zgbvtTVY`iw(4HIn#QdUKC3_vwO6UaLN|5WBAL<>bJL#J>`Xw-cY#P*B*(4jX$_Mu&*a-`*P~-$2ryM{h=;f>)l+@7U=H|nzq2x zk$q9q7TnDxG{7a&?F)tNwAWvVi}Ei*oz8cf=b;`bXTQiJiczT_FY55>>YOSj2$ z@sr7OsnPf;ng`=&QX{Dmlbjtaal!swQe#^e9`la#^f2*UYS7k~R@;u!qjq9Zr)^j~ THCa&RPqUAfFPZ$L+>`b%aR&fr literal 7368 zcmaKvdyE}b9mfw)M5{cCJOl*}MM?|Z?e+y_Yk{(Tt!y837s^Xu_TK64(7AUmGxxS# z3<-~RX>ij>bcKkCq{Kcp*rv4ogFtGCl3=S@)Z-UAh%--Gh^ulf9+pw4{)V!Antpq>ey2Wou=sPmVA zUj?rK<;TrA-VRFN9iZgj3CgZ}^Ytjl1eCl6$e($PAI0eza4k3rO3nx1ZQ!3l7cVwR z-a=5%yFl65ozMHgdCczv<=3;I?EQW|e-V`4pXBo~u+01@D0!DbDxJFu)O-%8^Yilc z8$m*2ZUg0CPyW0wpWhGad4`wa?Q!r@a995P zCGdLYZ-dJ3hoG|yXC(I;@CL90)cFTM{>%VBvg0vO=e`5#+&<8PuY)te--1_w|IP6V zHr>R0DTpeQfwFTaD8By`TnzpKR9$@x%I}LPYQ<#{Xu+kR>ihwIbna0Q6=oNxc)kcq z{s$nTHva&-!D$!!^>yGJ<`09a?`J{T`7(G7_$H{l{sGkazk%Z8C!p*)2c=rS8kF7+ zP|v$S+1UeL4fcXi%{21$r$NQ_S@0I{dC-FIf{O3IK*>FmBwY#4$gu;|^Yx(g+?TJH zz*Wqj0#zr!1m6Z*Afn73oVy=<4V2v%^K&ye4^(_2Q2F~dD7nvrir-71^7|)Ha{di! z{{@gsI1?l_W)b)txCWG84WGJjX1zr8sGnZL--8C5_ZSXk=m8)`Nkp-7GJcZD6b6Hd_k@LO0bU zYxHMf-Oe6J!*I)7TN+BEIF3qlZ8_W;RD*#ajpo{|QCP1Al`sqEOsghs{)`jhRMpa? z+$hyEtwi-GsRps_>g_el zkm(Am^)NMEgFzKjJ=pqSSkWX&vJg-5X%fd_scy3%4l_L6Zn}~ky9Cn&jQLHWfL$(yu!+|6nGOLm*v0F_R zYC%-C+oJlQ-IOF7f+5-KpJeqQt%qf^nl#nrQeU{e&MeYWvdydPZ)8zb+SY_YnN8e8 z<Scx|(KSj)`1gug0FNm>bFv#wF;C$6wR*9sdFn++!0I?ei; zC#6}xHB901HnU++M>oWcfvB39jbVvE+ngYpi-a4UalN==^kY2@Ge7AK>q(v)H0X4t84R^>`Ps)V+?FuC2yE}P!aaXPS+FD|9F z7L~TxnI%WunNB+P@`w<-HLtfI8)7D{!++I38XBTfuZxFj()LC57|)1ZY$J`(}#*KwIAJO{A^FENoA(~ z?|RcVdW)0Z9~OK=1*9#pYcNE$SFb{rfJikxNSDhRwOW!AuT#X82f}*0l)#O?K`2mF zF?!eBFBT*srfL=Ryibpm_PdR)6H^_j#RS}aw2{< zI1<`MElyk+x10VUvtfPP#&BySO>HYMxzjG_Sg@$AgTJEnKhVeq=GZ>Yw>I?S6#V~eUwZD}w_N#L@(`c}0qIk8WX+8m~B zE32hMoutz)>5uBuDVQ{f+g4F>S*NYm+%#LZV5#-D%c}P3Wp@73>G!m)4y$1r&|5q0 z>Nu&ppw3&+zNo#UEr@G_!So(_djmFg+AWQTy6>F6Ax$2klecx3PuM=0j&_RLwz-#y zT@%JceY%<5e05^DdAK>&JUlVd8g?(i*71qq){cqY;|DA-YERk1-hJbTw7!30bo@Yb zU-NM58GgrFyIQ;aN^7_|)^3n9IzBovIx(Wvi4ofxX2WjD8)5$;1h716f;8xlN=D)& zYGSmt^MshwcJsQk$SQ6+uDh3#|p(Vt~G30!-yP4;}IO)*V@H`HaCw*pWiX% zn0ueLjzUs@F)}{tl#dw% z4igaqJ>`~TWXF@_a~K21 zP(@(1^@tOrP{=Q-^Unx3(Ugx`k%#0SwQgz(N#lozEZJ&~+3^GN!5Mi_yA&dqNHIe^ z!o22wg6w^F&>S;;$!Gd7pGhR4|E#z>oh4FYd!6yvW9vVWV+PYBG0za zf9i&&;<4Wuoo^AhB|{qb5{n%O6ZeM|Wij^uJ@px7;|Z(xl1$i&&&L!~uZmDL4~`!z z%#u&e_QT%sPV|VT;)fE%K6!q8Vz+#vl*olEK|?MnPRu-x&aug)Id-z_q6J0vlN>iy zwUV3NN-(l!Px%0v2n?oGST7#6UJrBh{I0%632J-fx!o2c{fo{@D0_ zWlz{=a2V2^FiCRA8pL(=pVyf4+~>%p)aAuH?H>^`610Kq=u;3$yQ7PiX!5L_+Thfz zPc%Tc1%93O9`)xPe-#Qg3@d83sUEu1qGY$a5ZXswJAj7GS6oWO1FV?*K;Z469b-D+ zJC4p5FXRzxPjdtV$qGc2Z;}arTs4z$eWU1A1T!YT?0KvL;XUg65Z1}g6Mb5TntDIw zCDpDf*-fkuy4Q{8szR@1O?G?l2U8V{p!oD43grMP_ zD$cz)G0jyY=^{)7lCbJq1)uoHq9w{E#W0V3{*{GGMMU-SrEo!cVo&tAH_d~3m#9z> zzfVf|r`}F&(|36BINlu2SEf*ojL`p&Dd^5iNKD0@dQRNRs}c**pm&lwxcK6%LAg}8 zR}?nfs}4 zx%|a<+%2M$jmpa*+*Q1eUgh6EcM`E$Y8d%p^?NAO)Yv4#y9@44S0gu^TfX zNYP?W;f`yOPF(9Lw~xpq<5Ihq+_Kz0!N!iM0n)8 r>^olTV^VdwpT-CsNe9oZ67K3uPU~}sywVVM_yF!`>ZR*qIc)w1U2T98 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ckb.po b/projects/plugins/wpcomsh/languages/wpcomsh-ckb.po index f39051438c600..b4be5a71de9d2 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-ckb.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-ckb.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "بازاڕدۆزی" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "ببورە، تۆ دەسەڵاتت نیە ئەم پەڕە ببینیت." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "پێوه‌كراوه‌كان" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "بۆکسی ڕەنگەکان" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "نوسینی بەخێرهاتن" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "تاریک" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "ڕۆشنایی" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "ئاوی" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "فرۆشگاکەت بڵاوبکەرەوە" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "کارەکەت گەورە بکە" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "کۆکردنەوەی باجی فرۆشتن" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "پارە وەربگرە لە ڕێگەی (WooPayments)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "بەرهەمەکانت زیاد بکە" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "فرۆشگاکەت کڕیارخوازبکە" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "خۆرئاوابوون" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "گشتیی" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "ڕێكخستنه‌كان" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "پۆستی ئەلکترۆنی" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "هەموو ماڵپەڕەکان" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "هەڵوەشاندنەوەی وەڵام" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "وەڵامێک بنووسە بۆ %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "لێدوانێک بنووسە" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "پاشەکەوتی ناوەکەم ، پۆستی ئەلیکترۆنی ، وە ماڵپەڕەکەم بکە لە نێو ئەم وێبگەڕە بۆ جاری داهاتوو کە تێبینیم نووسی " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "بەشداربە" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "ناونیشانی ئیمەیڵەکەت داخڵ بکە" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "ئارەزوومەندانەیە" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "ماڵپه‌ڕ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "پاشگەزبوونەوە" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "وۆردپرێس" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "لێدوان" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "وەڵام" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "دەرچوون" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "سەرنجێک بنوسە..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "هەنگاوی یەکەم" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "دامەزراندنی بەرنامەی بەکاربەریی مۆبایل" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "بژاردەکردنی ڕووکارێک" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "پەڕەیەکی نوێ زیاد بکە" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "چوارچێوە (بڵاوترینە)" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "سه‌ردێڕ" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "به‌ڵێ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "نه‌خێر" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "ده‌ستكاری" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "وەدەرنان:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "وازهێنان" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "پاشه‌كه‌وتكردن" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "تەلەفۆن" msgid "Email" msgstr "پۆستی ئەلکترۆنی" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "ناو" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(زۆرترین 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "ژماره‌ی لێدوانه‌کان بۆ پیشاندان:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "دوا لێدوانه‌کان" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "تۆڕ" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "لیست" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "نیشانی بدە وەک:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "بەکارهێنەرێک یان \"custom\" هەڵبژێرە و ئیمەیڵێک بنووسە." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "ناوه‌ڕاست" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "ڕاست" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "چه‌پ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "هیچ" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "سه‌ردێڕ:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-cs_CZ.mo b/projects/plugins/wpcomsh/languages/wpcomsh-cs_CZ.mo index 9a5c188e3df51a5bec488460b8e69c62c1c3f59c..c87f1605eaf67fadbda80c8bbe8ef2be0c2af765 100644 GIT binary patch delta 3935 zcmYk-3vg7`9mnw#o<)p6LLLwx7eYcpLI|K$A!2}lAYejxD^0pdmSo9h?~>gl1c8+n zM3MIaQJJvvzadju4}WYyFJ*Eq*+R4@!2bF?Zq!%)$c9#hEx2YcU=7<7|8d z@4~N8U0g@HG$~vhj012Wrr|JS5@sZoY%Y|b9+>N_LOr+|Gq4u>VjTH18~D(KcHjW~ ziSq<%!rk~id>2Pz4{8EmVgY`QrHpTe4Kb#O3l*pv)}aRMK+SX)rr|-<1YgCW_$Kma z-shtde}j5Hi!XIO&p8dXkU6O5=R0e#KjWJU<*3X&>aI6oLMsou3(ulbc?9X(97Cn}3~J^dp(b(} zHL+gQim#%c`!{L=DSRmhpso)_^_PZPSRV3c%G1cdQe5S}Sc#fp6m@+ws-x|A2kyi^ zc*wP%LmkHBsQY?Q1Ac&-*r%vW^&)@fFMQb*R*@ zN3A5`+~=+zMNRN$s0F->TIsJ)Z`B`A6S?8OPaW*(09Q~8`UW+jf4cS!XJ1aXo*#shF_A+>D_@A(<66{&nq9jUGii5X z6!%~wev2BYkuPW9I@I$gP|v@C`u;7{mYhXR=zUy*pCI=qOfDx(dtHQD!4%XCXQ48& z6xBh%U2jIRXf~oIz6bTYa1;ah3eLrWV`AXivLGBnLi^ zEwq1)RanlihdSDYTG7j>0Z*b<{5tA&dmA;e3#bKMMiyzla9%?#Y%nKK&yB`@djBU- zA)BTI)$wdpCg!1sD^L$~qB`D+n())E{Q{1meGHYc3z(0e;)D1vEXI2{i8?a@*$j(SVy#d$$dBS`VO7eF(?lG1Sa2qPFZ3>ahI|wbH+$R{kw2 z6GQn>=BAQS(OrKVbr?TFb=Zrg_$SnTY0S>U5>$IJ zDw9p9``0_WQ2lR3jkgb3P{JIiQq6@^ScEr_H_}YVOYU_As^b;TC~AP6sI58Z+ApD2 zdJ;9j8#oJlP|x=tpUhycvk>oKd^3fL_M{xQ;Svnv=co?nt1*5 zw@_Pf4)y#cRLW-*B%iB7jk6MY5lk2}7~kxqqP>0zweoJ%;rJzLC0}4){5!VdHGBl? zCnW#5yor5iUqYRY&s_TorqF(#Xd+ZenNw{YRQj9uD%C?q&@#uB`g%0Re2SP(gxs}fafz#M#M!QXn+huJ#7uV~Rnu5Xei2!ynEMhZbC{G zP=so0ARh7~W{%$)iZppkeLrITj4WH1vD;qHm~S7-thFCxmf2ZZC++pDF*Yyzq`jIw zp`goekDEoowS0tPeE3atXBG$ATD(Ba3vP%qR48t{M}!6iH^jYIJjgWe8#&(|9yxPx zb+aD{8b0Ixft>p6mS9(>-_{s2)qZ0`AjaM8_3=ey^zM@=vuIO|7&cs4{ZDRU>N-nvjy+xcYHDR5eDP>c zx7X6UQ7;zuI|5!bx%_tJ zArfeehGO=^Nj0{lbcXdyM+~hAZVa|{1R8>-($^gAYo$|c+2rMR-{j+VQCZ^5pUcYn k*s;?(GnYr3+5(Mq8TTRqZ+3eu6d@V*AJc~0QFs6Cf176J$^ZZW literal 13579 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 P@j0jeiE?=Zk^27tnH~)? diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-cs_CZ.po b/projects/plugins/wpcomsh/languages/wpcomsh-cs_CZ.po index 0c8d8d3f33e0c..1ec8d8b4ea4b5 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-cs_CZ.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-cs_CZ.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Nemáte dostatečné oprávnění pro přístup na tuto stránku." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Pluginy" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Několik lákavých slov, abyste motivovali své čtenáře napsat komentář" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Upravte si svůj formulář Komentářů chytrým pozdravem a barevným motivem." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Barevné schéma" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Text pozdravu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Tmavé" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Světlá" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Průhledná" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Přidat doménu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Západ slunce" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Prachový sníh" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Stmívání" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Kontrast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Klasický tmavý" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Klasický světlý" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Klasická modrá" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Vodní" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Přehled" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Nastavení" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Nákupy" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-maily" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domény" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Tarify" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Všechny weby" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Zrušit odpověď na komentář" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Zanechat odpověď na %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Napsat komentář" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Uložit do prohlížeče jméno, email a webovou stránku pro budoucí komentáře." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "předplatit" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Vložte vaši emailovou adresu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Pokračovat ve čtení" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Volitelný" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Webová stránka" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Zrušit" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Informovat o komentářích e-mailem" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Zaslat email o nových příspěvcích" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Oznámit nové příspěvky" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Týdně" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "komentář" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Odpovědět" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Denně" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Stále" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Adresa nebude zveřejněna)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Odhlásit se" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Napište komentář..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Začít" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Prvotní nastavení webu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Nainstalovat mobilní aplikaci" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Vybrat šablonu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Vytvořit novou stránku" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Řiďte provoz na vašem webu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Náhled" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Plán aktualizace" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Pojmenujte Svůj Blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Spusťte váš web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Přidat odkaz" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Vyberte si tarif" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Název" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ano" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ne" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Toto je adresa URL, kterou odešlete do služby iTunes nebo do služby pro podcasty." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Váš kanál podcastů: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Podcast kategorie 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Podcast kategorie 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Podcast kategorie 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Klíčová slova podcastu" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Fotka podcastu" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Označit jako explicitní" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Copyright podcastu" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Podnadpis podcastu" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Název podcastu" @@ -1300,8 +632,6 @@ msgid "Edit" msgstr "Upravit" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Moje domácí stránka" @@ -1429,31 +759,31 @@ msgstr "Kvóta diskového úložiště " msgid "Disk space used" msgstr "Prostoru úložiště využito" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Klikněte pro více infomrací" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Maximální velikost písma (v procentech):" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Minimální velikost písma (v pocentech):" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Vynechat:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1471,24 +801,14 @@ msgstr "" msgid "Category Cloud" msgstr "Mrak kategorií" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Aktualizovat viditelnost" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Spustit web" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Zavřít" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "V součanosti využíváte %1$s z vašeho %2$s limitu uložiště (%3$s%%)." @@ -1625,47 +945,47 @@ msgstr "" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografie" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Fotka" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1682,19 +1002,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Vytvořte si zdarma webové stránky nebo blog na WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Vytvořte web zdarma na WordPress.com" @@ -1704,8 +1019,8 @@ msgstr "Poháněno WordPress.com." #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog na WordPress.com" @@ -1782,10 +1097,6 @@ msgstr "Uložit" msgid "Activate & Save" msgstr "Aktivovat & Uložit" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Spravovat nastavení viditelnosti webu" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1899,8 +1210,7 @@ msgstr "Telefon" msgid "Email" msgstr "Emailová adresa" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Jméno" @@ -1914,27 +1224,27 @@ msgstr "" msgid "Reservations" msgstr "Rezervace" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Barva pozadí textu:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Barva pozadí avatara:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Bez avatarů" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(maximálně 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Počet zobrazených komentářů:" @@ -1956,37 +1266,37 @@ msgid "Recent Comments" msgstr "Nejnovější komentáře" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "on" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Dlaždice (mřížka)" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Seznam" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Zobraz jako:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2020,62 +1330,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Text zobrazený za Gravatarem. Tento údaj je nepovinný a můžete jej použít k popisu sebe sama nebo toho, o čem je váš blog." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Zarovnání Gravataru:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Velikost:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Vlastní e-mailová adresa:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Vyberte uživatele nebo vyberte \"vlastní\" a zadejte vlastní e-mailovou adresu." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Na střed" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Doprava" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Doleva" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Žádný" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra velké (256 pixelů)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Velké (128 pixelů)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Střední (96 pixelů)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Malé (64 pixelů)" @@ -2092,7 +1402,7 @@ msgstr "Gavatar" msgid "Insert a Gravatar image" msgstr "Vložte obrázek Gravatara" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2104,28 +1414,28 @@ msgstr "Čerstvě vydáno" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Velikost avatara (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Zobrazit všechny autory (včetně těch, kteří nenapsali žádný příspěvek)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Název:" @@ -2141,12 +1451,12 @@ msgstr "Zobrazí mřížku s autorovým avatarem." msgid "Author Grid" msgstr "Autorská mřížka" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-cv.mo b/projects/plugins/wpcomsh/languages/wpcomsh-cv.mo index 92a143a1f32d2fcf3ebfa79838e4d3aae3e34b5f..822fbd6b4580ef6a84166608dfa1ebae6879c49c 100644 GIT binary patch delta 6157 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 delta 9519 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 sgG!1s_qlr%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Маркетинг" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Извините, вам не разрешено просматривать эту страницу." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Плагинсем" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Темă Витрини" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Тĕс схеми" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Тĕксĕм" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Çутă" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Витĕр курăнакан" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Домен хушас" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Хĕвел анни" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Обзор" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Настройкăсем" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Укҫаллас" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Сутăн илнисем" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Email-сем" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Доменсем" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Тарифсем" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Пур Сайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Ответа пăрахăçлас" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Комментари çырас" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Çырăнăр" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Введите свой адрес электронной почты" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Читать далее" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Унсăр та юрать" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Веб Сайчĕ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Тăвас мар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Мана çĕнĕ комментарисене Email урлă ямалла" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Мана çĕнĕ публикацисене Email урлă ямалла" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Çĕнĕ публикацисем çинчен пĕлтермелле" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Эрнесерен" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Комментари çырас" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Ответлес" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Кунсерен" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Самантрах" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Адреса нихăçан публикациленмест)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Çырăнса тухас" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Пуçлас" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Сайт настройкисем" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Публикацисемпе пайлашассине ĕçлеттерĕр" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Пĕр темă суйлас" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Сайта килекенсен трафикне ÿстерĕр" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Парне" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Миниатюра" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Тариф Аслăлатас" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Домен суйлас" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Блогăра ят хурăр" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Хăвăрăн сайта хута ярăр" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Çырма пуçлас" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Пĕр тариф суйлас" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "Spotify Канад ID-йĕ" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "Apple Подкастs Канал ID-йĕ" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Титулĕ" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Подкаст RSS Каналĕ" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Spotify-ра итлес" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Apple Подкастs-ра итлес" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "Подкаст" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "iTunes категорине суйлас:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Таса" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Çапла" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Çук" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Подкаст категорийĕ 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Подкаст категорийĕ 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Подкаст категорийĕ 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Подкаст căнÿкерчĕкĕ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Подкаст çинчен кĕскен" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Подкаст заголовокĕ" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Редакцилес" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Манăн Кил" @@ -1428,31 +758,31 @@ msgstr "Уйăрса панă диск уçлăхĕ" msgid "Disk space used" msgstr "Усă курнă диск уçлăхĕ" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Нажмите для получения дополнительной информации" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Считать число элементов в родительской рубрике с учетом дочерних рубрик." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Максимум шрифт проценчĕ:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Минимум шрифт проценчĕ:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Идентификаторы рубрик, разделённые запятыми" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Исключить:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Максимальное количество отображаемых рубрик:" @@ -1470,24 +800,14 @@ msgstr "Ваши наиболее часто используемые рубри msgid "Category Cloud" msgstr "Категори Пĕлĕчĕ" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack çыхăнăвне татнă, сайчĕ те вăрттăн. Jetpack-а çĕнĕрен çыхăнтарăр та сайт курăнаслăхне настройкисене майлас." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Курăнаслăхне çĕнетес" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Сайта хута ярас" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Сирсе ярас" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Хальлĕхе out -ăн> %2$s загрузка лимитĕнчен (%3$s%%) %1$s проценчĕпе кăна усă куратăр." @@ -1624,47 +944,47 @@ msgstr "Instagram-ри хăвăрăн юлашки фотосене курăнт msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Биография" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Заголовок" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Фото" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Ячĕ Ан Курăнтăр" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Пĕчĕккĕн курăнтăр" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Вăтаммăн курăнтăр" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Пысăккăн Курăнтăр" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Экстра-Пысăккăн Курăнтăр" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Сирĕн about.me URL-ĕ" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Виджет заголовокĕ" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "about.me виджет Утă 1, 2016 хыççăн текех çук пулĕ. ку числа хыççăн, ку виджет сирĕн about.me профилĕ патне пĕр ансат текст каçă курăнтарĕ. Тархасшăн ку виджета кăларса пăрахăр." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Хăвăрăн about.me профильне чĕрнешкепе курăнтарас" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Ыйтнă даннăйсене кÿме пулмарĕ." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "WordPress.com-ра тÿлевсĕр вебсайт е блог туса хурăр" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "WordPress.com-ра тÿлевсĕр вебсайт туса хурăр" @@ -1703,8 +1018,8 @@ msgstr "WordPress.com хăвачĕпе" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "WordPress.com-ра Блог" @@ -1781,10 +1096,6 @@ msgstr "Упрас" msgid "Activate & Save" msgstr "Активацилес & Упрас" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Сайтăн курăнаслăх настройкисене майлас" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "Ку плагина WordPress.com вырнаçтарнă, вăл эсир çырăннă тарифпа килĕшÿллĕ функцисемпе тивĕçтерсе тăрать." @@ -1898,8 +1209,7 @@ msgstr "Телефон" msgid "Email" msgstr "Email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Ячĕ" @@ -1913,27 +1223,27 @@ msgstr "Запрос бронирования" msgid "Reservations" msgstr "Бронируйте столики" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Показать комментарии:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Текст фон тĕсĕ:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Аватар фон тĕсĕ:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Пĕр аватар та çук" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(нумайран 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Миçе комментари кăтартас:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Хальтерехри комментарисем" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "В последнее время вам не понравилась ни одна запись. Как только вы поставите записи отметку «Нравится», она появится в виджете Понравившиеся записи." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "çине" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%2$s блогри %1$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Понравившиеся автору записи:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Сетка" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Список" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Çакăн пек курăнтарас:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Кăтартас публикацисем (1 - 15):" @@ -2019,62 +1329,62 @@ msgstr "Сасăларăм" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Вулакансене сасăлани çинчен \"Сасăларăм\" стикер лартса пĕлтерĕр." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Текст, отображаемый после Gravatar. Это поле не является обязательным. Вы можете использовать его, чтобы рассказать пару слов о себе или вашем блоге." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Ссылка Gravatar. Это дополнительный URL-адрес, который будет использоваться, когда кто-либо нажимает ваш Gravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Выравнивание Gravatar:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Пысăкăш:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Хăйевĕрлетнĕ Email Адресĕ:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Выберите пользователя либо выберите \"другое\" и введите адрес электронной почты." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Варă" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Сылтăм" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Сулахай" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Çуккă" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Экстра Пысăккă (256 Пиксель)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Пысăккă (128 Пиксель)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Вăтам (96 Пиксель)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Пĕчĕккĕ (64 Пиксель)" @@ -2091,7 +1401,7 @@ msgstr "Граватар" msgid "Insert a Gravatar image" msgstr "Gravatar căнÿкерчĕкĕ Чикес" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Выберите изображение, которое будет показано в боковой панели:" @@ -2103,28 +1413,28 @@ msgstr "Свежăй Публикацисем" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Отображать значок «Свежая пресса» на боковой панели" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Аватар пысăкăшĕ (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Отобразить всех авторов (включая тех, кто не создал ни одной записи)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Ячĕ:" @@ -2140,12 +1450,12 @@ msgstr "Показывать список авторов в виде сетки msgid "Author Grid" msgstr "Список авторов в виде сетки" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Вăрттăн Сайт" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Ку сайт вăл вăрттăн." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-cy.mo b/projects/plugins/wpcomsh/languages/wpcomsh-cy.mo index 8d4bfad223ddf19ef8f966eacfb784736310e044..fae04c763eb98fca9c7db740e3a3a0d7988fd6b4 100644 GIT binary patch delta 2605 zcmYk;X>6259LMo#DOZne%OO3$u7IVKqY4yk3zW87N;%3=C})wiyWQQ=?kZiV)#%1R zP}C@KLVTn0#$d#xNNO+&QKAtcVp0-f#5)o&N-&ZtYC??P-|m<=+5dc=ndfxQru))J04txzdIl% z1N5Lej-xt!($yb8wfCH)e{-0Fd_3YVcmwrB1G)fDA!9SAF&)pj@&$MPGOEKXs0aB0 zi*Xp$aW2y*C!%Jum`qDjh6z1sojb7}b>U7_#{pL#!5qr_-1!5zjPkRnfq#Z-=UaFF zCThULuKbTPgGMT-&qU2kbq@2dj(o178SkRpio3B31Na4MU^VPC-B^dZZxyP39cl*J za6Pu8X7B`RfbZfoynxT(P1N=Ka+!Z^z9$&IAD=>v@G3Uq_`KAVZ$+xi4%7gi99#01u*O=J{kj>wlO7t<5W_U3=7Ba2(a~0BVL# z;S@ZNy6!q^0Jl&xaT~QHBk5JwPeEN*foi`Rb^Q`|z8N*<*$ZA7I8qKt^xlbPcayExMPDQzb-HxCfA3GIv!q0~WW zr|HGk4*7rD;tJZ*?Zi}9)`BTbBi0iei8VwGp+zT6O@6}I49V@LuZhxqLPUcE@dz zXNGO|c*zJwf|=?xw7D;aD_i$m20PJ+I1kO45;YC2t=|5QaGyUK48^+bOOv+Qw1OG=TcciI zEZ}YEk9zB4-W8EOHeS#)YeU!{iuJ|ww03)4ql$TCw;K1WM$gF;rSQc delta 4289 zcmY+FYiu0V6~}Kv2#M`9iS0Zv5H1agW0JT$!XpFKhL2-;E#X-mHZR0%$y{{G$zq*wmW z@7^=_an8AC)*qko%f6|1+h_g2(C$XZquXW~^DO*m4iDO)R%4EX|AcMuXdbIzJ3J9? zfM0{V;as=}ZiKnB|H|24aC{YVg!wZ(#+WJd7dlHZeCQ^adCdtea1r+T@F=(f&W1gZ zspeFugU@&NA;%H-{z}IR#CMZJ4mA5Af93#>1)Oglq@!RTg)8BcuowOj%G24LqJ^!F z9Z-%P2j|1noV^cf{uZcAY;(K<9?f_RDu60fzzLkg`Q`wfc6cAu#GgTJ{BtPJpN4Yq z1*ijFapO1L_#MahU=QyL7EU3vjz)t?06T{y89q!n+IVFd<4#fPrC6zsCmDI+UNQCuT0ZfEl;C=+v`96uK7z*8Z~GaKO&IO6Q%Q2XBm zSvO_wrK61=f)~y(=3&^)_wNSvpGPOYX(1P>~;kTJRB+1D`-0FoR0dfeRcLLw%;lL(N+Sm4P#% z_8o+BXvo<|q2`BhnZExTot5wbI9(i28$Ac*$SY7Odjo3W2T+b3hMNBwoOX=#sF)W( zIk*h!{mD>2?W>`Rcrzr)W(S;-p+ZL+PeL7hBb5Cvs0i+N;~zq8_z;u>kHVAS6K?z( zRB`^v@$XRU|Kr{thC1gnsDNg7k$-J?EEg(T$8IPOd!ZH#K&5aPDze>Bnem_^51{7d zP_?ulYW}TI^X`Fi_OT7{(&3+8*1Kvp$_~UQVwPw zzgpUG1=Rerq1K-V<;bA3Uko*GJ5*77@JhIMijE?G84kcVpgxz(K?s^<*eFMsY{qRh9J5)xVfx6P)JH81u|8G$HPaUG8@AhL@hArgfTDTV~)vrU{ z>06HPIr~RY8y$vK_$icQW6PSE*#lQFz6BQWF{pjcJF&TL6J$JPw$f2Cj6y}Q2TsBS zo)7;Dhu|{XyvuQ@c?q1pb0|mlLpgjWRA%mma_A?H4@15G1=Q6%1!w5{uQ0d}or6k9 z=~COwYgs_Qo#^_g!&S0O%X^G$R!`Yt+vu14R{ z1(fN0(JrFX?*{tZd(m7sUI#Bjd}ySNe|$(yAISowe}-Q}YGht|H$TAxT z`-0R?cz$3fYhzJZ>M^T|_PM({JzmxAq*noBR(~Rha~PMyN-g#BaM~K@VO$GX z@A=Ht>pbW%REnotFI&BRQbBo<*-l>fg+bj6SCcr< zGf&KLrO)y<}IEiKmr->;crFU3zATHp85i1ST9@uXvon23tbj=?268}&vM znMeCvH^zeZO<`^nsurW@K$=iqBEKLdYwVQka%D#Ab-}5ao25La$~>T_sG4PdYcu zn$BYHqH`~|<%SL7I%T+aEXhtX~NBBUYYeI zH0+LT<*N{Ti_)TPUGhvRsx&8kWPvZ1qajsOH%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Nid oes hawl gennych i gael mynediad i'r dudalen hon." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Ategion" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Cynllun Lliw" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Tywyll" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Ysgafn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Machlud Haul" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Cyferbyniad" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Trosolwg" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Gosodiadau" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Ffurfweddu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-byst" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Parthau" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Cynlluniau" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Pob Gwefan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Diddymu Ateb" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Gadael ymateb i %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Gadael sylw" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Cadw fy enw, e-bost a gwefan o fewn y porwr hwn ar gyfer y tro nesaf fyddai'n gadael sylw." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Tanysgrifio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Rhowch eich cyfeiriad e-bost" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Parhau i ddarllen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Dewisol" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Gwefan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Diddymu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Sylw" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Ateb" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Nid yw'r cyfeiriad yn cael ei ryddhau)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Allgofnodi" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Ysgrifennu Sylw..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Cychwyn arni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Ychwanegwch dudalen newydd" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Llun bach" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Enwi eich Blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Ychwanegwch ddolenni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Dewiswch gynllun" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "Methu llwytho dosbarth %1$s. Ychwanegwch y pecyn sy'n ei gynnwys gan ddefnyddio cyfansoddwr a gwnewch yn siŵr eich bod angen yr autoloader Jetpack" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Dylid cofrestru arallenwau textdomain cyn y bachyn %1$s. Sbardunwyd yr hysbysiad hwn gan y parth %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "Mae sgript \"%s\" yn dibynnu ar wp-i18n ond nid yw'n nodi \"textdomain\"" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Teitl" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Gwrandewch ar Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Iawn" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Na" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1301,8 +633,6 @@ msgid "Edit" msgstr "Golygu" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1430,31 +760,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Eithrio:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1472,24 +802,14 @@ msgstr "" msgid "Category Cloud" msgstr "Cwmwl Categori" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Cau" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Ar hyn o bryd rydych yn defnyddio %1$s o derfyn llwytho i fyny o%2$s (%3$s%%)." @@ -1626,47 +946,47 @@ msgstr "" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Bywgraffiad" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Llun" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1683,19 +1003,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Methu nôl y data y gofynnwyd amdano." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Crëwch wefan am ddim ar WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Crëwch wefan ar WordPress.com" @@ -1705,8 +1020,8 @@ msgstr "Pŵer gan WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blogio ar WordPress.com" @@ -1783,10 +1098,6 @@ msgstr "Cadw" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1900,8 +1211,7 @@ msgstr "Ffôn" msgid "Email" msgstr "ebost" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Enw" @@ -1915,27 +1225,27 @@ msgstr "" msgid "Reservations" msgstr "Dynodiadau" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Lliw cefndir y testun:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Lliw cefndir yr afatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Dim Afatar" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 ar y mwyaf)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Nifer o gofnodion i'w dangos:" @@ -1957,37 +1267,37 @@ msgid "Recent Comments" msgstr "Sylwadau Diweddar" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "ar" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s ar %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Grid" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Rhestr" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2021,62 +1331,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Maint:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Canol" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "De" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Chwith" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Dim" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2093,7 +1403,7 @@ msgstr "Grafatar" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2105,28 +1415,28 @@ msgstr "Newydd Sbon" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Teitl:" @@ -2142,12 +1452,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-da_DK.mo b/projects/plugins/wpcomsh/languages/wpcomsh-da_DK.mo index c7d8acb8c869249eb8f109a93a45303e2e3778ee..4b41d9685813bc2293024280283e46d0cdf6e375 100644 GIT binary patch delta 2153 zcmYk-eN5F=9LMp4kqB&^gP2pjv8I|&o09K&} zZbx!5-KYfmU3&oUr#*(6(CJLpUo$yFhX%fkx?v9Wp!ZP^`UthOpW1|?95npq9%{(98)dr|kdx^_EibH;nA=)zIdjWJXrCs8Xhg-q5=qaHAWy8aD( z0575j_zZRb0`fCob5LSSsOS8G@BUxp`nbtuy^hjRgasHyJ?LfRXI|x?gl16* zTtfW;ddKzuin@LkHK3lZnWf_xmZQ#}MQzS=s0mz1$os!SMFYQ!iJ73@)dG^F`QG)f zpf=wftie@0h}(Hz>i1DIJ&Eki#5I-p2%(~DRSpyT5;azq@y(O2@i4Z#x@OQsJVj`> zTL>l7NvJ5%9fW3bx9p-)O=z_mU1uAzFs6ghq*S_yDq<_4@y&z8<3tOwjZoQ>B(WJ) zEp_d?JVZtBQ>B5>3h3{AJ)u&OB=NQErrt{E)6@SMl>kw$@%2vj68cN0a)_uSo*=dp z#f1JbX|t(li8m)|#@vT`w<@(sOfTw-(bv#S=+*8d5_k zPw4}j+6F_u(IIdm$Zg45bez7iU?^Qkxy7zzHkEac zL?fQz=toVj_Z%4n7;6m2?L^i#yPVZ(_hcWlSF(S;x|m~A>??USIpLrmikP<1aX%Ie zwDk4a+j%{v9}5u?f$}n!e_h) zcYBGPI3|)Bw0{;>+UlZ?vLjyD8;VBE0j1UXq8AuV<`j&1_IgphZ7lA$my0K_?k?Go JVy8=|{sYt}_)P!+ literal 6666 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-da_DK.po b/projects/plugins/wpcomsh/languages/wpcomsh-da_DK.po index 072c64c11daf7..809925b752c29 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-da_DK.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-da_DK.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Du har desværre ikke tilladelse til at få adgang til denne side." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugins" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Farveskema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Mørk" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Lyst" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Bliv betalt med WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Solnedgang" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Oversigt" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Indstillinger" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Køb" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-mails" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domæner" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Alle websteder" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Fejl: Dit Facebook login er udløbet." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Annuller svar" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Skriv et svar til %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Skriv en kommentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Gem mit navn, mail og websted i denne browser til næste gang jeg kommenterer." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Tilmeld" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Skriv din e-mail adresse" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Fortsæt læsning" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Valgfrit" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Hjemmeside" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Annuler" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Kommentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Svar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Daglig" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Adresse vises aldrig offentligt)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Log ud" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Skriv en kommentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Kom igang" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Vælg et tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Tilføj en ny side" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniature" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Opgrader plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Navngiv din blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titel:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ja" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nej" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Rediger" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Maksimum skriftsprocent:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Udeluk:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Afvis" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Skab en gratis hjemmeside eller blog på WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog på WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Gem" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Telefon" msgid "Email" msgstr "E-mail" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Name" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Tekstens baggrundsfarve:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Ingen avatare" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(højst 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Antal kommentarer der skal vises:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Nye kommentarer" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "på" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Gitter" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Liste" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Vis som:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Størrelse:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Vælg en bruger eller vælg \"brugerdefineret\" og skriv en brugerdefineret e-mail adresse" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Center" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Højre" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Venstre" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Ingen" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "Udgivet for nyligt" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Avatar størrelse (i pixels):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Vis alle forfattere (inklusiv dem, der ingen indlæg har skrevet)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titel:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-de_DE.mo b/projects/plugins/wpcomsh/languages/wpcomsh-de_DE.mo index fa1e809f8abe92924b64a4242880129c61acda51..30bd5fe3afda31c0a48d57b850ceb4384075daff 100644 GIT binary patch delta 8670 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 O+Z%Bap>Zd-y8a6sx+1** literal 52207 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 UB=tzLk@_(wc5}zb4wU}?0R9ZK_y7O^ diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-de_DE.po b/projects/plugins/wpcomsh/languages/wpcomsh-de_DE.po index ea5b4e8ef96e1..6d3749a21b665 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-de_DE.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-de_DE.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "%1$s zu %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Du kannst deinen Gravatar auf deiner Profilseite bearbeiten." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Du bist leider nicht berechtigt, auf diese Seite zuzugreifen." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugins" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Verwende das alte Dashboard von WordPress.com, um deine Website zu verwalten." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Standardstil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Verwende WP-Admin, um deine Website zu verwalten." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Klassischer Stil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Stil der Admin-Benutzeroberfläche" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Plugins entdecken" @@ -72,424 +42,10 @@ msgstr "Erhalte Zugriff auf eine Vielzahl kostenloser und kostenpflichtiger Plug msgid "Flex your site's features with plugins" msgstr "Die Funktionen deiner Website mit Plugins optimieren" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Theme-Übersicht" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Themes entdecken" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Tauche ein in die Welt der WordPress.com-Themes. Entdecke responsive und atemberaubende Designs, die darauf warten, deine Website zum Leben zu erwecken." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Finde das perfekte Theme für deine Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Kurz und bündig deine Leser zum Kommentieren animieren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Blöcke in Kommentaren aktivieren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Benutzern erlauben, WordPress.com- oder Facebook-Konten zum Kommentieren zu verwenden" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Richte dein Kommentarformular mit einem Begrüßungstext und Farbschema ein." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Farbschema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Begrüßungstext" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Blöcke zulassen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Dunkel" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Licht" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparent" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Veröffentliche deinen Shop" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Domain hinzufügen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Dein Geschäft ausbauen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Umsatzsteuer erheben" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Mit WooPayments Zahlungen empfangen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Produkte hinzufügen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Deinen Shop anpassen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Sonnenuntergang" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Pulverschnee" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Dämmerung" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Kontrast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Klassisch dunkel" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Klassisch hell" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Klassisch blau" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Aqua" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Überblick" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Teile „%s“ über Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Um auf die Einstellungen für Tarife, Domains, E-Mails usw. zuzugreifen, klicke in der Seitenleiste auf „Hosting“." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Settings" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Geld verdienen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Überwachung" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Konfiguration" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Käufe" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-Mail-Adressen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domains" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Add-Ons" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Tarife" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Hosting" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Alle Websites" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Fehler: Bitte versuche erneut, einen Kommentar zu hinterlassen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Fehler: Dein Facebook-Login ist abgelaufen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Antwort abbrechen" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Hinterlasse eine Antwort zu %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Kommentar hinterlassen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Meinen Namen, E-Mail und Website in diesem Browser speichern, bis ich wieder kommentiere." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Kommentar erfolgreich versandt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Abonnieren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Gib deine E-Mail-Adresse ein" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Hast du Interesse daran, Updates zu Blogbeiträgen zu erhalten? Klicke einfach auf den Button unten, um nichts mehr zu verpassen!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Lass dir nichts entgehen!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Weiterlesen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Jetzt abonnieren, um weiterzulesen und auf das gesamte Archiv zuzugreifen." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "Entdecke mehr von %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Dein Kommentar wird geladen …" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Mit uns bleibst du auf dem Laufenden!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Optional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Schreibe eine Antwort …" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Kündigen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Neue Kommentare per E-Mail zusenden" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Neue Beiträge per E-Mail zusenden" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Bei neuen Beiträgen benachrichtigen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Wöchentlich" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Kommentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Antworten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Täglich" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Sofort" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Adresse wird niemals veröffentlicht)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Abmelden" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Über %s angemeldet" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Melde dich an, um einen Kommentar zu schreiben." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Melde dich an, um eine Antwort zu verfassen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Schreibe einen Kommentar. (Anmelden optional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Antworte uns. (Anmelden optional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Website (optional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "E-Mail (-Adresse wird niemals veröffentlicht)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Erhalte Web- und Mobil-Benachrichtigungen über neue Beiträge auf dieser Website." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Melde dich an oder gib deinen Namen und deine E-Mail-Adresse an, um einen Kommentar zu schreiben." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Melde dich an oder gib deinen Namen und deine E-Mail-Adresse an, um uns zu antworten." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Verfasse einen Kommentar..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Erste Schritte" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "WordPress.com bietet ein geführtes Importprogramm zum Importieren von Beiträgen und Kommentaren aus Medium, Substack, Squarespace, Wix und mehr." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "In den %1$sJetpack-Einstellungen%2$s findest du weitere „Schreiben“-Einstellungen, die von Jetpack bereitgestellt werden." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Geplante Updates" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Verifiziere die E-Mail-Adresse für deine Domains" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Website einrichten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Sensei-Einrichtung abschließen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Schließe die Shop-Einrichtung ab" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Ändere das Design deiner Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Aktiviere das Teilen von Beiträgen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Mobil-App installieren" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "Keine Dateien wiederhergestellt." @@ -563,134 +119,6 @@ msgstr "Es wird bereits ein Import ausgeführt." msgid "The backup import has been cancelled." msgstr "Der Backup-Import wurde abgebrochen." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Nächste Schritte für deine Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Füge den Abonnieren-Block zu deiner Website hinzu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Importiere bestehende Abonnenten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Website-Kennzahlen anzeigen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "SSH einrichten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Installiere ein individuelles Plugin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Wähle ein Theme" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Angebot für Unterstützer einrichten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Stripe-Konto verbinden und Zahlungen empfangen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Deine Seite „Über“ hinzufügen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Verwalte deinen zahlungspflichtigen Newsletter-Tarif" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Deine Social Media-Konten verknüpfen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Deine Abonnenten verwalten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "3 Beiträge verfassen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Sichere dir deine ersten 10 Abonnenten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Abonnement-Modal aktivieren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Passe Willkommensnachrichten an" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Mit deinem Newsletter Geld verdienen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Aktualisiere deine „Über“-Seite" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Inhalte migrieren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "E-Mail-Adresse bestätigen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Verhindert, dass neue Beiträge und Seiten erstellt und bestehende Beiträge und Seiten bearbeitet werden, und schließt Kommentare auf der ganzen Website." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Gesperrten Modus aktivieren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Gesperrter Modus" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Um die Inhaberschaft der Website zu übernehmen, muss die von dir bestimmte Person uns unter %s kontaktieren und eine Kopie der Sterbeurkunde einreichen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Wähle jemanden aus, der sich um deine Website kümmert, wenn du stirbst." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Nachlasskontakt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Verbesserte Inhaberschaft" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "Die Option „Jeder kann sich registrieren“ ist derzeit aktiv. Die aktuelle Standardrolle lautet %1$s. %4$s Bitte erwäge, diese Option zu deaktivieren, wenn keine offene Registrierung benötigt wird." @@ -720,149 +148,37 @@ msgstr "Datei ist nicht vorhanden" msgid "Could not determine importer type." msgstr "Konnte Typ des Importprogramms nicht bestimmen" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Website teilen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Eine Seite bearbeiten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Deine Website enthält Premium-Stile. Führe jetzt ein Upgrade durch, um sie zu veröffentlichen und dir unzählige weitere Funktionen zu sichern." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Personalisiere deine Domain" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Eine neue Seite hinzufügen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Generiere Traffic für deine Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Gib deiner Website einen Namen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Sichere dir deine Domain für ein Jahr kostenlos" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Schenken" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniaturbild" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "„%s“ über Publicize teilen" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Teilen" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Ein Tarif-Upgrade durchführen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Kostenpflichtigen Newsletter erstellen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Zahlungsmethode einrichten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Wähle eine Domain" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Veröffentliche dein Blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Bearbeite das Website-Design" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Richte deine Website ein" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Gib deinem Blog einen Namen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personalisiere deine Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Lade dein erstes Video hoch" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Richte deine Video-Website ein" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Veröffentliche deine Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Links hinzufügen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personalisiere den Bio-Link" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Wähle ein Design" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Jetzt schreiben" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Verfasse deinen ersten Beitrag" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Abonnenten hinzufügen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Wähle einen Tarif" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personalisiere den Newsletter" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "Die Klasse %1$s konnte nicht geladen werden. Bitte füge das entsprechende Paket mit Composer hinzu und vergewissere dich, dass du den Jetpack Autoloader anforderst." #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Textdomain-Aliase sollten vor dem %1$s-Hook registriert werden. Dieser Hinweis wurde durch die %2$s-Domain ausgelöst." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "Skript „%s“ ist abhängig von wp-i18n, legt aber nicht „textdomain“ fest" @@ -1063,27 +379,27 @@ msgstr "Glück gehabt! Deine Theme-Designer haben für dich bestimmte Schriftart msgid "Uncheck to disable" msgstr "Zum Deaktivieren Häkchen entfernen" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "Spotify-Feed-ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "Apple Podcasts-Feed-ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titel:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Podcast-RSS-Feed" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Auf Spotify anhören" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Mit Apple Podcasts hören" @@ -1095,98 +411,114 @@ msgstr "Zeige Informationen über deinen Podcast an und ermögliche es Besuchern msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "iTunes Kategorie auswählen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Stelle die Podcast-Kategorie ein" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Podcast-Schlagwörter festlegen" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Podcast-Bild einstellen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Löschen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ja" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nein" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Podcast als jugendgefährdend einstellen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Stelle das Podcast-Urheberrecht ein" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Podcast-Zusammenfassung einrichten" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Podcast-Autor einsetzen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Podcast-Untertitel festlegen" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Podcast-Titel einstellen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Dies ist die URL, die du an iTunes oder den Podcast-Dienst übermittelst." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Dein Podcast-Feed: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Podcast-Kategorie auswählen:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Blog-Kategorie für Podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Podcast-Kategorie 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Podcast-Kategorie 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Podcast-Kategorie 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Podcast-Schlagwörter" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Podcast-Bild" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Als nicht jugendfrei markieren" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Podcast-Urheberrecht" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Podcast-Zusammenfassung" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Name des Podcast-Talents" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Podcast-Untertitel" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Podcast-Titel" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Bearbeiten" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Meine Startseite" @@ -1428,31 +758,31 @@ msgstr "Speicherplatzkontingent" msgid "Disk space used" msgstr "Belegter Speicherplatz" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Klicke, um weitere Informationen zu erhalten." -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Elemente von Unterkategorien auf Summe des übergeordneten Elements anrechnen." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Maximale Schrift-Skalierung:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Minimale Schriftgröße in Prozent:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Kategorie-IDs. kommagetrennt" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Ausschließen:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Maximale Anzahl anzuzeigender Kategorien:" @@ -1470,24 +800,14 @@ msgstr "Zeige deine am häufigsten benutzten Kategorien als Wolke an." msgid "Category Cloud" msgstr "Kategoriewolke" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack ist getrennt und Website ist privat. Verbinde Jetpack erneut, um die Einstellungen zur Sichtbarkeit der Website zu verwalten." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Sichtbarkeit aktualisieren" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Website veröffentlichen" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Verwerfen" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Du benutzt aktuell %1$s von %2$s deines Speicherkontingents (%3$s %%)." @@ -1624,47 +944,47 @@ msgstr "Zeige deine neuesten Instagram-Fotos an." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografie" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Überschrift" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Namen nicht anzeigen" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Klein anzeigen" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Mittelgroß anzeigen" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Groß anzeigen" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Extragroß anzeigen" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Deine about.me URL" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Widget-Titel" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "Ab dem 1. Juli 2016 ist das Widget about.me nicht mehr verfügbar. Nach diesem Datum zeigt das Widget einen einfachen Textlink zu deinem about.me-Profil an. Entferne dieses Widget bitte." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Zeige Dein about.me-Profil mit Vorschaubild" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Angeforderte Daten können nicht abgerufen werden." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Erstelle eine kostenlose Website oder Blog – auf WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Erstelle kostenlos eine Homepage bei WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Bereitgestellt von WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Bloggen auf WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Speichern" msgid "Activate & Save" msgstr "Aktivieren und speichern" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Verwalte deine Einstellungen zur Sichtbarkeit deiner Website" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "Dieses Plugin wurde von WordPress.com installiert und stellt Features bereit, die in deinem Tarif inkludiert sind." @@ -1898,8 +1209,7 @@ msgstr "Telefon" msgid "Email" msgstr "E-Mail-Adresse" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Name" @@ -1913,27 +1223,27 @@ msgstr "Reservierungsanfrage" msgid "Reservations" msgstr "Reservierungen" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Zeige Kommentare von:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Texthintergrundfarbe:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Avatar-Hintergrundfarbe:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Keine Avatare" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(höchstens 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Anzahl der Kommentare, die angezeigt werden:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Neueste Kommentare" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Dir gefallen noch keine Beiträge. Sobald dir welche gefallen, wird dieses Beiträge, die mir gefallen-Widget sie anzeigen." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr " - " #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s auf %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Anzuzeigende Likes des Autoren:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Gitter" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Liste" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Anzeigen als:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Anzahl der angezeigten Beiträge (1 bis 15):" @@ -2019,62 +1329,62 @@ msgstr "Ich habe gewählt" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Zeige deinen Lesern mit einem \"Ich habe gewählt\" Sticker, dass du gewählt hast." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Text angezeigt nach dem Gravatar. Das ist freiwillig und kann dazu benutzt werden, dich selbst oder worum es in deinem Blog geht zu beschreiben. " -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar-Link. Dies ist eine optionale URL, die benutzt wird, wenn jemand deinen Gravatar anklickt:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar-Ausrichtung:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Größe:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Individuelle E-Mail-Adresse:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Wähle einen Benutzer oder wähle „individuell“ und gib eine individuelle E-Mail-Adresse ein." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Zentriert" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Rechts" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Links" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Keine" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra groß (256 Pixel)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Groß (128 Pixel) " -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Medium (96 Pixel)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Klein (64 Pixel)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Füge ein Gravatar-Bild hinzu." -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Wähle ein Bild, das in deiner Seitenleiste angezeigt werden soll:" @@ -2103,28 +1413,28 @@ msgstr "Druckfrisch" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Zeige einen Freshly Pressed-Badge in deiner Seitenleiste an" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Avatar-Größe (in px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Alle Autoren anzeigen (auch jene, die noch keine Beiträge verfasst haben)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titel:" @@ -2140,12 +1450,12 @@ msgstr "Zeigt ein Raster von Autoren-Avatar-Bildern." msgid "Author Grid" msgstr "Autoren-Gitter" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Private Website" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Diese Website ist privat." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-de_DE_formal.mo b/projects/plugins/wpcomsh/languages/wpcomsh-de_DE_formal.mo index 978dcfb87ec13f48cb083cbffc64c1c7ed71ffcf..537d6fe210031f7f913f4224f7903a393c5e0e15 100644 GIT binary patch delta 8688 zcmZA530#!b`oQsb5L{T?SVTn}L`o1)F%cCJ6i|~*aNm;U1qNXTX9g7)#xR$wso62J zaw#oui;JwVpZT71-tD~4Ip>|h=B;gx zc>O#VyZYawvCXzarG@QXoyohq|9Ii4NXJSX(fm}=5haK=$jKFu%A1`4l zeuwR_pH(6ZXf|($4)gFNFX+igKe@Pdr@xmE=q?k;%xjL<$;PgNcK-Qor7OfukuhhM`0oZ zC>@APFiuEAne8J{o^&S4BwAwbUxPB{>&^PJ*pB*PlqY`~+hRB~O)?gRGMAE2GMj@# z(Njo4QnnhIXWA<`7{5YUuTcz~WFi%%gXt(2F2o?5V%E!0p44V)N9mvoCFR>umR$?V z`KR!dtp7JDNDsFr83#Uw(vf4x@M)i+6$6>-(t-XcPnv;p;av2sXVdv89bbXLxEny?eDMd|4M z*c105D^NRawqHWY=yj3%YXJjECkA0Z3pc>Ec*h`3n}(ejj}7dvzQuTwpHVV)9py%y zhZx41rlMqIJci&*l;drti?I{+b?A}V`Tzwv@F|oGynvFrQz$8Z*Q|ew@*VLz&cjIF zw{oF7P*T1b<$6z|oPP}EN#8Wv-$m)z*C-kMJ(c{+fie}P10g6U^u$bzF)hPx)OVwF z=#W`|2PFfSP=@F_hGSToaiav3_H@&UC>^Xc_b*N(|144MP8#~+0hIcAvu+t?oNyCL z&xd12%rl*dl7Si=fs0Wdpamt9ht2v))7Me1a}EdK=N<}jf$-tRlfUObKK(lzZkPG;&K!S1a2*U|F<1=gXqXB1z- z=*ZNx6F5AJG^2b6x4>b18(m|J6LYhTjD_VG4#ODs&%tfD91mcxTw@u(jXkLUf^whG zvA()TyJ!@&U$KH6VdIPxHew2O56;DBkcZJi#~WXtg;-8~3Cfs%jMMQd(pRnUR^ttN zH+G=DA0?B|V*tL0ZDswRpb$vIYd8_#M>!#Wf-#E+V>{}ZC_^<4WelgGOxhZZ#YMOV zx1mhRxIE+ikcM*nD74~4lu78sJX!y%D98!tFc`lu{lRS4@-=N1?V;EP>+yYbV=3kp z7%6=c$-359XiTmbQRc=Kl=itrbRPGhWcmtvq-T?O>;$aDZnz2k@G+Dp-itEX4x9VW zp``p9l=p$9*hqCW%5mvty#%AF&&Mu!7k0*7DEILelmAExubKyZhEo3tyJM#kBQx=) z=_siyM43$G*b|#jI(k1!2OdYc!AmF|J&)4SD=6Qp!IO*!OqfLeWj!a+AY-16H)Ae# zwD1E1Wk{AyHom{tqU={FH#~$P_$o?=&SMJxh*R)pKA4YM6UrPpg>v2{d#9=Yc5Mc9;^U+<7|}nWhj|h ziIM2pPC>?`1?9pgQ7-rvcE|TnQul8pds@g0V-l94+(1X!@5W@@gz~L;6x-uTl;h5t z?H{8o&o7Y7dbIeN#(}Ar#EwxIj&&$wwF2eB4`BhGMM-h*S;o)tVjMz!Gs=z5U=*H5 z>A+7YnYxaWfr#10a*xJtvi{>K$N^axiqlXoREuG_#H`C76z3++VAsAUABrK-`2fB-^kn?n7Tnu^07|cnf}x zeX++}YUcue{JHJm)(t0@Gb0yzo8YoE;8oCV3hW$C`0E!>G($MgL^R&-$YLmg|8^cff0>Hk5f^` zZX||d4ay12QBr;%$_@5mcRYbp@ne)H8@kw-Tv;d?EkT(xvrr~u8D^ksG2<_(eTIe} zcnoD$UO>6g6_lZAv&6V?7fhqx6QyI5a1+*;?bnc`X+xIs{m$IkioH6Cz{&LaLV0A zPisvZu`BJXa5mnDycV>daS%iB8``KRZst9KTQDE%?lIo&hmfRc{#%Uq%O;fl-yqXK z8+NZ;pPU_}AgO*8yJ3f|#xI;0wDIoqy{hJ&1$?(je zJr!?3*_h`VBjfvDHdd7J_y5l{WSa+!#xJSMHqOBJS57hIBJ-H zo5xuxzeg}te4G5%c*!ga;TG~QV?2-@lG?AN^@c5paw7ZA<8Go0Wu}RCn2_22FySO> z3E7?}`f$wGz8XK-DQBDI*G=oOKQWNFF5@rT7epiRBJm{An-gXBzDmeg$yQCACXN!a zb>bLSoA1wZd1-}E=LM*}OUxr$x1O}i#2%0G|4a8%t|I0Wp2zuMxc}T_9?1G_-SRo% zoLQ0e-?|0ToEhV`GWD@U12LTX-_8AU|3A0e zDTT4~6YNT)QqyD zuf&q$_(f)U1zsV1&wqi!HKGFtq!2f5zfj4gZ8okYb`X<^Wa3uhAR%8+e-JlrkC~Na z7(+x5ea&kZP_82qTJxVlMYeL{6w!ysB1(u1PMU(v#3ABV>LtXZlyBS~qB4MX*@AJ1 zSvFdD0O~W0P%lpRC@?Xt}z zrkLdqDGwp!$A)Yb#1q6Gq8n|iCI4rM&xrt{h>&d(JNsgHVl3r<;hThP{~;#Q_6`oi z8k|bpM*Kv)Ldf=(f$#s0$8cOP>RZjWc4V2x1ki$h*;XKgx%b63-&b2LLvKFw*blqsPt=Xz#q)=Xyf^f@8?Jwa|!uvmBXqn0HktCI;1 zZ(V;si&~mkrM^!LQ=OAW2ie>Pl_3+@iv%yIjN7lEKkk>PwyO2B)rN>n>ZB-CEYD z-WVL`{eAFj7FC?uH7qB|cS=b^S&d%q99}ICX1%Z9|pKuA+y{P%jUgph||nqehNc>SwF)el%i)pX!~l zL7mPRtTv5$U!Bez*}l=y;MVf=N_9PJj(?SvGqcCM*3mi7TI#auT+&uf4_0MAs8VyL zs0VX;sE=~St8uw&)z`W1prUGrUDx<@JG>{xe(SFeT+9M z4P|bdyH+LS7pj%{kt(KOv$|H0sFDlwRdZnjj%4Tm0F7$%A~)GbroIQUrjH5MJ1G!1@nYX>q5Ou zQs(`&WI{)8Nm-tss@E&MpXjj`m0A@W=yq5~H@Iwe-K7pxm#fLPK5C<_%9~L$%-?(7 z9_p_`UGuyxuDdL1dcy$~zo1XI+ETa8uFYt09e>!pn7dZ%F5d)E3k$tpE_7Pd!p3zf zV{v9ci9@DH#*(z~Y`xBY{NeIyQnEmIRvtfGRaWZs<}ICSQD>I*Qe&H}U9-xZy3O_H z^jN@jdZ1~b_r0cYzqo?ZI^Axyb1S#C)V^4^Rq1xkH^q`h>u#rBSvg!At-3TPx6Mh) zXS%3GD|&mMTQS6tF z?#xml8+v*_ULS2yD>lvv&MP&hhs{3ErBXIEwa>EG>9rNQ-5aGME$XGsG3wIhBkJ%y zHEQ&hSoOe`3N_%~gDQCI*5FBctzPM{Yq>Hv`rKFCRxRDxWGyMLt}U%vc)Z2w)}5^r zBx$mp8dF5CRp0H@Rr!N4%KFfAYVfXPHE-8k_4clzL1T4Sy)IdHx|L`5EbryrnU-7r z-_@*@y31XwOH#~s50~lA|IQz)TesD6 zp-JB9d!j6A&0ifo@@;PG_-ZFdO*N*HwbtSC-OjuE(Su#QMbCfbr^X-I>HYCYy+u87 gw7zs7Q8a#X6zvUO10ARI0KNs>3;YnMbUp^^yU&73 zZ}(nL@5$i4Jf8p_4K57f7lDWJd?~m)I1Vbk4ygJ)KRn+CK7r>Q;FH07LiqPUmE!^M zaPaq_%75r7jxnfoPX<+7IJ9Xt;F0;u+X093r) zPIa6ED*geW`tum@iQq}#e&AC+&+`j`=zdax# zy+0ZhJw1&-CxR`Irj6bPir&5eD!*TV>c2mLYTrXo^L%?iJ+A@}2A>70{8xeMj|oua zd>(ipcnzp>z8O^iy)WQLK&A63Q04t1sP_F1sPF$HynhJP_xmsQ_B#sH^HV^@KMSPm zqCRj1I0>r!p8?l{_kxOd#OYBKg9|{l*9G7_a01jgdh(2H?el$5^!5OF2)N%WIiT`e30@9f3M&1-2GtLr2UWg%LDlQq0e=Ag znCE{7zY5-Wj>o&@T>tJ)Q04eMsCN7wsByO&ji+><1d1LG0X0634&kdq_*ziyy9rc3 zz7ISSyctwK-2)y5-Uo_49t_XF1rO!+K(+TjfU5sLgDS^^pxXH%Q03TtspBEw0X&}wD&Co(`saL5{NW-{?c4-o z@MWOd;RB%f*UcbBitYfF?{CBVU6y(K>L83821P466L=0$u^Cy{`gAU#|q`fY*Vdmv@1plbgZa!P`K!*QY?` za}Nk$o90HYJ15`TKf*ObK1or@M3wV3LJHd+x zzZ;yt3*W4XqQ3yo?~9^mfcIVyMX%xg@oT+(J{ItHQ2limsB(NY;12@+22}g+yUxe? zF`(+x1ByP+3E>++wb!%3eZeZIcGv={A72c<1blmVe=L)Nn0r+S|VD&HPZ`8+LzuM6S*pvpT8?g>tU>YuAY#eXTdANU54qC_`>O7~}= zzWXKkG;q%ip8sl4&znK@$6G+v=hpE21yJqwT~KuKOHlo^&(l4J_)=5RDa(Bo&;;wHV(=7j6{vK!fNIB=fd_)uf$F~xfJ?!T zf@=R?fTDx{3h(#ab(ve2PZ+nLGr;$scd7c+u##jV@2i^hR1#{mHzTjC=^cC>*%l*5(pY84Vjex%e zkK=uO1$_c818)QW1)K+7_Z;Vww}Z;(>*4vvvWMRRRtWzFsP;U2!24q3O)sl2cw98(OUk9K5hl6N_024Oz%nbXmAiz`@IO<9egFId|n5t-LD5}y67F? zbHSg3qO*E}ECo)2`u=Z0_0QKqjgRkwdx1X#)z7~M)&F}Ad4C@c9?$cM;LE`aK=uDu z!9BqrfQtWbp!)L0zMyXFj+acpmsoa2ZIKM^A=m?**R+t^`-teEhr`6n%dhRCw=L6s-Z< zAYBxF8dSaJ*3qfJ#h}{f3Q*}zfV+bCf$E=s0@cnx1r=|%hL`I|@F<=af})r8pyJiS z^Gm>Ecz!pi{O$zBf4%}Lo$rC-bH5Gm52nz1J`q%Zo)4;>E)7@%)t@f}B|p3oJQDmc z_(bqtQ2GBOsPrEM)qeY2<>fpUR5{N9Rlm!?{lUw@eZU%c61YX-yD$%e>c?A}&L3|F z^?nLG5qtntz6Z9vU+01<*Qwwl@IvsZ;0wS@!0likxL-T)XHefi7koGPN>KGLL7WGI ztH6(gmx8M2ep{S=7k~%wd?C08csY0|I0!1=ZJ@@_Euh-*%b@7=0Z`xl0$dC3G2!yT zMo@Iw0iOiE1XMk*1Jy1&z(c{i!QH`c2fQEL$ny_DrN3mWx92iY^32mggSE7H|&uN>KE8J*axz3~GFA2i5*x2UY&>f%CuvpXYq@Oi<~r07bv+K*bvc z*Mn~Z)$czBmx4zdYPa)2wac@>UT_f9IC}#)7u*gizxzP7>vzH9z~6(4 zckD|%d^vao&sTs)gOi}*y%}5#ehO4Me+H^v2VLXi^&GIm^DDsf^&V9Hdtd7HxeV0! zu7aY==Yr~wSAoj!CNKs+1FC=i1=RPy29E{jzRb(93{*KPpy>3ipx(b1d;&NHE&#s> zsvUm=o&@fFExHkSD%b;lDd6wHV|YIK7 z?fnY)>n?l?9s!>E7v4V?ywdyca&SKJM!?g+*Mp+7&xiN_2=2x6_d%8K-@rY=C%?+u z?Kp6N=hHxiUk}FMJ3zJLXF%2C8=%_dSKtZYA3&A&gjf4_XM-=|c^S9{{2Z8o`@P1? z)dKr?{s2hRM-PHZcjC3q&#wnXcQ=5CgC7Za52$|pE-1SBEhsuW;&q7dGS4p;*F zL8bd5@Hp^Ba1Zb<@QL6(;KkrSfNJ;N*Zcd^z|}mT1uDN6fojLMgE4q3_$2Vl;NIZ< zU>SS>RC?>);Bv@&!5*H!3MyXoMjyZXfQRlv9YE39;_F-=tAbDF`Td~E{aH}${2fr^ z?~-x!`h1Rl@x4p8m#9q>T#KS8zIoa>#wP6YSm`SgIx zK-KReQ0?*@Q1KJc+5_Cc^V>n?`%_SK@ZX^L$nkFu?FsJ3^J(D8;8IZasDT6 zRQ^8)H4dKmRxjsapz=Kmyc9ehd=dTgd~p9=q3^dr^E~hW4r~&<|NcAu`xb*;={y%y zd%Xla2)r)f2LtW^RlYBQYUl5Rhk-u_4+rPm=>N@H?RT`?U8sU9AE|A7xPG83omzSA+WQwcrup^#N}U;rD|2 z?#tjI;I}}P|3OggwaO2Q-vd>zbvJo`RKfW?UkfU|TfrE- z2Rt79aR}eitJSjh}l#@qr(MqQk@9@9EA1Ro^~P z-)#UzPgj7d->X2S^Bz$Bc?YQSeGydq{1Ds>?(zX|mrFs_a}ZQ}cR=;y%fUUs*Mn-8 zH-qPa9|YBZKMeSvpz5*L2c2%`f*0^y0u^s7sPtbBsyuH4Ri6)o>X#khnc&@^%Kr!O z_240Y>ERy$xA6QOaMxWZ`-kBDJYV)#$bjIQn~{mZrMLL|(?86d&GVTb;Scf8xD{T@ z?NdLBjT=1eWAHlggpX4%-aqL!`X4;*6W-pX?T*g`)vm7qKLu_F?*PaD+Q)UzC%s>v z4*rhtHmH8PipVkeI`CTXqoCUHtlPaE&j-)tc>~x6Ujz1myOFrscO7^Y_$u%S@V~(q zf`{*L{`?kjKF>b`HNFn}w9~^0pz?W2cwPu@;rUGPt>8yM@s+;MxE+5JsD8K)d;<8x z@cavKFP?Y#8}Gk;K=sQJpy=%sa1nSO2x&%Ffui@r?)3D|2A|AxA9w;-0gnS;0iF#0 z6?hEz4N&2~0*?d_`z*WzJPmvUn1JiRhrm6-Rd;#1>p;aD0rlP6z~_V8L6vjyl#j0q zK-FU$6kTrx)n2a*_?Ce01NR~PW1!k&2dMb>f|rBe1`h?#{+#Ex5mf!^pz84oa98ky z;KE&~A6Vu2+n=Y7;Oe`*9>@G2mnUlAs|f!DcqzE-9)EuW_yV4P0xJLN7o1L>2WtG@ z4ys+g0`3MT_d5Ttg6h9IsQPUK=YZFO2Y_z?mEKLD;{A1ao&q%J-mCwE4-r#-UvEcn6&1_|VDmOev8^L|JYFy$uzXsFa&$#&(&r86wxz6KK zJO4A+4+(!8*W0--{?6w?bEtj?fZqgr!DG12;d+g|fxfv{8x(&(;h|0V54hgM{S(5= z9X#td54;ZiJ{KeqeVpepuFJTOxxUXmEXHWVD$4yCgz5K}T;JvT1kXPN4-eto+E3&0 z@524x@b1L$ehPdG;SWuV|5~0u8^TTj8^k#?JpUE=ZJxgbUJKq9!e1KjY2arGKMY(4 zehoaA>+4)Axc-^z!-Q*0j&Xg3XZ_@l!4wpI0Tkc-2>2gdZ{gDKS6rL89_0BJuIF)W z;JSqCOkh6u*VgckTjTRW{ocma!@K9&liS2!%>7FU zyOC>%`_F){=K9YNM|@eo|4Z2ET&w&sx)QvAXZ?diTD};Rl{0^7N1mLrYvp@Jn zuG6?ybA5-f2e_7S>33kje*;h8S$0SLzU~nH2>cA!afDyU^%va#lF}*Rb3dvZegoXUj_bEvRi57u{sMeA_-yb2u6wv|a$UjoX`c1Fg6oZ3>j~4Z1YQDO z1-=S=9@n?I|2TLS*E_hD@w}GnelGpW0d?Qv693ij))0OZ_h04ym*9Ws1-~!y{0DF~ z_-_{Ce}2L9&$;yb9M>J(pJ7jK_jwu5FXFkwC4T<`o?ii83F`M_a0(m(S8*-px`yju zt}53DxU`;mFL8bY>bEW6OSzxm{uNxm<^G?zp2PjqxdyqGa_M(D_+GG=>tDEE$@L-b ze*&Jz^*t{AJ{It4+`pCk_i{D3KBkxa_T+w!-`d|V@%ISA{yv12z+HI$F4vLVp9J0? z-lZU!?Hz;(|3|Bw-`qi@~pe%eekE#N*cF*Q>x=^uTX%;oU1e$o}5V-#*^$2mXB_j$VE< zJpTjtZwU7>xJEDeeV(fx!jIzqU%8Iq`WLR^=2TItlNRBM%HQjg}f;%X}{ciN4y za=SWMuGJ>vv2wjUoK)hWMl+sl;AT00X@$tGR$NcEBu(B|l6br`P^%6uh~}5u@mQnP zju)Q3AX>O2-k|$U)pjlEi5D%2m(?1>@%r*uvirP+C$!>5J)XDdgjTdP-rQ(bHYm~F z!Nyp;IT>hG+X>-=wMM5BH-?lmSt+$ni^8wN44hL@RDLh}Euc zDYp~g-cDutMqf4earH%YnT zAN9oJv<%f~#vy4d(-^Hb+BBIlln-xJ{W4ICOWAV4|VE;?P{Z5 zu2o4x-wq|^c8A8Kfp}w0abkIF{Oq{DyoE-sRLHYJ4_E8qfnI5-K>wGmGw1B2AhBh{+)QRso_irnf9w32o_f0$Mo?TH5`o7Eb5^~9BAi>Q)z z>xs9}c6CUql`Po3-YEGumV|Bxo7Dlj-=5Xm{b`tJky2B}tg05to~*0#vRWARu5<<& zFO;s-s2f(j;p64~{RCgxfvPO-a;G#pr_mgXC#vlc8g8&=<3*KeS0N5{)nKF6XqH-o zBgt5z78tA6W%v3SffL{@$p*1K&%XwMd+&%$hU8Wf_ZmUN8>zN+BBM?!Nbi&x!w*GF<5R^ zyjGoh3j(6h5FvDbKA$xquUfRU(;i_EtZr5rGIkGLY6RJ^3skivydqafvfQLj+md+x z_|^ry@sNS?;OKC((McO-NwlooO5#-w2JNzHW4Ku!ADN8AMC?z@sOVxG9tuB5h8xXE z<5=UN-qErSJdR#~+?=fY6WZ1LzTFub>Ww!yX=GvykbZBxltQ#%CY`|%SVNQEQ713g z@T&!go5^@>l82Draxts?v2R7ICvGLe@;)P^{8=5?=Dl7VtFOSsh-OMG-Q zj2okId59vVQE8ruk;J}aaENzJlqYEzFOxVPm8+GjWB!3LGZHIJCUke;IJ|F(DK4vZ zs8;&WtPYQ~v&R+X=4kfNvO%!CmZ*NlX*3h5OX6x>;|mII@TyU(C4=p_Rj!Hb%3Bpe z#C{uFJTSC|-Nodo(RS16UfX*U_2+;kw)dIN6n ztaPYRWA-Y9R}%Vzs!(|w{B%xxa$MADC4z#-n8WL0oux1ksx}NKG>oA|)wSJdmur0D zd6a$D2?Jy1pqf1zO{;-vGz}CE{h+=JH!*MAjwJoLTW3Lp)!+pit#3mIcGcJ6%(0Q z@d}M*&8^(Es>AhofE22&!G;M!BFUj9#huqu=xE#;7Z<;(Lvt4cB*Ex;tlF}OHXv6) zNMi1tb{i7qt%a^FH>p+nv<^DzjAf7gV+d&3(=$rlk<0NaT5AMZ#sn+)_COiAL&Q-W z`PuiRCCLv)-iqf}>w~q9XcPV;els!Bh(}=lMw=5b$~J7ET%UA7XhEI`y_1%gu3Cua)pt0T5B*^I^GBaLU;`GEOs78%Z35iOL6q=Q!5r*l#i zwYB1jG7^V6r4bJ_brX6L#!OJHIs_wFVUiu~)~KJ~e)T3K$^sbW1ru$K5@F_FpAfw{6$ZAbb8S2UTO;^N4Z%Ub7D#PVuAi(_=N3N|<(X#!Rc`x!ytNw$txn@NRuTg7P-C~oUG^ECt2m7eUGO2XZF zgl=PFaq;{`r=JmzSGOj$)`Do2Mz!jbY(=YU`LpIkHHE@kopFiD@LZy*rzD95nT;UE znc8t2nOl>*WtS?ubRM0iNL5;(KdHBpszkQVcpAp^M43ZSE!mn6DXC^b5%VFGR!rh7 z#cVWG7A9AXq-m@=T8&s}bD<5s&5g!}RKCy~)2gVC?yZ4`s!fP_;i;PTGnHp`b;zm{ zxH?_i&4J(xOkfEj6iub(Q;*nCnOBL??RumCZ3@udACtr*$Lfs3jw?{!YB8{kYf&X> ze$nb?*%XNECPo<^u8V6d$-|^u_A<9a7W|{`4I78ZXBTf=OTVK{OrT%VByM9cQI|PR z;_#pZPcv9p=4pmXJ!o^AlC5o?(12DqnbR!V0O~(eSSwoNf}Y<{j>JM*acBHEsH)sV z$6$6-+!zTh9_%zFr!jR`G&>-NngK?W9OMd}7dd}#+-K$yCI^YJ-KoLjTO$-F<5rsf zA@M4d?J?+hvgBC$tn5Nr93i;$)gj1=WK9W<_tD%_{3 zC};WD#(_SqGWe7>1D??`<8umUbqP^+9^(`SPIYMVluCl`L`#KSNwzn-AZeqDjEe6W zM==$ZRy#2pjy7&J(l;jLWa@7E5hZXNut%1(PG88_m=E$aE*WUb#b}9!S=0RPN=cZv z7cM$8o43~*li|Jb8k=Xsy)~|SF@0$PGh*1(OBCL=qqT{&6DTOyc&9!0#`C4D(!(j! zUyyxbRvZz*yjFME>>mv&vtjYL<@8#4P>=0ghtXi0KGPxuW+G6R?ZE92Yt8tv7U?C@ zA0tp{7bTl@=q9s@W+PNBL%R|a9Sl=#w}G$lqJJDq_|Rmuwox`!&YCeaP;W0u6vXAV z);a`vBQ-_QTVQF<+%?M@ox6NXTOs-t+gpkK55Kf#&%S$@Bnz(!-&m(NhBYzLt6Q+I zsQWsDqmwG~aq*>^Y#8bk+_fhS)j?BcTjR-KRT|KcB(YT1BQg>I-^$W{|J83r0Fzm} zK^o18YAc_UWJ9s{BXFaj9ubLtxAb~q5p*KkGK|LV1{zxftI>eBUXAC<7(dr%QM1xn zMxI1(w9Xb?yz!^mM6{ex?}}ioWR_vs9jPE0uEXddt0N*Gat-3A0?a7Q-PY<@XUxhW znOMsq@cbp&i#nP!+z@>>%w%+rM2y*Dt%;k?gF#yb1&wDWlpprJ>HbrXnjsU z^!t*+Gp5weSbbWMtNuCp5F*&Lfx|Jn5D>LkcyT>7X?W_x(GuZ3q}*s2H1hE znPEg+i(()q!V*JQc){FJjBaeyW}^)wP)fw#HXkx7Tl_VZ7y>o>aUhIT^OhW8tW*|k zafdE}ERE&MgA&Sm)AX2Aleoku%&+Z+gpj%`2NL>np?kc+aF!gCnZ;8!E=hAvrvACe zf+dr|KaP!?krI?s1n)MMdV1ccansE+q2AMRncR>a>W(s-jaX<2gIa^G|8FIU;M9@TO-ij*dMXIU0)CNi}C= zIVbD*O*2}@O0VhFs6g5;M5jh{Bdy5B^%3Sxk>;Fsb&Q$f;k#n1REI~oFPO))4!V;{ z&zVu_E^6N?eQJ7~k?fqDWOkZtkubHEFs)#oY*Jwy{gDkDcQtGan-JPLgrL4SDP!e?c&H_(Nvd7;dQBv~DMkXPw#6f`+jKJ&IF@Z-V}#L1^luYiHGMwkoC} zXWj`>FzBZkZ|v{4Rpu-pHMYeIX9g{r8FX46)EH;UUn_&@qJgbrW>2lo*ccOc_KePf zxZ*aU^ozEfPtq8g$u}Tb%im)ysxuE0=x}j=y}^{w(A3z?4djjzv3{~e+F3S>1^&rm ziY+`0Bx+M%v15rjABCBM>~obVic+A9pUM1}RC+8)yj{enf{5xU~jK%R;O01V#t5idyb&14a^Bid<*aWNJc@=i;aIc+$pfieG46qC?= zKq0?r07G-B@@1)!HQE6_SajCKwgy0+_^XV!V;N{*^W#Y!(;1bV7%x>9o{6=VMYL=N zay4c$p4&!3^p(!J5nc_xRP9Pn{;b(ao=T?F%=Mu>*Sd;!=2d2V=~}|*O%w3NxXf<8 zBn=;T|B9{`aN-bJ)G=tuJlxh9Nh1$RnM8MB#sG>@oe2~}Qbte=^MS7r#9LW=hlWD0 zxBwSc1@H|Dal#Tl5-V$-bdG=7YK^3~{+$M3cxM69l2L)uU<*T(rK#PmNBx&c7vd*s zQ#X!A{VYEv@rlQuxoFX;XU}Wd&BC)yn@ue${pLatVv3$LfRtv-eG5=kCK}Dr*6x;8 zh*v17tiR=W7{j#Wa9`k!-CQ0t0?MOE8P^d{qkk19)}MywAzB2Y)zSzyqWuw7j`+An zgx6LMc{w1CFyMoJy+y`J_?o<;>hauQt(=QAhQggRy*!kFCXLN^&~IC|?jo-t-l1mH z{BJz}jK!HzslU-|PWEKXO+u{AV&unsiR}eV(m9W>WCasR<`va1f3;W(+?p!<$tn>> zdBg&#FR^vT+6fim~QDyb$8Rrmq+`+Tke8f~Hh-HnL5 z7LQvS^~Tubl4w(=rH*64t!|Ym55sb~Ms+a6`+@~`4bPeBO=ZDBDWXN(wy}d{fp;h+#nvG2~wmcEggD#)5f~;(at43a{w~kBbTT4xTy~hr)brakXgS zY?21z<6QaT&D`_mE)7dPR5;CTZZH>`g`8^Tix$}Z)Q2YCrLA9aH}`FZ>YAgK}edg+0i>9W+rYh6@*f`Q&PIPS;ujV+54PR zLW-_7KJL|f)aw%xw2m?dBu!mfP7zB=n{OVCnbkZjU`p^Yuj1Z9qtg*{&)b+-ro$@2p!RCBhyPsJH$>)!M@mI3;k-%N*30Bp|z8_}E?$PXwS(1N@dSsTI9@UDt z&&1=>CEZy~uZ83vv_vzUnqb}&Un0Q>-KoX+&{$dBXbi&`m*S~D37dwyy9nk3WMy~y zk5zwk=klo60_E#*7#?{p(<|`5VNrRik5S|289bWBHX)6<^Reej-8oIK!x{1FWoA%B zI(E-b*#f&o{}@*Y9}Jls*({k^Ei7sHSm@5^G3t%(OdiA9Y+Aa})o?TeggMFN2y_U0 zP3B{*AV^xdtZ&1g8cDKInoQ>I8BAEnZ1h15Sqln5>#5eX#)H_VDSwQmd>6Dlc28lp zMP4wsRG(`R)1?p~Y+#f}<|A3AeR&+Gau|~81U8LEz7Wj4&C_n;P#vci&ipI#;?XEs z34?5YK?f_(Lbgtwy6_CPB$zM0Nrv(mG%tb|jR>`b1SsBLN zA2##;o7o)RG2QD!a@`w9kVR1o*a%@O{Hj{I(3Um_yF#j=XMO9z@)hg#&IMd_kAfL0 z_X)z7C;!c0>oO-G|2p&6l>~1TlvWj?&FZC9L)-(a16s**1yGtxZYy0r!^No3+ma7i zm&4b(eeM+l$c3Zl;Xq&>u+1bFscn*zvzU<;i~e~n?Ntb7EX#o+rAbqYZ690caHIcF z0jkSNB{~a|q^z)9Pz2i-r1zQUzI3ZFQz{bg(6K{uX6M!T!B@!s#?s2!=wpw0dhQLH zsqzIngDyfzth@O{$`dV@nC~ibF?-X@f7N;-m@czLMeUPe3xL*8bMHAw35{R&@Jv(qzB2Uhe{W|)$%Fk2HJ@is9kbGY0A?+CGT{w zk%^1xR-McprE8_fwi=pE)?FQ_TgnB^Rz%mN)Max^@N%-H#895J*HiBqui^AiGr~$y zQ!#Pgu$IyCu-W9y4#Lufb_2*Qn4y7=Bf~81o=m6_s<`l2+x;;qlZV3V}SU3MH%Bhfia;V@3jLwHupK&7IqmOWUK(YfSAVXI42$dX56+ZMNZQuvk3l$ zv}YR^kYHBg1+Ez(y$anr5)a~q=C){26FWK0pAj2NcI&>E<=SAUM%wJ7l*8rXGfPih z1b^#b!6Lm@yNsJw%wP)(`RpiT_bkIQb%*rCH!6i_Q0*v3Lo3BgBF2fCcr?NA+pOKoZl>-%0LS%Msde7?m(@0xC3Rw zGqQbIurzm+Gz+PcXP$Kb$?+n){+v z%B_)shW2>PTH;HR<^Vf~0QqEenfTK{bz;{G8{$^$Fu=eDpj*nZbqw zYaUP_S`k-tDQR7*aamE>%JC-lKaA2dy82cyz*#XI9*N}>7YK&^NxsV%PCHVCm6-67 ziptrZiQYIH#n8te;msE0NGqUnHzsN_tNG=sNnmbP5?p0iPlKegviO37wv&qgm^)ps z*9(4=8(*D0WmZ6>x7-S-eP;0K>?O9{{AI_7e61>xW4_FX^X4tsc@7)aY{(Pp%Eg;( zngFlOU|IvsM3auM>dAIUk=&pcSg^m+U{xk6i45r@tXslwwLwLjfYk`rkh%F7WAfbd z@M1Kl9awh0P1VIz5rG6>cLw&aQwzWM#k2%TE~o;wk1J0l2->#mFBeZ#;+e}R$~D^_ zsAkB|P=M`)U4p&wMd9oMBnBxjP+VRy%CUiJr7QC)$E>;yY>E}MEJJ81>`pIiw#<~8 z;3?y7YeBAZ8lY)Cl~gW6`$9Ae?xYfdgLGya9~s!0fTk9ZVCEI@2|>k46S4)?@HJgZ zQ`ihTjkl(fWmf}a9p${r+92haR$8Xw^biT;0<}W%P>isIDy@O!T}OZekLhp)i<&OW zYPb0k!fpMSmrWa!uEqDV>YLC>fs~>zJ<(#A8Qb$ zdn2~UY9N;^x!sqsp?Uf`L6Lb&kLNWa# z3*Kpx{&to$XI5uM`a4T`r)h?*zl9l3BF4bn5A)MW@FL7cNmx3YwwrMOGtg}tZFSq}Nb21=TgmzYiF6f~!5{cLghCIkH3i#M$*otejz z)_}7@X=QzoJstJoCGnX9)%F}5uA1dqX%$1dwIr^i;PTiychT9>b-6va9v^pZyzuNf z&nT_NB*sEvqq!trU2C*A$O?bTqTa>5r${mJ9X50vkk@v@}aZcg1aj0j($6)GK4 zU{B6Ajz&W4P~z9-}TZ4^IiAO8B5eAc$3+Y9j0%wN516K4%?DP)Kl?g9o$BS zgb{#t8xW0sjD5-9IHC@QQQAK zL66`F&*#NpMN|_t(^H^C7y}{~%yFaTIy;Lv-G&sHgVh)M9#1Gph6rKvJ91QgTL&_v zzoS(GmEXj9e?`Y=il<)F^3uUJ+vrn_SqZzl`Qy_3P~QAqD4aB7E^RkJcN>pS{)f4fYHj_B0^Fq%IOuegvP2OzWqJmZBCcZg{hh_Bz?lo=B4AFQnO}@0u z#(vUlP}ZT^)J??Hfl4qD*CSievKkD>I!PuINM~hWXna98;Bcea%T;=OD2Ed$Y{ZVY z!WDS7!B*S4~|b=1NVu7ZcS! zb>w^TMx9o{DNOazPMx`IDcqJ3QCjV$rKJo3kupAn+Tx(Ym@u8hA(oxSr0C)7rP6A+ z@6@|Ekcm1L&SWaBG39KS0#t@*U@TIc$y9BXV4yGuxl4tknTDzfE!gm*nN(Pjch@Xp zuS*v)eR4b#oPg$oQKSbntqdbTt(H*%yUMVGCx=q|l+thH%}8dWxu@WD^FCJ%E+~&Q^LZq?P(zN* z?jxKkRPGcWN8pNu#|pCt2XJN4DXGSJw03H{#(teQVzg|+jzPMA<%z8{7f!qXC; z;NTG#kG0C}ZM08^ga}RsNFrw>FuJk2SOtTYu?N8pW4ewq)|B7zF}or-+fB_z)E3PN z#S|5E7?MtpDiJ6Zl37h+lh0t6F{}CzXC-AweZ^d6G~xcAv4r}veaaVnJ6fOGF%BcZ z)TK%?*{JTMZ0AUE1DlU8YF0FnI#6KJ%;2L`M9^$KQSh|O=DRix}X3#M~9w-3&U z3lbYY z`Pk34DuuJHI3Hu`UDUuQCw6AC62i#o3cL`mrS=GMOdX#V<+4olu1`Pds1uXP z=<|M<3A0={kw}hyS0b!BgE!$$B43hA+QtTGdP(c>iUmw6UPgRY*}CY3>Sj1LD7+`@ z>2yb?Cb?o&n%Zt12w!iJjeHFeWP9T32vfg?Q@Sn+-zrOhGx-dDcN2X;s)#pUf;4ky zw_&wOLpEJgg1WqTVl0^o_$ z)#yzlGBah-G6oqaI2Y#i!6vn{&tnus!vE%^hEzmdy5xnD&2mh`8BuC!B%F^Wi4QiU z&Bzqkgd8Vh&0i$RAP^hi*gMLtDXkz?m>9lRyxwO6=HyYaCZD6&Hp|LeJ@CPd23Jd^ zwn53No*kfN@=I63ejXK~CKAKY5L=?r_bkF#kyWftaD#z|Q%pD_qeya<)Hm1rT;yl# za2h%z!1O-c019!kL`((<46fuY!r@+GLIL9WDK~lq{d>Lik3vsk0uAhpR%5!+__jEi z8Y(O4j3}OYD_Sk7wrS$mI+OxvCsX1w$s2OWGlWL-7@5Xr_1l!NsV>>fN`5m1zU6g7;1U(BdUfUKei>)XBF2JxJQbVRXmNz z@ycSQ*llg*>DDkvHSmETf5@6ru(#N99c9ZCOWB4L%TzDngdvll*<9#(+3->`$PB`E zd=z14Y&3mVDY{IuqBX41a-NB&!dNiA$0Q01LAcalEs%mnDXOL99Gms>?^h5rJ6of~ ze9faYtnvT?xzq+mHPaDY&7nG|H+5}K^+S~*6PxLRV2*Z|1-SLs=Nmg~Y=h1kI}S~3Mfu5P@n+wo)KRkpw|lt@!{ zHDMOs(r?F)l~z{kCNCf^Qq8<(+D+z_H2xl&YESMN*hN@slmiW zvQqRI?A^?HJqm!z0NMLlW*jfb@f$<<;~2%ciosi4y`06gJsKB zix@FVB0C(%+_QWhh5gB7YJ?rMK35jK4E6k2C%opQdvWC2bn^^Fsa7Pu#!Lc(BU3kV zFdd5KK)C}|nem9wKxD;7&MzO~2+Uy)Nkd{7D-+8YL$J-kDv`aIVVUZ6{1Yz;f_-$& z$zmRQ!7f+CXO4N6;@X{F7ta@cR9(_GS!_5N;PgM{yIfF|QBXn!$Gg*Vne`@BD_~~@ z&Z<1cY+W&hk0nhpThmaPPzkRG&Me=T@CWw91QCux;8nM7^!h+I= zR9RdGrHH02#2EEC7h~P5Dy^)J|9@$jHB;M>F6YyY#YYaLv-uvOWkTXk_QKL1{X@Ej9LV0=;Al)Ls(LEljx%geJy`2NLkI^V~Mm z?=n-NA2O}kT7g-bjmWw!(C1?mm3kKS(VvoA$bLdLqjqGJ4E33+makl~lAcX8zQIX? z@HA2i!&)QS?A$&CM4ZxO;jJ2Iy_ojw{Ao84XaGTAv?Qz-qhf&@FJ-928O9FS&+9zY^FrF!nDMBJZL5*&b#6@dWc7_NBs><#O-KJ z*#~2v=3QG~GRDxu0(OOoyCp^-MITAco4m^wghk&hN6LLjleIS*0;V4or`en#k6Fp) zemQ`{&q$KqcU}BAxh%seionr(wte<>n6Pe_zQ zMC1xMfut_1IreE1)WvS*r(7Uu2uo70R&^vqNqv8~T++BRIN8ILjP7vJTA57$@RY!} zPQk=3>LT~lVNBv$YGO5=IAx=H;f}Rt1vYD0=4O~min37BBn+cM({95pLUKeKV;%Z? zP%T}g4_#(!k<&`yLS0T;hy`Y=@V^`}#OZY|3C4^)`)>qhRCMPrF6o{Xj3kU6#hr@t zMIe@tL(%Fpy;al0?=qdKOG=hZBMZ3=Cc-_Ozq) zNMbu9hbdzS&CZXrD%V4xrro?rUGA68LFr_Ke1ER*Hhu1;1-;Fqb!vLZR!k-=*$$^N z9X3TXKKQs*rKYKzWoJUFZ!v#bhjC@y4OKrHIndAQ`c&nco~p6J|3N9T_}HsVi3|gA zC}?y`2SV$Z00_ldr&$;}dTnY42kIf>l?U3##V+!gq7+OVbh+8%e0{;1RudHlYzRW* zz?Z5-3R<}H3DoCyCQwd>Lpf9c^cSYF05qAoGH0%W=v#`Y`qg7h-`_1!y?RK&oj)OK2pi2;AN7n zkuiYuKP}iHghBV00&iLrqKZ$XW1L1Pd4;;^9Ku44Se&-CREeO?#x@KK6e5!X>m}`d z8NzI&RWqMQia~zVgR}t_|2UymmM+ECq&dxWXk$f=IJBJ~Q5f7jsDOA!o~hY1bJfwA zp7Hs>ahOZkCLk&g@(rbCyd`y=Ux*>lB|*f$`qcKeR+Zxc{5Lf>aNxche$cZC!j2VW zry}KaNtNq;Ni9%-wEh_(VIW&A(wT6@)J3t7axI8ZOnSDRrr3nJF^bXY}VJ3l)t^hO0yC3=Y=t^N88(9u_Y$ zS`KvH6*+rJ4Kq8U&QMeb+98UhoQttd9_ z>rE&}I6HDoK4&YMdWLs_nKuzE%<0)w1rv6&C63I;LtAGUH1aQyZLLc;O3k3Tk1c8r zM?=W*WWaJ@xk?Ny!O5;K*e&_rMRe?9P?qY*m)&bTi~~_j9WpU#XB4|q@Y%@PI#VSJ z2Qg}z$EH}TCnJ@1({>b;qz57 z%QQ!9K^^tK>?sx%)*dE*Da1W<{^%M%LPq$1zW!0esW2a;_KI*k^v>ND6~(~vdDR3^r8Ds^h|ol|Urywz#%u#}mq_txa0-@U>8 za2T2w5&xFouHcX`6##Nf50!?Fr*|UPgG~zqI zB*DvK<(n9>+acp*13LW=!NqY_ zT$d9gVs$r_;GrbxZ1{=QWW^WDHi>=fr0F##1F+P&UQ@b#>auZI2H^`IUwls`6v}@m zRbz2RtCi5FCR4;g*&z^5gHtu-FInx~n91~!i+=Pz1#qvAX-#kD3Kc%n#W;}Ly)p`| zXUlHp8IrEUmom?z)PPfuHYyppPm>>hYD4<(Wx4_pK{twCTM@@)+I|OwR!Mu99@7<1 zy$Q0jloRFxlT`UMJy0`q$}W1arZa~5Iv5FgrSovpT!K>4lX??~Ttd%FB)4uvhY3e* zW*@r-BEyQy<>tW2*rBd0y06aXEAF*<9g!~>hok;cJ9(1@l6ft;GD{FD4y z4Z}n6TRDWL{*Y2Nf*Z!>+|{!nH<%NetMq;nEWbMizB~KH&9E?rCa3rWfFJ1 zu}l}bYhUUy?kaT9lgU((yIg;mDolSgcXB4wYJumNx|+Z6`9Yd#9+piC^uFt}tk=Nb zW#AE;H>KAyWn~t^aYskne1oUECVAR;jFUnc*j-CtbFpy9-8Xfl*T<=K&kcgTSxGp> z!bn0ErF0TW8;SJOUJi=-5*&#M^}lw+Xs`n*3w9^-pRy$E15a6iv^B_qHf95lR@>ZC z$jq!gAKTbSlklH2(zL;job3#t^H^MmcM<_JfLWnc{j7}aO6C7tWM05qGxPrQugY0~ z*$ds>SzC>?SS^leC1ISwoXawVF13?Krxl1qG0|(yj42oI{dCDHb5svq=3Avoo3*DZ z?M4qnKM%*%K%jCamhFns4f;u?{D(lWkG8pYt2^Z!B)isF8V8?17$~xbO2M?0ZZ%M- z*?~nPI@lWmki$p1n23-_^~9=WZPa#bc(rP7f?uVK9806R|AMV^N<<8vQqk1?4SM{8#wo&ngZ5986tE8d`1?ua!$dDfrl% ziCd~1(g&Xv%pbO?(cRL-MJ|x-%G=7^1@e4tACm1qHiJMA`pvX$f_c`33_$lY*6Jl& zsLObO`GF94Jv_|Gr*6x^c%1E%LoN#?qtOdybQ91J<6ZgI$vn(}8|}YckPZ%GR3DpB z67iB9h0_m1{qr|LIL!1ht#f){>I!-^95x!<8f?PL&O_)rGS!3}C=a?opwaS`xy%(P z2AZ^!Q}aa)4G}DE+Lj^$G1emrO!xKiQp!tL8E~VJ;h`YcARPoNf`+R*`uZ`dK9V|O zMjC$kd8#I;!ysT2v8^eZwQF>0yBHXh{y(X>yM1YyFw}jHC>wc-(3q&NTh=c79hOLe=d*(qhoCBxHPA zvrQ1WipRs+h@XBsY^mQ*hy5c)eR_24BR9Zf)b)SHx?|yZ(3qNKnIBVI ztLp%qulv7`J)Fo-jjf%jRuW153buB%(N3FFBntZ@d=Fu^Z?-67NvhNV3T{4GS+sIU zZ7oWc`i~$&9>{}<+xxXDfnbl)AYUiZm>njvEZsoo31`zyXq-$b!z>^t`Z3ODx$8zw z*{#|UyH<297*DT~H|>n-$R{MVMY8OO8tHm!Aqkh3`757N$<6dnO$YLtl4E9#wBgd7 zcx;i=jyJ7pxYaqYzpb0NsN3znV4e>q!t>t`xqqe99wS(DJ$9!P@d?^$YDW!I1?f;# znb=CpSFHECXWmO@&bIRtismg@1>Gex_3S~lN6lnbM?*^$XdK?OTe&@wj0Uc7Nnv9l zGCS zFEtP8Rj_{>Lo+85Yv0V8<#rM5&4r;jvznE1XpqceV(PzdA~Lg*ui=P*g4qR2nWtS3 z3uAO3RSLFC^d8fl{BNn?m$5Q)hhZ54|CEq%(b2TvKWImckgPm6rA%S5V_VHYQ|h1@ zzx(8HZ5uz`5s2QVQJ`y%K(PI93|jNz#iG$mbL*9P38kCDYN%v`{JX0-ljd^1hRj*2ZvXJ zQpl=@4})|_K4mVXmN04A5<`wzS=6+_^H~O*d_ST!dg>Fs0?&WnfFhHYhUT)=b|)j7 zS_x*^;y5=k1U+g2(5#g303OT1A=OlPYm9W9iaXij*u#`et7?V(y-De~ERC+@Q31$L z`$j1XsX~z66tqHNQOhb=utY>@Y6IGmycvfPc0!mP*Z*=NE{D*$!F8G|qZP>Vz#}T` z>`m8`bYAd8FSX1pv#=m{|EH&3pB_j7zqap=HLu{4p?FYNL~27#195O!YV!#;a^cRB`Vo9{02H z%19_I^qLbuZfG-d!PKsuQN9o_*D>o%NE&(!4*y~$t#)>1)odpst3l>H;*rQ*zFkYA zut~=F1kRvKA!yv7=sCK}J%EB?D4qGSZaFt|M+PHowtR@+ndP;cb;}f{+K0%@lG<4d zNomhL%(-h|#Tz)r+7I{QlzGl$g?=znK>_MG*55-r$&y6Vz!9{z&RnM)($yQS#rV0& zj1#YlIN4=PhbyvKnfPm_ZW=X7A`^sk8dkQ~mK7GV$TmL6(vEYj6mYE|6rRXj6a`t^ zqybTvjOHU>t@Ud9!lg&eWGN0#u9UT(Cb)#m@FU2ag4Il%^p*x58Doqo!0EONUK+27}5dhZjWvTK2YV5 z5}(Ah$f>iOs8#oIC?=2O+n=WIIkz6pT`$eO+@zn**ux#`Y@bP-bRTYUXCo`ypo3Hv zj&h#SvX59nnndS3PunvfR>MhKw#-HhPC?%$f-rV8Eh^2>ePT~5N`<5gk@2)-2N7nA zc70+U3}4K|fsng*Fq(DMb|f;TLGivuWn_nZ<7-|bJ?O-yPn(#0%2egk!QoRW%UD`m z&b1E?jAp=P(Q5MTkyZDT_M|tugIJhkQ45Nfnhx|@C98v!Z zeYdz_i!l-*qSNlWF_tWSdyK7ubi>^ftqsn1WS2NgB-E%k@;9ZiJ_*|=1j7Ppxc zHfqpfOr5q4DUJ*g@8n!*5q)O0W>qFXy4rdJtsod(Bp>)GJS{)S`mP)8C~IIFd-JF7bEHXFlz}>Y^|_E?htWF zo^fcEC}?bUnspGXwDGI^H0vNkm_VOB zYz~y!@G6Oq|D2uF(RR|!LZ%a$%rwnMJ^S7VN71EEl}RV!FZw!E_SlI9rMRrjc3eyWT)5)^m`2vFFmo{ZLD*@XF%+5Exokg4}<}SM({x zjBRsPO2#1B+w0WmB0V$syEt)9+c_A9Errj#n7j?l4}yu%6U5DUG_$G%3$s" msgstr "%1$s zu %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Du kannst deinen Gravatar auf deiner Profilseite bearbeiten." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Sie sind leider nicht berechtigt, auf diese Seite zuzugreifen." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugins" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Verwende das alte Dashboard von WordPress.com, um deine Website zu verwalten." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Standardstil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Verwende WP-Admin, um deine Website zu verwalten." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Klassischer Stil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Stil der Admin-Benutzeroberfläche" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Plugins entdecken" @@ -72,424 +42,10 @@ msgstr "Erhalte Zugriff auf eine Vielzahl kostenloser und kostenpflichtiger Plug msgid "Flex your site's features with plugins" msgstr "Die Funktionen deiner Website mit Plugins optimieren" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Theme-Übersicht" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Themes entdecken" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Tauche ein in die Welt der WordPress.com-Themes. Entdecke responsive und atemberaubende Designs, die darauf warten, deine Website zum Leben zu erwecken." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Finde das perfekte Theme für deine Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Kurz und bündig deine Leser zum Kommentieren animieren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Blöcke in Kommentaren aktivieren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Benutzern erlauben, WordPress.com- oder Facebook-Konten zum Kommentieren zu verwenden" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Richte dein Kommentarformular mit einem Begrüßungstext und Farbschema ein." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Farbschema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Begrüßungstext" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Blöcke zulassen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Dunkel" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Hell" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparent" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Ihren Shop veröffentlichen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Domain hinzufügen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Ihr Geschäft ausbauen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Umsatzsteuer erheben" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Empfangen Sie Bezahlungen mit WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Ihre Produkte hinzufügen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Ihren Shop anpassen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Sonnenuntergang" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Pulverschnee" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Dämmerung" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Kontrast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Klassisch dunkel" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Klassisch hell" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Klassisch blau" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Aqua" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Übersicht" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Teile „%s“ über Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Um auf die Einstellungen für Tarife, Domains, E-Mails usw. zuzugreifen, klicke in der Seitenleiste auf „Hosting“." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Einstellungen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Geld verdienen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Überwachung" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Konfiguration" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Käufe" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-Mails" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domains" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Add-Ons" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Tarife" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Hosting" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Alle Websites" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Fehler: Bitte versuche erneut, einen Kommentar zu hinterlassen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Fehler: Dein Facebook-Login ist abgelaufen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Antworten abbrechen" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Hinterlasse eine Antwort zu %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Kommentar hinterlassen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Meinen Namen, E-Mail und Website in diesem Browser speichern, bis ich wieder kommentiere." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Kommentar erfolgreich versandt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Abonnieren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Geben Sie Ihre E-Mail-Adresse ein" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Hast du Interesse daran, Updates zu Blogbeiträgen zu erhalten? Klicke einfach auf den Button unten, um nichts mehr zu verpassen!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Lass dir nichts entgehen!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Weiterlesen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Jetzt abonnieren, um weiterzulesen und auf das gesamte Archiv zuzugreifen." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "Entdecke mehr von %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Dein Kommentar wird geladen …" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Mit uns bleibst du auf dem Laufenden!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Optional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Schreibe eine Antwort …" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Abbrechen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Neue Kommentare per E-Mail zusenden" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Neue Beiträge per E-Mail zusenden" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Bei neuen Beiträgen benachrichtigen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Wöchentlich" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Kommentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Antworten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Täglich" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Sofort" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Adresse wird niemals veröffentlicht)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Abmelden" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Über %s angemeldet" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Melde dich an, um einen Kommentar zu schreiben." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Melde dich an, um eine Antwort zu verfassen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Schreibe einen Kommentar. (Anmelden optional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Antworte uns. (Anmelden optional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Website (optional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "E-Mail (-Adresse wird niemals veröffentlicht)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Erhalte Web- und Mobil-Benachrichtigungen über neue Beiträge auf dieser Website." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Melde dich an oder gib deinen Namen und deine E-Mail-Adresse an, um einen Kommentar zu schreiben." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Melde dich an oder gib deinen Namen und deine E-Mail-Adresse an, um uns zu antworten." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Verfasse einen Kommentar..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Erste Schritte" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "WordPress.com bietet ein geführtes Importprogramm zum Importieren von Beiträgen und Kommentaren aus Medium, Substack, Squarespace, Wix und mehr." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "In den %1$sJetpack-Einstellungen%2$s findest du weitere „Schreiben“-Einstellungen, die von Jetpack bereitgestellt werden." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Geplante Updates" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Verifiziere die E-Mail-Adresse für deine Domains" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Website einrichten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Sensei-Einrichtung abschließen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Schließe die Shop-Einrichtung ab" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Ändere das Design deiner Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Aktiviere das Teilen von Beiträgen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Mobil-App installieren" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "Keine Dateien wiederhergestellt." @@ -563,134 +119,6 @@ msgstr "Es wird bereits ein Import ausgeführt." msgid "The backup import has been cancelled." msgstr "Der Backup-Import wurde abgebrochen." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Nächste Schritte für deine Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Füge den Abonnieren-Block zu deiner Website hinzu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Importiere bestehende Abonnenten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Website-Kennzahlen anzeigen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "SSH einrichten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Installiere ein individuelles Plugin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Wählen Sie ein Theme" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Angebot für Unterstützer einrichten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Stripe-Konto verbinden und Zahlungen empfangen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Deine Seite „Über“ hinzufügen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Verwalte deinen zahlungspflichtigen Newsletter-Tarif" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Deine Social Media-Konten verknüpfen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Deine Abonnenten verwalten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "3 Beiträge verfassen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Sichere dir deine ersten 10 Abonnenten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Abonnement-Modal aktivieren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Passe Willkommensnachrichten an" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Mit deinem Newsletter Geld verdienen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Aktualisiere deine „Über“-Seite" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Inhalte migrieren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "E-Mail-Adresse bestätigen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Verhindert, dass neue Beiträge und Seiten erstellt und bestehende Beiträge und Seiten bearbeitet werden, und schließt Kommentare auf der ganzen Website." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Gesperrten Modus aktivieren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Gesperrter Modus" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Um die Inhaberschaft der Website zu übernehmen, muss die von dir bestimmte Person uns unter %s kontaktieren und eine Kopie der Sterbeurkunde einreichen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Wähle jemanden aus, der sich um deine Website kümmert, wenn du stirbst." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Nachlasskontakt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Verbesserte Inhaberschaft" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "Die Option „Jeder kann sich registrieren“ ist derzeit aktiv. Die aktuelle Standardrolle lautet %1$s. %4$s Bitte erwäge, diese Option zu deaktivieren, wenn keine offene Registrierung benötigt wird." @@ -720,149 +148,37 @@ msgstr "Datei ist nicht vorhanden" msgid "Could not determine importer type." msgstr "Konnte Typ des Importprogramms nicht bestimmen" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Website teilen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Eine Seite bearbeiten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Deine Website enthält Premium-Stile. Führe jetzt ein Upgrade durch, um sie zu veröffentlichen und dir unzählige weitere Funktionen zu sichern." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Personalisiere deine Domain" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Eine neue Seite hinzufügen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Generiere Traffic für deine Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Gib deiner Website einen Namen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Sichere dir deine Domain für ein Jahr kostenlos" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Schenken" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Vorschaubild" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "„%s“ über Publicize teilen" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Teilen" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Ein Tarif-Upgrade durchführen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Kostenpflichtigen Newsletter erstellen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Zahlungsmethode einrichten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Wähle eine Domain" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Veröffentliche dein Blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Bearbeite das Website-Design" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Richte deine Website ein" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Gib deinem Blog einen Namen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personalisiere deine Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Lade dein erstes Video hoch" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Richte deine Video-Website ein" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Veröffentliche deine Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Links hinzufügen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personalisiere den Bio-Link" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Wähle ein Design" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Jetzt schreiben" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Verfasse deinen ersten Beitrag" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Abonnenten hinzufügen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Wähle einen Tarif" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personalisiere den Newsletter" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "Die Klasse %1$s konnte nicht geladen werden. Bitte füge das entsprechende Paket mit Composer hinzu und vergewissere dich, dass du den Jetpack Autoloader anforderst." #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Textdomain-Aliase sollten vor dem %1$s-Hook registriert werden. Dieser Hinweis wurde durch die %2$s-Domain ausgelöst." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "Skript „%s“ ist abhängig von wp-i18n, legt aber nicht „textdomain“ fest" @@ -1063,27 +379,27 @@ msgstr "Glück gehabt! Deine Theme-Designer haben für dich bestimmte Schriftart msgid "Uncheck to disable" msgstr "Zum Deaktivieren Häkchen entfernen" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "Spotify-Feed-ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "Apple Podcasts-Feed-ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titel" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Podcast-RSS-Feed" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Auf Spotify anhören" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Mit Apple Podcasts hören" @@ -1095,98 +411,114 @@ msgstr "Zeige Informationen über deinen Podcast an und ermögliche es Besuchern msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "iTunes Kategorie auswählen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Stelle die Podcast-Kategorie ein" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Podcast-Schlagwörter festlegen" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Podcast-Bild einstellen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Löschen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ja" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nein" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Podcast als jugendgefährdend einstellen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Stelle das Podcast-Urheberrecht ein" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Podcast-Zusammenfassung einrichten" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Podcast-Autor einsetzen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Podcast-Untertitel festlegen" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Podcast-Titel einstellen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Dies ist die URL, die du an iTunes oder den Podcast-Dienst übermittelst." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Dein Podcast-Feed: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Podcast-Kategorie auswählen:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Blog-Kategorie für Podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Podcast-Kategorie 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Podcast-Kategorie 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Podcast-Kategorie 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Podcast-Schlagwörter" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Podcast-Bild" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Als nicht jugendfrei markieren" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Podcast-Urheberrecht" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Podcast-Zusammenfassung" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Name des Podcast-Talents" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Podcast-Untertitel" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Podcast-Titel" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Bearbeiten" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Meine Startseite" @@ -1428,31 +758,31 @@ msgstr "Speicherplatzkontingent" msgid "Disk space used" msgstr "Belegter Speicherplatz" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Klicke, um weitere Informationen zu erhalten." -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Elemente von Unterkategorien auf Summe des übergeordneten Elements anrechnen." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Maximale Schrift-Skalierung:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Minimale Schriftgröße in Prozent:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Kategorie-IDs. kommagetrennt" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Ausschließen:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Maximale Anzahl anzuzeigender Kategorien:" @@ -1470,24 +800,14 @@ msgstr "Zeige deine am häufigsten benutzten Kategorien als Wolke an." msgid "Category Cloud" msgstr "Kategoriewolke" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack ist getrennt und Website ist privat. Verbinde Jetpack erneut, um die Einstellungen zur Sichtbarkeit der Website zu verwalten." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Sichtbarkeit aktualisieren" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Website veröffentlichen" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Ausblenden" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Du benutzt aktuell %1$s von %2$s deines Speicherkontingents (%3$s %%)." @@ -1624,47 +944,47 @@ msgstr "Zeige deine neuesten Instagram-Fotos an." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografie" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Überschrift" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Namen nicht anzeigen" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Klein anzeigen" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Mittelgroß anzeigen" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Groß anzeigen" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Extragroß anzeigen" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Deine about.me URL" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Widget-Titel" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "Ab dem 1. Juli 2016 ist das Widget about.me nicht mehr verfügbar. Nach diesem Datum zeigt das Widget einen einfachen Textlink zu deinem about.me-Profil an. Entferne dieses Widget bitte." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Zeige Dein about.me-Profil mit Vorschaubild" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Angeforderte Daten können nicht abgerufen werden." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Erstelle eine kostenlose Website oder Blog – auf WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Erstelle kostenlos eine Homepage bei WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Bereitgestellt von WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Bloggen auf WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Speichern" msgid "Activate & Save" msgstr "Aktivieren und speichern" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Verwalte deine Einstellungen zur Sichtbarkeit deiner Website" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "Dieses Plugin wurde von WordPress.com installiert und stellt Features bereit, die in Ihrem Tarif inkludiert sind." @@ -1898,8 +1209,7 @@ msgstr "Telefon" msgid "Email" msgstr "E-Mail" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Name" @@ -1913,27 +1223,27 @@ msgstr "Reservierungsanfrage" msgid "Reservations" msgstr "Reservierungen" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Zeige Kommentare von:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Texthintergrundfarbe:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Avatar-Hintergrundfarbe:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Keine Avatare" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(höchstens 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Anzahl der Kommentare, die angezeigt werden:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Neueste Kommentare" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Dir gefallen noch keine Beiträge. Sobald dir welche gefallen, wird dieses Beiträge, die mir gefallen-Widget sie anzeigen." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr " - " #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s auf %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Anzuzeigende Likes des Autoren:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Grid" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Liste" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Anzeigen als:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Anzahl der angezeigten Beiträge (1 bis 15):" @@ -2019,62 +1329,62 @@ msgstr "Ich habe gewählt" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Zeigen Sie Ihren Lesern mit einem \"Ich habe gewählt\" Sticker, dass Sie gewählt haben." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Text angezeigt nach dem Gravatar. Das ist freiwillig und kann dazu benutzt werden, dich selbst oder worum es in deinem Blog geht zu beschreiben. " -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar-Link. Dies ist eine optionale URL, die benutzt wird, wenn jemand deinen Gravatar anklickt:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar-Ausrichtung:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Größe:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Individuelle E-Mail-Adresse:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Wähle einen Benutzer oder wähle „individuell“ und gib eine individuelle E-Mail-Adresse ein." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Center" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Rechts" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Links" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Keine" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra groß (256 Pixel)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Groß (128 Pixel) " -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Medium (96 Pixel)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Klein (64 Pixel)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Füge ein Gravatar-Bild hinzu." -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Wähle ein Bild, das in deiner Seitenleiste angezeigt werden soll:" @@ -2103,28 +1413,28 @@ msgstr "Druckfrisch" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Zeige einen Freshly Pressed-Badge in deiner Seitenleiste an" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Avatar-Größe (in px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Alle Autoren anzeigen (auch jene, die noch keine Beiträge verfasst haben)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titel:" @@ -2140,12 +1450,12 @@ msgstr "Zeigt ein Raster von Autoren-Avatar-Bildern." msgid "Author Grid" msgstr "Autoren-Gitter" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Private Website" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Diese Website ist privat." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-dv.mo b/projects/plugins/wpcomsh/languages/wpcomsh-dv.mo index e67e4f78b76523de0e3e7312139965c582a42e7d..69ba3e7c0bdfa75eed7a8395312e7ebc3dd2823d 100644 GIT binary patch delta 480 zcmXw#yGz7C5Qq1Y+(pgB7lIE|w6d_b_0fu_e}Ii}0WCBjSEx-OR|sMugzH2*uTWIb z(n>)D!NyKu5kauBvAWK0a^t}4_nY6oX15i5`ibrL8iwd4N6BMyP;`NT*ntah7na~1 z^xy+5!Y8d?bpBQSH}yZD!@4i^zt#U~*NOQ>$iXe8tahn=*oPOuPU$W&spvL4ssY}y^US#l=} o;gP+tslB$DJ+t-f(OVu)Q8qo+Z<{tXe}IEWyZ`_I literal 1529 zcmY+CO>9(E6vvNJMF$l5Q1CO?1qNeZnVHl;UQ-h-12mb!NDIhHZ{NGTdGhAH$$f7I zyCJ4iZLzkgscc-iF#QG_7la)f6Ey z{{VNv{?pnIK(6y2$aS`FBf^n(g3p1wK(2QHX1N zes*KGkHP0*dq{o>Y=AF~t2SzZA5z&~#77RYf|K<>L}{XbfJ6?_5yo8STPSCHfHgS_wGAb&F6p#Wv!z4?yg zSa|>aQ0~jJ7s@qRUW4-g0M~vfuj23ubO-ch>*U$^yX=OdWiI?4{FW^IO?ht?JPFZ< zzAs{RS){G;RAu5&pq0ARE4&FEMp5YX3SYHlECZ>-UeOL!7R!c8)w?}$;&gLpNXDLu zXh_AG(lnGri58C=n5i$a!_7#B@qqB^Qseyw&yF2;j&8+i8K)POb}F%#_+cEl;^=so z6)?A!k#juJjnox!GdI)0@_^_b2V?Q}pePL#K5SR;fiq0}r~ z9kW7a3g#>ncbti<>m0+G8+p0B-8be2!q?1R%LDLB64+K)972wOH^ zA%|z{bgOb3^qfQdJO<=Zrg6K-Lr%iLihNk_9;VS_2Hp;SS2*xdYcki6&I`}uru#6+ z?Bw+}u@6EQ%ys0!yO8%^!*Hul7;g71W-;cMNW2PtH0lhNpR(`GZ<%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "ޕްލަގިންސް" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "ކުލައިގެ ސްކީމް" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "އަނދިރި" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "އަލި" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "އޯވަރވިއު" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "ޚިޔާލު ފާޅުކުރޭ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "ވެބްސައިޓް" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "ކެންސަލް" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "ޚިޔާލު" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "ރައްދު" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "ލޮގްއައުޓް" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "ސުރުޚީ" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "އާނ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "ނޫން" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "ބަދަލުގެނޭ" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "ފޮޓޯ" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "ސޭވް" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "އީމެއިލް" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "ނަން" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "ސެންޓަރ" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "ސުރުޚީ:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-el-po.mo b/projects/plugins/wpcomsh/languages/wpcomsh-el-po.mo index 1b9b502cfabfc63990533a917e85f8a7b1444e23..f301937041698b32ed265019e5fc69adf5558d05 100644 GIT binary patch delta 5449 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 SvQ56UV7A{z1>bKdbo~cn{2>1T literal 31518 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 ZcCK~-RUM70!L@=X!BoOL!oQpF{{TUqnD+nx diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-el-po.po b/projects/plugins/wpcomsh/languages/wpcomsh-el-po.po index b39e9fcf2ba63..9fe337bba3190 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-el-po.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-el-po.po @@ -21,44 +21,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Προώθηση" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Πρόσθετα προγράμματα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Ἐξερευνῆστε τὰ πρόσθετα" @@ -71,424 +41,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Προθήκη θεμάτων" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Ἐνεργοποιῆστε ἑνότητες στὰ σχόλια" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Ἐπιτρέψτε σὲ ἐπισκέπτες νὰ χρησιμοποιοῦν λογαριασμὸ σὲ WordPress.com ἢ Facebook γιὰ νὰ σχολιάσουν" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Συνδυασμὸς χρωμάτων" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Κείμενο χαιρετισμοῦ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Ἐπιτρέψτε ἑνότητες" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Σκοῦρο" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Ἀνοικτό" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Προσθέστε ἕναν τομέα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Ἐξατομικεῦστε τὸ κατάστημά σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Ἡλιοβασίλεμα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Φρέσκο χιόνι" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Nightfall" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Ἀντίθεση" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Κλασσικὸ σκοῦρο" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Κλασσικὸ λαμπερό" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Κλασσικὸ γαλάζιο" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Ὑδάτινο" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Ἀνασκόπηση" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Μοιρασθῆτε τὸ “%s” μέσῳ τοῦ Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Ρυθμίσεις" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Κερδίστε χρήματα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Ρυθμίσεις" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Ἀγορές" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Ἠλ. μηνύματα:" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Τομεῖς (domains)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Ἐπεκτάσεις" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Πακέτα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Ὅλα τὰ ἱστολόγια" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Σφάλμα: παρακαλοῦμε δοκιμάστε νὰ ξανασχολιάσετε." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Σφάλμα: ἔχει λήξει τὸ δικαίωμα εἰσόδου σας στὸ Facebook." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Ἀκυρῶστε τὴν ἀπάντηση" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Ἀπαντῆστε στὸν/τὴν %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Σχολιάστε" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Ἀποθηκεῦστε τὸ ὄνομά μου, τὴν ἠλ. μου διεύθυνση καὶ τὸν ἱστότοπό μου σ' αὐτὸν τὸν φυλλομετρητὴ γιὰ τὴν ἑπόμενη φορὰ ποὺ θὰ σχολιάσω." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Ἐγγραφῆτε" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Εἰσαγάγετε τὴν ἠλεκτρονική σας διεύθυνση" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Συνεχίστε νὰ διαβάζετε" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Ἐγγραφῆτε τώρα γιὰ νὰ συνεχίσετε νὰ διαβάζεται καὶ νὰ ἀποκτήσετε πρόσβαση στὸ πλῆρες ἀρχεῖο." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "Ἀνακαλύψτε περισσότερα ἀπὸ τὸ %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Προαιρετικό" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Ἱστοχῶρος" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Ἀκύρωση" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Στεῖλτε μου νέα σχόλια μέσῳ ἠλ. ταχυδρομείου" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Στεῖλτε μου τὰ νέα ἄρθρα μὲ μήνυμα ἠλ. ταχυδρομείου" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Εἰδοποιῆστε με γιὰ νέα ἄρθρα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Ἑβδομαδιαίως" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "Τὸ WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Σχόλιο" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Ἀπάντηση" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Καθημερινῶς" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Ἀμέσως" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Ἡ διεύθυνση δὲν δημοσιοποιεῖται ποτέ)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Ἀποσυνδεθῆτε" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Ἀφῆστε ἀπάντηση. (ἡ σύνδεση εἶναι προαιρετική)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Ἱστοχῶρος (προαιρετικό)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "Ἠλ. διεύθυνση (ἡ διεύθυνση δὲν δημοσιοποιεῖται ποτέ)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Συνδεθῆτε ἢ δῶστε τὸ ὄνομα καὶ τὴν ἠλ. σας διεύθυνση ὥστε νὰ ἀφήσετε ἀπάντηση." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Σχολιάστε..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Ξεκινῆστε" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Ἐπαληθεῦστε τὴν ἠλ. διεύθυνση γιὰ τοὺς τομεῖς σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Ἐγκατάσταση ἱστοτόπου" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Τελειῶστε τὴν δημιουργία τοῦ καταστήματος" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Ἐνεργοποιῆστε τὸν διαμοιρασμὸ ἄρθρων." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Ἐγκαταστῆστε τὴν ἐφαρμογὴ γιὰ κινητά" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -562,134 +118,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Τὰ ἑπόμενα βήματα τοῦ ἱστοτόπου σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Ἐπιλέξτε θέμα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Ὑλοποιῆστε μιὰ προσφορὰ γιὰ τοὺς ὑποστηρικτές σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Συνδέστε λογαριασμὸ Stripe γιὰ νὰ συλλέγετε πληρωμές" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Διαχειρισθῆτε τὸ ἐπὶ πληρωμῇ πακέτο Newsletter (δελτίου τύπου)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Συνδέστε τοὺς λογαριασμοὺς σας τῶν κοινωνικῶν μέσων" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Διαχειρισθῆτε τοὺς συνδρομητές σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Γράψτε 3 ἄρθρα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Ἀποκτῆστε τοὺς πρώτους 10 συνδρομητές σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Ἐξατομικεῦστε τὸ μήνυμα καλωσορίσματος" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Κερδίστε χρήματα μὲ τὸ δελτίο εἰδήσεών σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Ἐνημερῶστε τὴν περὶ ὑμῶν σελίδα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -719,149 +147,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Ἐπεξἐργασθῆτε σελίδα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Ὁ ἱστότοπός σας περιέχει ὕφη ἰδιαίτερης ποιότητας. Ἀναβαθμίστε τώρα ὥστε νὰ τὰ δημοσιεύσετε καὶ νὰ ξεκλειδώσετε πλῆθος ἄλλων δυνατοτήτων." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Προσθέστε νέα σελίδα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Προσελκύστε ἐπισκέπτες στὸν ἱστότοπό σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Δῶστε ὄνομα στὸν ἱστότοπό σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Μικρογραφία" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Μοιρασθῆτε" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Ἀναβαθμίστε πακέτο" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Δημιουργῆστε ἕνα δελτίο τύπου ἐπὶ πληρωμῇ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Ὁρίστε μέθοδο πληρωμῆς" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Ἐπιλέξτε τομέα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Ξςκινῆστε τὸ ἱστολόγιό σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Ἐπεξεργασθῆτε τὸν σχεδιασμὸ τοῦ ἱστοτόπου" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Κατασκευάστε τὸν ἱστότοπό σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Ὀνομάστε τὸ ἱστολόγιό σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Δῶστε προσωπικότητα στὸν ἱστότοπό σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Ξεκινῆστε τὸν ἱστότοπό σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Προσθέστε συνδέσμους" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Ἐπιλέξτε σχεδιασμό" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Ἀρχίστε νὰ γράφετε" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Γράψτε τὸ πρῶτο σας ἄρθρο" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Προσθέστε συνδρομητές" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Ἐπιλέξτε πακέτο" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Ἐξατομικεῦστε τὸ δελτίο τύπου" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1062,27 +378,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "ID ροῆς Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "ID ροῆς Apple Podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Τίτλος" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Ροὴ ραδιοφωνικῶν μεταδόσεων RSS" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Ἀκοῦστε στὸ Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Ἀκοῦστε στὸ Apple Podcasts" @@ -1094,98 +410,114 @@ msgstr "" msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Ἐπιλέξτε κατηγορία iTunes: " -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Ὁρίστε κατηγορία διαδικτυακῆς ραδιοφωνικῆς μετάδοσης" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Ὁρίστε λέξεις-κλειδιὰ διαδικτυακῆς ραδιοφωνικῆς μετάδοσης" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Ὁρίστε εἰκόνα διαδικτυακῆς ραδιοφωνικῆς μετάδοσης" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Καθαρίστε" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ναί" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ὄχι" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Ὁρίστε πνευματικὰ δικαιώματα διαδικτυακῆς ραδιοφωνικῆς μετάδοσης" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Ὁρίστε περίληψη διαδικτυακῆς ραδιοφωνικῆς μετάδοσης" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Ὁρίστε συγγραφέα διαδικτυακῆς ραδιοφωνικῆς μετάδοσης" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Ὁρίστε ὑπότιτλο διαδικτυακῆς ραδιοφωνικῆς μετάδοσης" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Ὁρίστε τίτλο διαδικτυακῆς ραδιοφωνικῆς μετάδοσης" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Ἡ URL ποὺ ὑποβάλλετε στὴν ὑπηρεσία iTunes ἢ τὴν ὑπηρεσία διαδικτυακῶν ραδιοφωνικῶν μεταδόσεων." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Ἡ ροὴ τῶν διαδικτυακῶν ραδιοφωνικῶν μεταδόσεών σας: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Ἐπιλέξτε κατηγορία podcast:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Κατηγορία 3 διαδικτυακῆς ραδιοφωνικῆς μεταδόσεως" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Κατηγορία 2 διαδικτυακῆς ραδιοφωνικῆς μεταδόσεως" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Κατηγορία 1 διαδικτυακῆς ραδιοφωνικῆς μεταδόσεως" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Λέξεις-κλειδιά διαδικτυακῆς ραδιοφωνικῆς μεταδόσεως" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Εἰκόνα διαδικτυακῆς ραδιοφωνικῆς μεταδόσεως" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Πνευματικὰ δικαιώματα διαδικτυακῆς ραδιοφωνικῆς μεταδόσεως" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Περίληψη διαδικτυακῆς ραδιοφωνικῆς μεταδόσεως" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Ὄνομα ταλέντου διαδικτυακῆς ραδιοφωνικῆς μετάδοσης" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Ὑπότιτλος διαδικτυακῆς ραδιοφωνικῆς μεταδόσεως" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Τίτλος διαδικτυακῆς ραδιοφωνικῆς μεταδόσεως" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "Ἐπεξεργασία" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Ἡ ἀρχική μου σελίδα" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Μέγιστο ποσοστὸ γραμματοσειρᾶς:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Ἐλάχιστο ποσοστὸ γραμματοσειρᾶς:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "ID κατηγοριῶν χωρισμένα ἀπὸ κόμματα" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Ἀποκλεῖστε:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Μέγιστος ἀριθμὸς κατηγορικῶν ποὺ θὰ ἐμφανίζετε:" @@ -1469,24 +799,14 @@ msgstr "Οἱ πλέον χρησιμοποιούμενες κατηγορίες msgid "Category Cloud" msgstr "Νέφος κατηγοριῶν" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Ὁρατότης ἐνημερώσεων" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Ἀγνοῆστε το" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Αὐτὴν τὴν στιγμὴ χρησιμοποιεῖτε %1$s ἀπὸ %2$s ποὺ μπορεῖτε νὰ ἀνεβάσετε (%3$s%%)." @@ -1623,47 +943,47 @@ msgstr "Προβάλετε τὶς τελευταῖες φωτογραφίες msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Βιογραφία" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Ἐπικεφαλίδα" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Φωτογραφία" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Μὴν προβάλλετε ὄνομα" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Ἡ URL τῆς περὶ ὑμῶν σελίδας" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Τίτλος προσθήκης" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Ἐμφανίστε μὲ μικρογραφία τὰ στοιχεῖα τοῦ προφίλ σας" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Δημιουργῆστε δωρεὰν ἱστότοπο ἢ ἱστολόγιο στὸ WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Δημιουργῆστε στὸ WordPress.com δωρεὰν ἱστοσελίδα" @@ -1702,8 +1017,8 @@ msgstr "Λειτουργεῖ μὲ τὴν βοήθεια τοῦ WordPress.com #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Ἱστολογῆστε στὸ WordPress.com " @@ -1780,10 +1095,6 @@ msgstr "Ἀποθήκευση" msgid "Activate & Save" msgstr "Ἐνεργοποιῆστε & Ἀποθηκεῦστε" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "Τηλέφωνο" msgid "Email" msgstr "Ἠλ. διεύθυνση" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Ὄνομα" @@ -1912,27 +1222,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Προβάλετε σχόλια ἀπό:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Χρῶμα φόντου κειμένου:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Χρῶμα ὑποβάθρου τοῦ ἄβαταρ:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Χωρὶς ἄβαταρ" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(κατὰ μέγιστον 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Ἀριθμὸς σχολίων πρὸς ἐμφάνισιν:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "Πρόσφατα Σχόλια" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Δὲν ἔχετε προσφάτως δηλώσει ὅτι σᾶς ἀρέσουν κάποια ἄρθρα. Μόλις τὸ κάνετε, ἡ προσθήκη \"Ἄρθρα ποὺ μ' ἀρέσουν\" θὰ τὰ ἐμφανίσει." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "στὶς " #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s ἀπὸ τὸ ἱστολόγιο %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Νὰ ἐμφανίζονται οἱ δηλώσεις ἀρεσκείας τοῦ συγγραφέως" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Πλέγμα" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Κατάλογος" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Προβάλετε ὡς:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Τὸ κείμενο ποὺ θὰ προβάλλεται μετὰ τὸ γκράβαταρ. Εἶναι προαιρετικὸ καὶ μπορεῖ νὰ χρησιμεύσει ὠς περιγραφὴ δική σας ἢ τοῦ ἱστολογίου σας." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Σύνδεσμος γκράβαταρ. Μιὰ προαιρετικὴ URL ποὺ θὰ ἐνεργοποιηθεῖ ὅταν κάποιος πατήσει πάνω στὸ γκράβατάρ σας." -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Εὐθυγράμμιση γκράβαταρ:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Μέγεθος:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Δική σας ἠλεκτρονικὴ διεύθυνση:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Διαλέξτε χρήστη ἢ ἐπιλέξτε \"Ἄλλο\" καὶ δῶστε μιὰ δική σας ἠλεκτρονικὴ διεύθυνση." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Κέντρο" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Δεξιά" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Ἀριστερά" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Τίποτα" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Πολὺ μεγάλο (256 pixels)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Μεγάλο (128 pixels)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Μεσαῖο (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Μικρό (64 pixels)" @@ -2090,7 +1400,7 @@ msgstr "Γκράβαταρ" msgid "Insert a Gravatar image" msgstr "Εἰσαγάγετε εἰκόνα γκράβαταρ" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Ἐπιλέξτε εἰκόνα πρὸς ἐμφάνισιν στὴν πλαϊνή σας στήλη:" @@ -2102,28 +1412,28 @@ msgstr "Νέες ἀναρτήσεις" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Μέγεθος ἄβαταρ (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Προβάλετε ὅλους τοὺς χρῆστες (μαζὶ κι ἐκείνους ποὺ δὲν ἔχουν γράψει τίποτε)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Τίτλος:" @@ -2139,12 +1449,12 @@ msgstr "Προβάλετε ἕναν κάνναβο μὲ εἰκόνες-ἄβ msgid "Author Grid" msgstr "Κάνναβος συγγραφέων" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Ἰδιωτικό ἱστολόγιο." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-el.mo b/projects/plugins/wpcomsh/languages/wpcomsh-el.mo index 294b3f146e5da2eb9f27de45f33d2e05307a9edf..54b02d8ed5597c9e6f8d62349316dc167e35de7a 100644 GIT binary patch delta 5065 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 delta 8444 zcmZvg33yc1*~d@95_SXvVKZC`j(|>;( z!V6#kGKX0P)$akHTc8^msL1Vw8dnboK*xW7T4a5bL0p=^OsIifp*-mW<>64+8eRsq zE90Rio(+4$VweZ-fO6yj%!DbZc|U@R*r!nQeF@vcZ(%~AXo1^$kqI?Hcc=x2Kv_P< zuTO&7yE$+$EQ1B`At-}S`0u}f7WE(DK-hzX$%Tbb>qMapxTPEM*MxV{APXOYGH8p> z8YmC;LWTG+Bx>eQa5Q`uPKMpc+&-`rDl&IN^?L|vp}kP^ya2Uc3gWzZzdP}l<)>)S zz$WJ#(*d@Db6^fsB&whcTnE+9_W2;x0$cs}`=L%j9n@C7=eK_f`%(YWuXoAz49`wb zkY^F7yLOVTl@qI>47vv@NvJ)q^XpH;#?&3Z{yNlYcn_AtZ{R=} z>}^a5+yI-vZ{ZO51H1`d$mMVuTo2{&QK_hyuz~?k*;McGz{0_?UpWqbOqOUjL z2B>753o~F8%Hvz0Jh}sFYaWD}=XX$BSql}pr=Z5Y=D&YC;deOh^9v};zK5EqNk4DT zI{54j<-u^+2u^|lI1MV2d*D^@W2lG>= zz}wsQuw5E=095h}CEnWetKo%kI@I`;Q1{0@a0YxFR>B|Q1bFix9d=`$h6L3Vd-w?b{jvrt+3GTaD{`|p?FrWU#n%Ajqq4Ll56z?UEg!2B7q{pK{(JQrZC z?u&fLR1aE;-gRtyb8H0%m+TxFXBj2?*&=IEQ76J(&rJV zd5%JD!U!@KdP%i}Sr3Zw>54{Rub*9)+`En@hY?5W0l;TQn@9p)K416@e`<7w&|e z;G0k%m(QT~w#lVl$ooMh*(@kSUWeDfzQes!QV!+FO31F6ZBSS7+fcdj?Qr7HoF;pO z7l9eD8TF7~k3wzH3djL4O)m2cya*~{qy736C_`_A3ULKgQm=%rBT$aL39-?ffa=#R zF_NP}VIWkJZG|#uH`D~5!RD|d-%f2+52!3JftoM^yTDta#@_=ixD_e~o`qWIl>ffP zXm5NMSV()K7X=Mm1hscnFb{5o9pTduW6j%8=eE=3UQ&&Q3TYf_+*T-q4#J7>IjH^} z$9M~lf=cpn@Lsq8c2jWEukfzQY^adtLV0>A)P%o=^572G13myPcnEff@4{j56x5#P zUFmJbbST40p~hGH^$k$-J`St3xw|Rsq9K2**YOjWLH#t;0_j*I_V76pa)iw+s0G%* zu5dGy$A|p(523c|JIKK>jkuRJ&u}OMX2A1V-xO0A2&ds0Gc{ z-YMt^wcv302N-~zVb5zwKsXXAX?H=*e+;sVrsX)#kZWN=md~RQflK`tU&E=?+m84C z%~k|u$YyvwOu}5)>{@T4JeW;=0_+VJK;_VSsAGKuYU^I{>tDeZ)cG(Z++)*{FGPrX z4wQ#$p*(p6Dr5(tBJ&pP08hex@L%wG*t^in_AlWl)N{zdX0X+D-hI#!uA)8%#^J|M zhR&Wu{B>@tCwU9r2X$B1`mBdKUPobb_;<*yYW@M+z}(4Rt_*{1sgHyfEQIP;1{JwS z;2^jgYHLsU?M)I>yahT#c{ar7)ldu0hBBxGD#TG}!Syf??t)F>akvSdgtOr?_U{RJ z3~qs|rg#BvIn;C|Q&Zid>c?SA`FC{N#jX|N2nM66@}gx*JbuJ&O5 z3TyrHMesgEklp7)e&0iX^Qz|IhF9`L89N{S8NG`d9xg8Pe}3h^;7v$bJOk;1`Uw$D z_j2K+xzEe|a#-BYcW>l$Bz>d>R;@96hP+fs`3I1Pn`R9-;;gXSVVZ+bBMdNZ)4+bJof^U;fFHPTava?#g_i`i^IhmfArXd5~Y z^+lN|iF%=(=mc7UevR~uLzf|4^j{)9SsoJRItmf=B>EkC3SEnSg}y_2?)P9$`TQrG zik?UN(I9jW(lZaOL>b6JYfw9+=NNheHAW**c|$JlqM~!5XQ&7FcaLArfv=*6P&4!q znuJawJ%2#M-IDiDo1kAl?lS;CK{|_F(K_@tN;RB?cc|#8K_8$H(m8t_>B`gdg$HxQ z=l5_dn&8)k$I-vgr)Un^h|2yPP;B$uP7;r24gWR99$fX zT4jNfpjBQ`R2nMoXUE&k8a6k$#3~NNi|1EbOCr&dm=%v$Ws!JjaUdSFDkBw9D;i`> z)O}GLDJu(xATfLZ0Gm3Fwp;-*$yQ`qlx7&$8ti-n4r zQl|~M(P$((!h3mjpg33*i7d2ABlALGYknYR1#d17MS~^wu};_J1mlE0RN_T zP^o>1nQM3xiwB}{yKh!iOF!7x2XBriw`O%uv&M&cNuUWBn_Lts4O)Tna^p6KeEXx$m*x~k=2?-7xS5FimS-s074jO~ z?Y0MYd9ih%%nw-+KH1-NIni@cxndqDHIvB9#i8I5GkJa_9Mo?-VkVac2;K3n$D5W` z5QCU~q}u|!u=}r?O|FO*6Of?2t$SW0<-i-=3&&e!l~$M~23l@h2f7)yBv=$9r7R*C zpC5`@MbXHT81W}F-4KKcj1>=I*!Tv2^XzWte{K)S?v@dZD^p|kgzUebH?5*5RvZl# z1#(>dJ~(D9p(-Gd(k4a3SV) z&gpfnnaNq3taF)1pwF#Y1T8j7I6s-FA44 z)n>P|&pDi0n_A`^aBB1H3AwiYRGZNveZIxz?hoHdXD^ zItOX1b9OLz4f-r_MMJ zI6G6zk}u}AP0OO!cDK7Gr{7Lzx2pDYy+-ijM;bQxWr?9-=N+Tis}d8d|OqJ73Wr)n{M zl~aRB%bk6CpIVw6)HfronX@0eG0D#9S2_KVjNq+|TZ^Yey`BMkv^%M_#@U1)`{`4y z%H#jx&02S7{?i>I{aC-Avwsd+y>T9)(|#6Zk2H5`sUfHe!yfjMMlGon&@QlI9d;)% z;EZ2#Vka}~kt6mq{oa~RL5bw%U&Clpjkr@IFWkuvJ2k|cCf4&jA!C`OTJAYD7;&z@ z_LKd)+B^IIvh{j0k5o{{)aqo@0XL;*6hyr1H8|*=sT&#X&xDQc*0Pdwx6+O3PN&v5 zn_c^q=(RMiBcqtDCbgRPUbcI8hi{*KYS61!J(^mHWGJoTpT@pUZplTA9Kd0!DP*1*_<>&)>i8I!el8ce1l@bmw74oH?2r zX)hl9aQ{u3MVu&&hj*k)SzsgWZBs zjIRnqT+?NjHb$oh=kR8g&Ypjv@K#%yvS$pLok3FQ?y$EExx9T1V-7M>dtWDSt>k+{ zqG{Qhf~@=5-+D`5Ab*#W6NY`BX4ekx*wHu}na#cC2x66YLhbzg{>_y!+qJHJ;mDli zZTXpL=V1Wnk3`l1(3|y_JYgp;-P>|KE7xNQ8)^?7KC!JVJnO{Uw+*jJ>~QT|!DxTK zQ)^vEbv7`S>+{T4jGpeT03pFk~0a%gEY8ydpi5$3~YnZo|3ISA*%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Μάρκετινγκ " - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Λυπάμαι, δεν σας επιτρέπεται η πρόσβαση σε αυτή τη σελίδα." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Πρόσθετα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Κάτι έξυπνο για να παρακινήσετε τους επισκέπτες σας να σχολιάσουν" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Προσαρμόστε την φόρμα για τα Σχόλια με ένα έξυπνο μήνυμα και χρωματικό συνδυασμό." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Χρωματικός συνδυασμός" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Κείμενο καλωσόρισματος" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Σκοτεινό" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Ανοιχτό" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Διάφανο" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Δεχθείτε πληρωμές με το WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Προσαρμόστε το κατάστημά σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Ηλιοβασίλεμα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Αντίθεση" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Κλασσικό Σκοτεινό" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Υδάτινο" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Επισκόπηση" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Ρυθμίσεις" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Ρυθμίσεις" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Αγορές" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Ενημερωτικά Δελτία" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domains" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Πακέτα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Όλοι οι ιστότοποι" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Σφάλμα. Η σύνδεση με το Facebook έχει λήξει." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Ακύρωση απάντησης" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Αφήστε απάντηση στον/στην %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Αφήστε ένα σχόλιο" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Αποθήκευσε το όνομά μου, email, και τον ιστότοπο μου σε αυτόν τον πλοηγό για την επόμενη φορά που θα σχολιάσω." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Εγγραφείτε" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Παρακαλώ γράψτε το email σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Συνεχίστε την ανάγνωση" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Προαιρετικό" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Ιστότοπος" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Ακύρωση" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Κάθε εβδομάδα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Σχόλιο" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Απάντηση" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Καθημερινά" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Άμεσα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "Δεν θα εμφανιστεί δημόσια." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Αποσύνδεση" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Γράψτε ένα σχόλιο" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Ξεκινήστε" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Εγκαταστήστε την εφαρμογή για κινητά" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Επιλέξτε θέμα" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Προσθήκη νέας σελίδας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Μικρογραφία" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Αναβαθμίστε το πλάνο σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Ονομάστε το blog σας" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Γράψτε το πρώτο σας άρθρο" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Τίτλος:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Επιλογή κατηγορίας iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Κατηγορία podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Λέξεις κλειδιά podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Φωτογραφία podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Καθαρό" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ναι" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Οχι" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Χαρακτηρισμός podcast ως ακατάλληλου" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Πληκτρολογήστε στοιχεία πνευματικών δικαιωμάτων για το podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Πληκτρολογήστε σύντομη περιγραφή για το podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Δημιουργός podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Πληκτρολογήστε τον υπότιτλο του podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Πληκτρολογήστε τον τίτλο του podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Η διεύθυνση URL που χρησιμοποιείτε στο iTunes ή άλλη υπηρεσία podcasting." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Ροή podcast: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Επιλογή κατηγορίας podcast:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Κατηγορία podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Κατηγορία podcast 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Κατηγορία podcast 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Κατηγορία podcast 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Λέξεις κλειδιά για podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Εικόνα podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Επισήμανση ως ακατάλληλο" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Πνευματικά δικαιώματα podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Περιγραφή podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Όνομα δημιουργού podcast" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Υπότιτλος podcast" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Τίτλος podcast" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Αλλαγή" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Μέγιστο μέγεθος γραμματοσειράς:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Ελάχιστο ποσοστό μεγέθους γραμματοσειράς" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Αναγνωριστικά ID Κατηγοριών, διαχωρίζονται με κόμμα" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Εξαιρέσεις:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Μέγιστος αριθμός κατηγοριών:" @@ -1470,24 +800,14 @@ msgstr "Δημοφιλέστερες κατηγορίες." msgid "Category Cloud" msgstr "Πλήθος κατηγοριών" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Απόρριψη" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Χρησιμοποιείτε %1$s από τα %2$s που είναι το όριο μεταφορτώσεων (%3$s%%). " @@ -1624,47 +944,47 @@ msgstr "Εμφανίστε πρόσφατες φωτογραφίες σας απ msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Βιογραφία" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Τίτλος" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Φωτογραφία" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Μη χρήση ονόματος" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Προβολή μικρών" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Προβολή μεσαίων" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Προβολή Large" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Προβολή X-Large" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Διεύθυνση URL για about.me" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Τίτλος widget" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Προβολή προφίλ about.me με μικρογραφία" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Δημιουργήστε ένα δωρεάν ιστότοπο ή ιστολόγιο στο WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Φτιάξε δωρεάν site στο WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog στο WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Αποθήκευση" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Τηλέφωνο" msgid "Email" msgstr "Ηλ. διεύθυνση" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Όνομα" @@ -1913,27 +1223,27 @@ msgstr "Μήνυμα για κράτηση" msgid "Reservations" msgstr "Κρατήσεις" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Προβολή σχόλιων από:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Χρώμα φόντου κειμένου:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Χρώμα φόντου avatar" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Χωρίς avatars" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(μέχρι 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Αριθμός σχολίων για προβολή:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Πρόσφατα σχόλια" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "στο" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s στο %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Προβολή Likes Συντάκτη:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Πλέγμα" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Λίστα" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Προβολή ως:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Το κείμενο εμφανίζεται προαιρετικά κάτω από το Gravatar. Μπορείτε να το χρησιμοποιήσετε για σύντομες περιγραφές." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Σύνδεσμος Gravatar. Προαιρετικός σύνδεσμος για χρήση στο Gravatar προφίλ σας:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Θέση Gravatar:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Μέγεθος:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Επιβεβαίωση διεύθυνσης email:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Επιλέξτε χρήστη ή την επιλογή \"προσαρμογή\" για νέα διεύθυνση email." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Κέντρο" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Δεξιά" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Αριστερά" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Κανένα" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Πολύ μεγάλο (256 pixels)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Μεγάλα (128 pixels)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Μέσο (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Μικρά (64 pixels)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Προσθήκη εικόνας Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Επιλέξτε φωτογραφία για την πλευρική στήλη:" @@ -2103,28 +1413,28 @@ msgstr "Νέα και ενδιαφέροντα" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Εμφάνιση σήματος Freshly Pressed στην πλευρική στήλη" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Μέγεθος avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Προβάλετε όλους τους συγγραφείς (μαζί κι αυτούς που δεν έχουν γράψει τίποτε)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Τίτλος:" @@ -2140,12 +1450,12 @@ msgstr "Προβολή εικόνων προφίλ σε στοίχιση πλέ msgid "Author Grid" msgstr "Στοίχιση Πλέγματος" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Το site είναι ιδιωτικό." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-en_GB.mo b/projects/plugins/wpcomsh/languages/wpcomsh-en_GB.mo index 2d0da6cf4877326c04be4e08481a4d1c18eb0e2f..9e131d11de4e1babc5b669e1873a6ad666f32666 100644 GIT binary patch delta 4995 zcmZA33v^9a9>?*02@*;~$wP#MgybefsE9|niC37YSG1&|F=+jY{0eA3XEB#$v0n`+dU_!h>5VgfcsFD7CSd;$wG8K+|uzJ~4a zAg16Y?1ulw7)*N7m~iZm{PUX;e70g>GUnnEY=);X46k4a)?g;yz(yF+(wHU~gRL*^7>NsVn^R2`j&TqESsL#L+)QM{`0sn;*!-TW9j6_{=9I7H-OvUbY z{CR9Ze->&&^H38kM^#`ucEpdc3x0zsoZqyMba%{0#>_a>mCQ!Xe4%wYHmAQHRl=R9 z{STp5>n!R5s%^g(wci~~$A>r&(^w}>tQ7s)p^Qd6mSY+o!6dwiT3ZiwWciF2wSP9M zl*3UI9BnN^RbU$S!&x{I51}gd5cy{sa3kn=ZDXjv{vd+^T|rOO2?nA5U@WrSW+G0& zd8iX#wcpoRYf%UMyZ!!qjHCYubu-4X9$LC=)ZY)o6dci-`fFeb11kA4)Qs1l*8DoE zP?gw&+W!n{qW%jsRPrmR6W&D5 zX}-qx*qAzMyfbR4eAdA@f_^?GdyLtI>+xb+ZeSc4Z_FmXuS{?!oW;R(0fSH%FcCS0 z-^`?;39Lny%WOlf`BBu4AEHkDF>2uTNu8DhI)#sL~!nmFgxA!hGtLhZU&G+(ez& z*O{xu(O3`5tjkery$U0^87nZ9{{Aj*1r8&tU`}+Q{+i+E49I_?p7ZZek4reSp%^9| zyW@D&OvY=(csFuaE$_#e!~`d!_M_x96h!ay$a+hU%!U(7%q zxD<85Rj32)Mjhw?>V)rL4xU3*G9<%2aVRFxk3ua~FRKrAp+is=@fXmb%4UN7Vjb!V zUPn!67ixl4sGIOSa(|j{ks_Hm234Va)P4(56I+S8r?#Oc{-*V9Y)=0ehU@viNJD>6 zgH7=^s&o%*Ka{%briw(WXS_HN3sEQBgB-{l!gxG|n%HNUgiW4uUt$^9f_@?D_$3&k z=YJ^;&2WWv1F8aBQE#!GI1+E5N|xHg{Uv(}b->}M{fki-Fby@K1*rX3_4qoI})uf|t#^I>7E3x0dgetw?_A5~(KZ2U@an#y3>gkre z8S3V4hq~aN=-141Xy{6Yph{YZ`on3ciIiC9p-#BSe!my>n|=^=vzjoSY%YNGd0CI10+Ax(O@ zFR`}B>%jCzjZZ*b@LcP{UetdC14|k3dicK?mg9H5sRF*z*L{n9$*eTvIouG@+8@>5 zioC_lKGX!x*zc=ROL+^m-$T@i!}_}u4@Zr+^wZEylYrVG9evmX6LBHxKszx4-$mWM zXRTLJC;kHU61$5!PO8tXU$+dqL(^v_`_ z-oP}>&oSl$T!MOuW##fWSc6k=-2it2Ut>4=_plf{4Gg}-{AMkURt((1@mOz=`xYxg zO=J&hjVrD1q3(?;9E0aj`$Z0RZ?bq)MUqihnuV(HFzkTi?D$e_sONu^9oUNT>~H{8 z@=K`7e1=-9yVi$xJZuPeFyn2oKE8~T(2pwZS2!0V^4yo$O5~rp#K%;P4<(%6ETW;e z*gC9-$E;PTwLXa+JVo9h+BkM_%iwbjIYTZHO_<6D-td~Qpy5t&YQl2oE!taIcv(e_*N3i&-*NLCYVue<#CS!i2(@n_^GB!%oJthA{j zf9CvV9F4chABi@VQkzPTcB*ONNojWF`qC+Ps8!hsh#QWENRYc98z$3aQ&FY5c0LgCE#-XWT@B z=P#x)l3XX-i5|y9Qny{C(UM#ylZbw398$L(rcp||kQzI92=x?oBf6=p$-CtLx0iK( zo~Gb7l+WShr(`afO@2q#k_JTE3q(IMuaanzN!F1BqHPPALXN1z_735#ZOYWKTe9`( zpj>}H8ZVMxlli10*+}ZPPPXw2{0;d7d4_By*GPMElJp|I$pUhMXnT$vBLmd2+lP3b zq>*sdza6O{ZOA9&H4;Iz&2TXntVKADl-vHF@ICT#+YiOfwk#hYfrD>yqwb5!GUId`e|-H=kvb7c~!Ja3ascC`}o{iI*WXXfor~k;M|%(L literal 21455 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Sorry, you are not allowed to access this page." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugins" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "A few catchy words to motivate your readers to comment" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Adjust your Comments form with a clever greeting and colour scheme." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Colour Scheme" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Greeting Text" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Dark" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Light" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparent" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Sunset" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Contrast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Overview" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Settings" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Purchases" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Emails" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domains" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "All Sites" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cancel reply" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Leave a comment" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Save my name, email, and website in this browser for the next time I comment." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Subscribe" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Enter your email address" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Continue reading" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Optional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Cancel" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Email me new comments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Email me new posts" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Notify me of new posts" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Weekly" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Comment" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Reply" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Daily" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Instantly" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Log out" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Get started" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Choose a theme" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Connect your social media accounts" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Add a new page" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Thumbnail" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Launch your site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "Untick to disable" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Title:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Clean" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Yes" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "No" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Edit" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "My Home" @@ -1428,31 +758,31 @@ msgstr "Disk space quota" msgid "Disk space used" msgstr "Disk space used" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Click for more information" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Count items in subcategories towards parent total." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Maximum font percentage:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Minimum font percentage:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Category IDs, separated by commas" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Exclude:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Maximum number of categories to show:" @@ -1470,24 +800,14 @@ msgstr "Your most used categories in cloud format." msgid "Category Cloud" msgstr "Category Cloud" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack is disconnected and the site is private. Reconnect Jetpack to manage site visibility settings." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Update visibility" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Launch site" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Dismiss" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "You are currently using %1$s out of %2$s upload limit (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Display your latest Instagram photos." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biography" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Headline" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Photo" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Don't Display Name" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Display Small" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Display Medium" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Display Large" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Display Extra Large" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Your about.me URL" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Widget title" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "The about.me widget will no longer be available after 1 July 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Display your about.me profile with a thumbnail" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Unable to fetch the requested data." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Create a free website or blog at WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Create a free website at WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Powered by WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog at WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Save" msgid "Activate & Save" msgstr "Activate and Save" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Manage your site visibility settings" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "This plugin was installed by WordPress.com and provides features offered in your plan subscription." @@ -1898,8 +1209,7 @@ msgstr "Phone" msgid "Email" msgstr "Email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Name" @@ -1913,27 +1223,27 @@ msgstr "Reservation Enquiry" msgid "Reservations" msgstr "Reservations" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Show comments from:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Text background colour:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Avatar background colour:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "No Avatars" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(at most 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Number of comments to show:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Recent Comments" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "on" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s on %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Author's likes to display:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Grid" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "List" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Display as:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Number of posts to show (1 to 15):" @@ -2019,62 +1329,62 @@ msgstr "I Voted" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Show your readers that you voted with an \"I Voted\" sticker." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Text displayed after Gravatar. This is optional and can be used to describe yourself, or what your blog is about." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar alignment:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Size:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Custom Email Address:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Select a user or pick \"custom\" and enter a custom email address." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centre" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Right" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Left" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "None" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra Large (256 pixels)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Large (128 pixels)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Medium (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Small (64 pixels)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Insert a Gravatar image" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Choose an image to display in your sidebar:" @@ -2103,28 +1413,28 @@ msgstr "Freshly Pressed" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Display a Freshly Pressed badge in your sidebar" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Avatar Size (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Display all authors (including those who have not written any posts)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Title:" @@ -2140,12 +1450,12 @@ msgstr "Show a grid of author avatar images." msgid "Author Grid" msgstr "Author Grid" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Private Site" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "This site is private." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-eo.mo b/projects/plugins/wpcomsh/languages/wpcomsh-eo.mo index 9ae8ac8d18a6734cacc5b35662c833cddc69d0ee..17df6eab2a6471a18b1af704177f29fc73dc703c 100644 GIT binary patch delta 2322 zcmZ|Qe@xVM9LMpGqWlmJjw3kXP)<|`L=mF=f%pSKs6hGUk8Gpe#-TUQy9KBJG&`GX z3ztp!jB2g9*^jZ>P&eCJt{-E|7E4yS($*jOhii@X2kBa4wOY>?_wk>$KI46l@8|RV z{Qi9IxYu-kUGgX2l5s@wB(KOIDY{3>({Snka zfiz{907XBUqQY96nEn1sD?|ar1C=4gaR&K z;jBU3fqJaP7SxU;P~$xB@@I0`{{aflQJ@a*yBG5=znEEQMVY99@=!Zcf~&FIz2Ad0 zF`cN(br>~pKepm4s2%&xc^h*V8S|ru{nss?<)a+uQ4Up@0x>U=&sg4_P7y0d|m7PX)bPlz( z<46-TfttvN$my6V)C6ZxU$>u8?fybdD2>LNa1N?G>2n1osE&fDOH%DBv|$hVeW;^& z3svtum%oY{=o+fSZ%{k;18ShVsDWouzaRHe6ZCPzsh>2}Jm^x?qqb%f>a1E(D{Mz~ zbO<#-Kd!_8lscfLTK9#5~~TFy^_9850X}|bSQ<{kE@7nF5lyP6xR`(i3Xxn=l?hl z`ngo z|B`NPk$b5du7BA|`u6N4bQ$#9o^1rCG-#u_M9WcsyqNJ$}2_ zb1XeP7&;M6*qfdnTaz2K}XNY(;SKpgsx8pPljXhVO!_-+n_(5)xzwqPev0Vd&%Er zGnO~l_m?+kwmq0&UhzzECk?~Lh7&{Kg^9*ZYiu|aJ&}mmx{^J1q@>nsS-RhzDIK$GSA1sYR&2K2D~oMn<*9!G5hwaa literal 7921 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-eo.po b/projects/plugins/wpcomsh/languages/wpcomsh-eo.po index ee95396f5f211..e8442a06d136e 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-eo.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-eo.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Merkatado" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Bedaŭrinde, vi ne rajtas aliri al tiu ĉi paĝo." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Kromprogramoj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Kelkaj atentokaptaj vortoj por kuraĝigi viajn legantojn lasi komenton" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Alĝustigi viajn Komento-formularon per sprita saluto kaj kolor-skemo." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Koloraranĝo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Saluto-teksto" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Malluma" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Hela" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Travidebla" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Sunsubiro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Superrigardo" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Agordo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Retpoŝto" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domajnoj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Planoj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Ĉiuj retejoj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Nuligi respondon" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Lasu respondon al %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Lasi respondon" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Konservu miajn nomon, retpoŝtadreson kaj retejon en tiu ĉi retumilo por uzi kiam mi denove komentos." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Aboni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Entajpu vian retpoŝtadreson" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Daŭrigi la legadon" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Libervola" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "TTT-ejo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Rezigni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Sendu al mi novajn komentojn retpoŝte" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Retmesaĝu al mi novajn afiŝojn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Sciigu min pri novaj afiŝoj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Semajne" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Komento" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Respondi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Tage" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Via adreso neniam publikiĝos)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Elsaluti" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Kiel komenci" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Konekto de viaj soci-retaj kontoj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Aldoni novan paĝon" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Bildeto" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Nomi Vian Blogon." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Alŝuti vian unuan filmon" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titolo" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Jes" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ne" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Redakti" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Maksimuma elcento de la tiparo:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Ekskluzivi:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Forsendi" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografio" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Ne povis preni la petitajn informojn." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Krei senpagan retejon aŭ blogon ĉe WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Krei senpagan retejon ĉe WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Farita pere de Wordpress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blogo ĉe WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Konservi" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Telefonnumero" msgid "Email" msgstr "Retpoŝto" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nomo" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Neniuj avataroj" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(maksimume 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Nombro de komentoj por montri:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Lastaj komentoj" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "pri" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Krado" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Listo" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Montri kiel:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Grando:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Elektu uzanton aŭ elektu \"tajlora\" kaj entajpu retpoŝtadreson laŭ via difino." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centrigi" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Dekstre" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Maldekstre" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Neniu" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Grandega (256 bilderoj)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Granda (128 bilderoj)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Mezgranda (96 bilderoj)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Malgranda (64 bilderoj)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Grando de avataro (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Montro de ĉiuj aŭtoroj (inkluzive tiujn kiuj ne verkis afiŝon)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titolo:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-es_CL.mo b/projects/plugins/wpcomsh/languages/wpcomsh-es_CL.mo index 3d2a0b0f89b34ff8cc29e99afee55bef910653c2..e70a620294b2ddf18935f0dc8351f2ede949fccf 100644 GIT binary patch delta 8711 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 YQzG%~)6od6M62zh#bVs{9!>jy0911yqW}N^ diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-es_CL.po b/projects/plugins/wpcomsh/languages/wpcomsh-es_CL.po index 9255c9d2862e8..984ba507c18d1 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-es_CL.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-es_CL.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WordPress.com - Site Helper package. msgid "" msgstr "" -"PO-Revision-Date: 2024-05-27 11:53:57+0000\n" +"PO-Revision-Date: 2024-06-24 12:12:40+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "%1$s en %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Puedes modificar tu Gravatar desde tu página de perfil." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Lo siento, no tienes permiso para acceder a esta página." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugins" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Utiliza el escritorio antiguo de WordPress.com para gestionar tu sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Estilo predeterminado" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Utiliza WP-Admin para gestionar tu sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Estilo clásico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Estilo de la interfaz del administrador" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Explorar plugins" @@ -72,424 +42,10 @@ msgstr "Accede a diversos plugins gratuitos y de pago con los que podrás mejora msgid "Flex your site's features with plugins" msgstr "Usa los plugins para dar versatilidad a las funciones de tu sitio" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Galería de temas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Explorar temas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Sumérgete en el mundo de los temas de WordPress.com. Descubre los impresionantes diseños adaptables que te esperan para dar vida a tu sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Encuentra el tema perfecto para tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Unas palabras para motivar a sus lectores a dejar un comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Activar bloques en comentarios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Permitir a los visitantes usar cuentas de WordPress.com o Facebook para comentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Ajuste la combinación de colores y el saludo de bienvenida de su formulario de Comentarios." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Combinación de colores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Texto de Bienvenida" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Permitir bloques" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Oscuro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Claro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Publica tu tienda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Añadir un dominio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Haz crecer tu negocio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Retener el IVA" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Recibe pagos con WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Agrega tus productos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Personaliza tu tienda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Puesta del sol" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Cerezo en flor" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Nieve en polvo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Anochecer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Contraste" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Oscuro clásico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Blanco clásico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Azul clásico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Acuático" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Información general" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Compartir “%s” a través de Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Para acceder a los ajustes de los planes, dominios, correos electrónicos, etc., haz clic en \"Alojamiento\" en la barra lateral." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Ajustes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Monetización" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Monitorización" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Configuración" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Compras" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Correos electrónicos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Dominios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Extensiones" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Planes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Alojamiento" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Todos los sitios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Error: intenta comentar de nuevo." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Error: tu sesión en Facebook ha expirado." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cancelar respuesta" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Replica a %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Deje un comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Guardar mi nombre, correo electrónico y sitio web en este navegador para la próxima vez que comente." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Comentario enviado correctamente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Suscribir" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Introduce tu dirección de correo electrónico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "¿Quieres recibir actualizaciones de las entradas del blog? Haz clic en el botón de abajo para mantenerte informado/a." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "¡No te pierdas ni un detalle!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Leer más" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Suscríbete ahora para seguir leyendo y obtener acceso al archivo completo." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "Descubre más de %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Cargando tu comentario..." - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Te mantendremos informado/a." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opcional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Sitio web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Escribe una respuesta..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Cancelar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Recibir un correo electrónico con cada nuevo comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Recibir un correo electrónico con cada nueva entrada" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Recibir una notificación con cada nueva entrada" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Semanalmente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Responder" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Diariamente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Instantáneamente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(La dirección no se hará pública)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Cerrar sesión" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Conectado mediante %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Inicia sesión para dejar un comentario." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Accede para dejar una respuesta." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Deja un comentario. (Inicio de sesión opcional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Deja una respuesta. (acceso opcional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Página web (opcional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "Correo electrónico (la dirección no se hará pública)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Recibe notificaciones por web y móvil sobre publicaciones en este sitio web." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Accede o proporciona tu nombre y correo electrónico para dejar un comentario." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Accede o proporciona tu nombre y correo electrónico para dejar una respuesta." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Escribe un comentario..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Comienza" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Sigue las instrucciones del importador de WordPress.com para importar publicaciones y comentarios desde Medium, Substack, Squarespace, Wix y muchas más plataformas." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Visita %1$sAjustes de Jetpack%2$s para obtener más información sobre los ajustes de escritura que ofrece Jetpack." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Actualizaciones programadas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Verifica la dirección de correo electrónico de tus dominios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Configuración del sitio web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Termina de configurar Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Terminar la configuración de la tienda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Actualiza el diseño de tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Activa la opción de compartir entradas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Instala la aplicación móvil" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "No se ha restaurado ningún archivo." @@ -563,134 +119,6 @@ msgstr "Ya se está ejecutando una importación." msgid "The backup import has been cancelled." msgstr "Se ha cancelado la importación de la copia de seguridad." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Próximos pasos de tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Añade el bloque Suscripción a tu sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Importa los suscriptores que ya tienes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Ver las métricas del sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "Configurar SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Instala un plugin personalizado" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Elige un tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Crea una oferta para tus mecenas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Conecta una cuenta de Stripe para recibir pagos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Añade tu página \"Acerca de\"" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Gestiona tu plan de Newsletter de pago" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Conecta con tus cuentas de redes sociales" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Gestionar los suscriptores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Escribe tres entradas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Obtén tus primeros 10 suscriptores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Activar la ventana modal para suscriptores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Personaliza los mensajes de bienvenida" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Gana dinero con tu newsletter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Actualiza tu página \"Acerca de\"" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Migra contenido" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "Verifica la dirección de correo electrónico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Impide la creación de nuevas entradas y páginas, así como la edición de entradas y páginas existentes. Además, cierra los comentarios en todo el sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Activar el modo bloqueo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Modo bloqueo" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Para asumir la titularidad, te pedimos que la persona que designes se ponga en contacto con nosotros en %s con una copia del certificado de defunción." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Elige a alguien para cuidar de tu sitio cuando ya no estés." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Contacto heredado" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Propiedad mejorada" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "La opción «Cualquiera puede registrarse» está activa. En este momento, el perfil por defecto es %1$s. %4$s Considera desactivar esta opción si no se necesita el registro abierto." @@ -720,149 +148,37 @@ msgstr "El archivo no existe" msgid "Could not determine importer type." msgstr "No se puede determinar el tipo de importador" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Comparte tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Editar una página" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Tu sitio contiene estilos premium. Mejora tu plan ahora para publicarlos y acceder a muchas otras funciones." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Personaliza tu dominio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Agregar una nueva página" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Dirige tráfico a tu sitio web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Pon un nombre a tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Solicita tu dominio gratuito de un año" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Regalar" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Imagen en miniatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Compartir “%s” a través de Publicize" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Compartir" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Actualizar plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Crea una newsletter de pago" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Configura el método de pago" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Elige un dominio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Publica tu blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Edita el diseño del sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Configura tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Ponle nombre a tu blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personaliza tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Sube tu primer vídeo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Configura tu sitio de vídeos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Publica tu sitio web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Añade enlaces" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personaliza tu link in bio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Elige un diseño" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Empezar a escribir" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Escribe tu primera entrada" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Añadir suscriptores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Elige un plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personalizar newsletter" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "No se puede cargar la clase %1$s. Utiliza el compositor para añadir el paquete que lo contiene y comprueba si necesitas utilizar el cargador automático de Jetpack" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Los alias de los dominios de texto deben registrarse antes del action hook de %1$s. Este aviso ha sido activado por el dominio %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "El script \"%s\" depende de wp-i18n, pero no especifica \"textdomain\"." @@ -1063,27 +379,27 @@ msgstr "¡Qué suerte! Los diseñadores de tu tema han elegido fuentes específi msgid "Uncheck to disable" msgstr "Desmarcar para desactivar" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "ID de feed de Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "ID de feed de Apple Podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Título" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Feed RSS del Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Escuchar en Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Escuchar en Apple Podcasts" @@ -1095,98 +411,114 @@ msgstr "Muestra información sobre tu podcast y permite a los visitantes suscrib msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Seleccionar categoría de iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Establecer categoría de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Establecer palabras clave del podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Establecer imagen de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Borrar" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Sí" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "No" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Establecer podcast como explícito" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Establecer derechos de autor de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Establecer resumen de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Configurar autor del posdcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Establecer subtítulo de podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Establecer título de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Esta es la URL que envías a iTunes o al servicio de podcasting." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "El feed de tu podcast: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Seleccionar categoría de podcast:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Categoría de blog para podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Categoría de podcast 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Categoría de podcast 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Categoría de podcast 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Palabras claves de podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Imagen de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Marcar como explícito" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Derechos de autor de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Resumen de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Nombre del artista del podcast" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Subtítulo de podcast" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Título del podcast" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Editar" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Mi página de inicio" @@ -1428,31 +758,31 @@ msgstr "Cuota de espacio del disco" msgid "Disk space used" msgstr "Espacio del disco utilizado" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Haz clic para obtener más información" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Incluye los elementos de las subcategorías en el recuento del total superior." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Porcentaje Máximo de Fuente:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Porcentaje de fuente mínima:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Identificadores de categorías separados por comas" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Excluir:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Número máximo de categorías para mostrar:" @@ -1470,24 +800,14 @@ msgstr "Las categorias más utilizado en una nube." msgid "Category Cloud" msgstr "Nube de categorías" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack está desconectado y el sitio es privado. Vuelve a conectar Jetpack para gestionar la configuración de visibilidad del sitio." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Actualiza la visibilidad" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Publicar el sitio web" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Rechazar" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Actualmente estás usando %1$s de %2$s de límite de carga (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Muestra tus últimas fotos Instagram." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografía" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Titular" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "No mostrar el nombre" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Mostrar tamaño pequeño" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Mostrar tamaño mediano" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Mostrar tamaño grande" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Mostrar tamaño extra grande" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Tu URL de about.me" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Nombre de Widget" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "El widget about.me dejará de estar disponible a partir del 1 de julio de 2016. A partir del entonces, el widget mostrará un simple enlace de texto a tu perfil de about.me. Elimina este widget." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Mostrar tu perfil de about.me en miniatura" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "No se pueden recuperar los datos solicitados." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Crea un blog o un sitio web gratuitos con WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Crea un sitio web gratuito con WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Ofrecido por WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog de WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Guardar" msgid "Activate & Save" msgstr "Activar y guardar" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Gestiona los ajustes de visibilidad de tu sitio" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "WordPress.com instaló este plugin e incluye las funciones que se ofrecen en la suscripción de tu plan." @@ -1898,8 +1209,7 @@ msgstr "Teléfono" msgid "Email" msgstr "Correo" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nombre" @@ -1913,27 +1223,27 @@ msgstr "Consulta acerca de una reserva" msgid "Reservations" msgstr "Reservas" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Mostrar comentarios desde:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Color de fondo del texto:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Color de fondo del avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Sin avatares" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 como máximo)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Número de comentarios a mostrar:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Comentarios recientes" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "No has puesto un Me gusta en ninguna entrada en los últimos días. Cuando lo hagas, el widget Entradas que me gustan las mostrará." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "en" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s en %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Los me gusta del autor para mostrar:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Grilla" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Mostrar como:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Número de entradas que se mostrarán (de 1 a 15):" @@ -2019,62 +1329,62 @@ msgstr "He votado" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Muestra a tus lectores que has votado con una pegatina \"He votado\"." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Texto mostrado después del Gravatar. Esto es opcional y puede servir para describirte a ti mismo o la temática de tu blog." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Enlace Gravatar. Es una URL opcional que se usará cuando alguien haga clic en tu Gravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Alineación de Gravatar:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Tamaño:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Dirección de correo electrónico personalizada:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Selecciona un usuario o selecciona \"personalizar\" e introduce una dirección de correo personalizada." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Center" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Derecha" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Izquierda" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Ninguna" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra Grande (256 píxeles)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Grande (128 pixels)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Medio (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Pequeña (64 pixeles)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Insertar una imagen de Gravatar." -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Elige una imagen para mostrar en tu barra lateral:" @@ -2103,28 +1413,28 @@ msgstr "Más recientes" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Mostrar un distintivo para Freshly Pressed en tu barra lateral" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Tamaño del avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Muestra todos los autores (incluidos los que no hayan escrito ninguna entrada)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Título:" @@ -2140,12 +1450,12 @@ msgstr "Mostrar una cuadrícula en las imágenes de avatar de autor." msgid "Author Grid" msgstr "Cuadrícula de autor" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Sitio privado" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Este sitio es privado." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-es_ES.mo b/projects/plugins/wpcomsh/languages/wpcomsh-es_ES.mo index da53f2187bb418bd5bbce457d5a23ea0a9996706..6bded9fa7dd19959b8b18d0566bc02f7891a9aa1 100644 GIT binary patch delta 8714 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-es_ES.po b/projects/plugins/wpcomsh/languages/wpcomsh-es_ES.po index c855ef4526214..e3c92aa55d04e 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-es_ES.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-es_ES.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "%1$s en %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Puedes modificar tu Gravatar desde tu página de perfil." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Lo siento, no tienes permisos para acceder a esta página." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugins" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Utiliza el escritorio antiguo de WordPress.com para gestionar tu sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Estilo predeterminado" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Utiliza WP-Admin para gestionar tu sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Estilo clásico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Estilo de la interfaz del administrador" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Explorar plugins" @@ -72,424 +42,10 @@ msgstr "Accede a diversos plugins gratuitos y de pago con los que podrás mejora msgid "Flex your site's features with plugins" msgstr "Usa los plugins para dar versatilidad a las funciones de tu sitio" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Galería de temas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Explorar temas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Sumérgete en el mundo de los temas de WordPress.com. Descubre los impresionantes diseños adaptables que te esperan para dar vida a tu sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Encuentra el tema perfecto para tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Unas palabras para motivar a sus lectores a dejar un comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Activar bloques en comentarios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Permitir a los visitantes usar cuentas de WordPress.com o Facebook para comentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Ajuste la combinación de colores y el saludo de bienvenida de su formulario de Comentarios." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Esquema de color" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Texto de Bienvenida" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Permitir bloques" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Oscuro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Brillante" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Pon en marcha tu tienda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Añadir un dominio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Haz crecer tu negocio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Cobra el impuesto sobre las ventas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Recibe los pagos con WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Añade tus productos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Personaliza tu tienda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Atardecer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Cerezo en flor" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Nieve en polvo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Anochecer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Contraste" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Oscuro clásico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Blanco clásico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Azul clásico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Acuático" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Resumen" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Compartir “%s” a través de Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Para acceder a los ajustes de los planes, dominios, correos electrónicos, etc., haz clic en \"Alojamiento\" en la barra lateral." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Ajustes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Monetización" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Monitorización" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Configuración" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Compras" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Correos electrónicos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Dominios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Extensiones" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Planes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Alojamiento" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Todos los sitios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Error: intenta comentar de nuevo." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Error: tu sesión en Facebook ha expirado." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cancelar la respuesta" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Replica a %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Dejar un comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Guardar mi nombre, correo electrónico y web en este navegador para la próxima vez que comente." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Comentario enviado correctamente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Suscribirse" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Introduce tu dirección de correo electrónico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "¿Quieres recibir actualizaciones de las entradas del blog? Haz clic en el botón de abajo para mantenerte informado/a." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "¡No te pierdas ni un detalle!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Leer más" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Suscríbete ahora para seguir leyendo y obtener acceso al archivo completo." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "Descubre más de %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Cargando tu comentario..." - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Te mantendremos informado/a." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opcional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Escribe una respuesta..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Cancelar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Recibir un correo electrónico con cada nuevo comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Recibir un correo electrónico con cada nueva entrada" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Recibir una notificación con cada nueva entrada" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Semanalmente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Comentarios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Responder" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Diariamente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Instantáneamente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(La dirección no se hará pública)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Salir" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Conectado mediante %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Inicia sesión para dejar un comentario." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Accede para dejar una respuesta." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Deja un comentario. (Inicio de sesión opcional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Deja una respuesta. (acceso opcional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Página web (opcional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "Correo electrónico (la dirección no se hará pública)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Recibe notificaciones por web y móvil sobre publicaciones en este sitio web." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Accede o proporciona tu nombre y correo electrónico para dejar un comentario." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Accede o proporciona tu nombre y correo electrónico para dejar una respuesta." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Escribe un comentario..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Comenzar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Sigue las instrucciones del importador de WordPress.com para importar publicaciones y comentarios desde Medium, Substack, Squarespace, Wix y muchas más plataformas." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Visita %1$sAjustes de Jetpack%2$s para obtener más información sobre los ajustes de escritura que ofrece Jetpack." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Actualizaciones programadas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Verifica la dirección de correo electrónico de tus dominios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Configuración del sitio web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Termina de configurar Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Terminar la configuración de la tienda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Actualiza el diseño de tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Activa la opción de compartir entradas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Instala la aplicación móvil." - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "No se ha restaurado ningún archivo." @@ -563,134 +119,6 @@ msgstr "Ya se está ejecutando una importación." msgid "The backup import has been cancelled." msgstr "Se ha cancelado la importación de la copia de seguridad." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Próximos pasos de tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Añade el bloque Suscripción a tu sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Importa los suscriptores que ya tienes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Ver las métricas del sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "Configurar SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Instala un plugin personalizado" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Elige un tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Crea una oferta para tus mecenas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Conecta una cuenta de Stripe para recibir pagos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Añade tu página \"Acerca de\"" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Gestiona tu plan de Newsletter de pago" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Conecta con tus cuentas de redes sociales" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Gestionar los suscriptores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Escribe tres entradas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Obtén tus primeros 10 suscriptores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Activar la ventana modal para suscriptores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Personaliza los mensajes de bienvenida" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Gana dinero con tu newsletter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Actualiza tu página \"Acerca de\"" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Migra contenido" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "Verifica la dirección de correo electrónico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Impide la creación de nuevas entradas y páginas, así como la edición de entradas y páginas existentes. Además, cierra los comentarios en todo el sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Activar el modo bloqueo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Modo bloqueo" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Para asumir la titularidad, te pedimos que la persona que designes se ponga en contacto con nosotros en %s con una copia del certificado de defunción." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Elige a alguien para cuidar de tu sitio cuando ya no estés." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Contacto heredado" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Propiedad mejorada" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "La opción «Cualquiera puede registrarse» está activa. En este momento, el perfil por defecto es %1$s. %4$s Considera desactivar esta opción si no se necesita el registro abierto." @@ -720,149 +148,37 @@ msgstr "El archivo no existe" msgid "Could not determine importer type." msgstr "No se puede determinar el tipo de importador" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Comparte tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Editar una página" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Tu sitio contiene estilos premium. Mejora tu plan ahora para publicarlos y acceder a muchas otras funciones." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Personaliza tu dominio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Añadir una nueva página" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Dirige tráfico a tu sitio web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Pon un nombre a tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Solicita tu dominio gratuito de un año" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Regalar" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Compartir “%s” a través de Publicize" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Compartir" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Actualizar plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Crea una newsletter de pago" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Configura el método de pago" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Elige un dominio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Publica tu blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Edita el diseño del sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Configura tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Ponle nombre a tu blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personaliza tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Sube tu primer vídeo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Configura tu sitio de vídeos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Publica tu sitio web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Añade enlaces" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personaliza tu link in bio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Elige un diseño" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Empezar a escribir" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Escribe tu primera entrada" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Añadir suscriptores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Elige un plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personalizar newsletter" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "No se puede cargar la clase %1$s. Utiliza el compositor para añadir el paquete que lo contiene y comprueba si necesitas utilizar el cargador automático de Jetpack" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Los alias de los dominios de texto deben registrarse antes del action hook de %1$s. Este aviso ha sido activado por el dominio %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "El script \"%s\" depende de wp-i18n, pero no especifica \"textdomain\"." @@ -1063,27 +379,27 @@ msgstr "¡Qué suerte! Los diseñadores de tu tema han elegido fuentes específi msgid "Uncheck to disable" msgstr "Desmarcar para desactivar" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "ID de feed de Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "ID de feed de Apple Podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Título:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Feed RSS del Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Escuchar en Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Escuchar en Apple Podcasts" @@ -1095,98 +411,114 @@ msgstr "Muestra información sobre tu podcast y permite a los visitantes suscrib msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Seleccionar categoría de iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Establecer categoría de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Establecer palabras clave del podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Establecer imagen de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Borrar" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Si" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Non" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Establecer podcast como explícito" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Establecer derechos de autor de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Establecer resumen de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Configurar autor del posdcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Establecer subtítulo de podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Establecer título de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Esta es la URL que envías a iTunes o al servicio de podcasting." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "El feed de tu podcast: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Seleccionar categoría de podcast:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Categoría de blog para podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Categoría de podcast 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Categoría de podcast 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Categoría de podcast 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Palabras claves de podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Imagen de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Marcar como explícito" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Derechos de autor de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Resumen de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Nombre del artista del podcast" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Subtítulo de podcast" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Título del podcast" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Editar" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Mi página de inicio" @@ -1428,31 +758,31 @@ msgstr "Cuota de espacio del disco" msgid "Disk space used" msgstr "Espacio del disco utilizado" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Haz clic para obtener más información" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Incluye los elementos de las subcategorías en el recuento del total superior." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Porcentaje Máximo de Fuente:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Porcentaje de fuente mínima:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Identificadores de categorías separados por comas" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Excluir:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Número máximo de categorías para mostrar:" @@ -1470,24 +800,14 @@ msgstr "Las categorias más utilizado en una nube." msgid "Category Cloud" msgstr "Nube de categorías" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack está desconectado y el sitio es privado. Vuelve a conectar Jetpack para gestionar la configuración de visibilidad del sitio." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Actualiza la visibilidad" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Publicar el sitio web" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Descartar" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Actualmente estás usando %1$s de %2$s de límite de carga (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Muestra tus últimas fotos Instagram." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografía" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Titular" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "No mostrar el nombre" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Mostrar tamaño pequeño" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Mostrar tamaño mediano" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Mostrar tamaño grande" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Mostrar tamaño extra grande" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Tu URL de about.me" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Nombre de Widget" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "El widget about.me dejará de estar disponible a partir del 1 de julio de 2016. A partir del entonces, el widget mostrará un simple enlace de texto a tu perfil de about.me. Elimina este widget." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Mostrar tu perfil de about.me en miniatura" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "No se pueden recuperar los datos solicitados." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Crea un blog o un sitio web gratuitos con WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Crea un sitio web gratuito con WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Ofrecido por WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog de WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Guardar" msgid "Activate & Save" msgstr "Activar y guardar" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Gestiona los ajustes de visibilidad de tu sitio" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "WordPress.com instaló este plugin e incluye las funciones que se ofrecen en la suscripción de tu plan." @@ -1898,8 +1209,7 @@ msgstr "Teléfono" msgid "Email" msgstr "Email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nombre" @@ -1913,27 +1223,27 @@ msgstr "Consulta acerca de una reserva" msgid "Reservations" msgstr "Reservas" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Mostrar comentarios desde:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Color de fondo del texto:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Color de fondo del avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Sin avatares" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 como máximo)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Número de comentarios a mostrar:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Comentarios recientes" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "No has puesto un Me gusta en ninguna entrada en los últimos días. Cuando lo hagas, el widget Entradas que me gustan las mostrará." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "en" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s en %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Los me gusta del autor para mostrar:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Rejilla" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Mostrar como:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Número de entradas que se mostrarán (de 1 a 15):" @@ -2019,62 +1329,62 @@ msgstr "He votado" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Muestra a tus lectores que has votado con una pegatina \"He votado\"." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Texto mostrado después del Gravatar. Esto es opcional y puede servir para describirte a ti mismo o la temática de tu blog." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Enlace Gravatar. Es una URL opcional que se usará cuando alguien haga clic en tu Gravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Alineación de Gravatar:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Tamaño:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Dirección de correo electrónico personalizada:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Selecciona un usuario o selecciona \"personalizar\" e introduce una dirección de correo personalizada." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Center" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Derecha" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Izquierda" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Nada" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra Grande (256 píxeles)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Grande (128 pixels)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Medio (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Pequeña (64 pixeles)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Insertar una imagen de Gravatar." -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Elige una imagen para mostrar en tu barra lateral:" @@ -2103,28 +1413,28 @@ msgstr "Más recientes" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Mostrar un distintivo para Freshly Pressed en tu barra lateral" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Tamaño del avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Muestra todos los autores (incluidos los que no hayan escrito ninguna entrada)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Título:" @@ -2140,12 +1450,12 @@ msgstr "Mostrar una cuadrícula en las imágenes de avatar de autor." msgid "Author Grid" msgstr "Cuadrícula de autor" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Sitio privado" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Este sitio es privado." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-es_MX.mo b/projects/plugins/wpcomsh/languages/wpcomsh-es_MX.mo index fe1e2c7b9ea395a213abfc2e767295d859f5094e..d18cebaa2040f24b7a017d39df4f42a961fa844a 100644 GIT binary patch delta 8724 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 literal 51235 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" msgstr "%1$s en %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Puedes modificar tu Gravatar desde tu página de perfil." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Mercadeo" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Lo siento, no tienes permisos para acceder a esta página." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugins" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Utiliza el escritorio antiguo de WordPress.com para gestionar tu sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Estilo predeterminado" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Utiliza WP-Admin para gestionar tu sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Estilo clásico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Estilo de la interfaz del administrador" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Explorar plugins" @@ -72,424 +42,10 @@ msgstr "Accede a diversos plugins gratuitos y de pago con los que podrás mejora msgid "Flex your site's features with plugins" msgstr "Usa los plugins para dar versatilidad a las funciones de tu sitio" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Galería de temas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Explorar temas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Sumérgete en el mundo de los temas de WordPress.com. Descubre los impresionantes diseños adaptables que te esperan para dar vida a tu sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Encuentra el tema perfecto para tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Unas palabras para motivar a sus lectores a dejar un comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Activar bloques en comentarios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Permitir a los visitantes usar cuentas de WordPress.com o Facebook para comentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Ajuste la combinación de colores y el saludo de bienvenida de su formulario de Comentarios." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Paleta de colores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Texto de Bienvenida" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Permitir bloques" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Oscuro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Iluminación " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Pon en marcha tu tienda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Añadir un dominio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Haz crecer tu negocio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Cobra el impuesto sobre las ventas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Recibe los pagos con WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Añade tus productos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Personaliza tu tienda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Puesta del sol" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Cerezo en flor" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Nieve en polvo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Anochecer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Contraste" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Oscuro clásico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Blanco clásico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Azul clásico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Acuático" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Resumen" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Compartir “%s” a través de Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Para acceder a los ajustes de los planes, dominios, correos electrónicos, etc., haz clic en \"Alojamiento\" en la barra lateral." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Ajustes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Monetización" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Monitorización" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Configuración" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Compras" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Correos electrónicos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Dominios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Extensiones" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Planes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Alojamiento" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Todos los sitios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Error: intenta comentar de nuevo." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Error: tu sesión en Facebook ha expirado." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cancelar respuesta" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Replica a %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Dejar un comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Guardar mi nombre, correo electrónico y sitio web en este navegador para la próxima vez que haga un comentario." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Comentario enviado correctamente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Suscribe" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Introduce tu dirección de correo electrónico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "¿Quieres recibir actualizaciones de las entradas del blog? Haz clic en el botón de abajo para mantenerte informado/a." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "¡No te pierdas ni un detalle!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Leer más" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Suscríbete ahora para seguir leyendo y obtener acceso al archivo completo." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "Descubre más de %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Cargando tu comentario..." - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Te mantendremos informado/a." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opcional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Escribe una respuesta..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Cancelar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Recibir un correo electrónico con cada nuevo comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Recibir un correo electrónico con cada nueva entrada" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Recibir una notificación con cada nueva entrada" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Semanalmente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Responder" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Diariamente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Instantáneamente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(La dirección no se hará pública)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Cerrar sesión" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Conectado mediante %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Inicia sesión para dejar un comentario." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Accede para dejar una respuesta." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Deja un comentario. (Inicio de sesión opcional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Deja una respuesta. (acceso opcional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Página web (opcional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "Correo electrónico (la dirección no se hará pública)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Recibe notificaciones por web y móvil sobre publicaciones en este sitio web." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Accede o proporciona tu nombre y correo electrónico para dejar un comentario." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Accede o proporciona tu nombre y correo electrónico para dejar una respuesta." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Escribe un comentario..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Primeros pasos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Sigue las instrucciones del importador de WordPress.com para importar publicaciones y comentarios desde Medium, Substack, Squarespace, Wix y muchas más plataformas." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Visita %1$sAjustes de Jetpack%2$s para obtener más información sobre los ajustes de escritura que ofrece Jetpack." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Actualizaciones programadas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Verifica la dirección de correo electrónico de tus dominios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Configuración del sitio web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Termina de configurar Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Terminar la configuración de la tienda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Actualiza el diseño de tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Activa la opción de compartir entradas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Instala la aplicación móvil." - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "No se ha restaurado ningún archivo." @@ -563,134 +119,6 @@ msgstr "Ya se está ejecutando una importación." msgid "The backup import has been cancelled." msgstr "Se ha cancelado la importación de la copia de seguridad." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Próximos pasos de tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Añade el bloque Suscripción a tu sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Importa los suscriptores que ya tienes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Ver las métricas del sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "Configurar SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Instala un plugin personalizado" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Elige un tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Crea una oferta para tus mecenas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Conecta una cuenta de Stripe para recibir pagos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Añade tu página \"Acerca de\"" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Gestiona tu plan de Newsletter de pago" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Conecta con tus cuentas de redes sociales" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Gestionar los suscriptores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Escribe tres entradas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Obtén tus primeros 10 suscriptores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Activar la ventana modal para suscriptores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Personaliza los mensajes de bienvenida" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Gana dinero con tu newsletter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Actualiza tu página \"Acerca de\"" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Migra contenido" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "Verifica la dirección de correo electrónico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Impide la creación de nuevas entradas y páginas, así como la edición de entradas y páginas existentes. Además, cierra los comentarios en todo el sitio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Activar el modo bloqueo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Modo bloqueo" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Para asumir la titularidad, te pedimos que la persona que designes se ponga en contacto con nosotros en %s con una copia del certificado de defunción." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Elige a alguien para cuidar de tu sitio cuando ya no estés." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Contacto heredado" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Propiedad mejorada" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "La opción «Cualquiera puede registrarse» está activa. En este momento, el perfil por defecto es %1$s. %4$s Considera desactivar esta opción si no se necesita el registro abierto." @@ -720,149 +148,37 @@ msgstr "El archivo no existe" msgid "Could not determine importer type." msgstr "No se puede determinar el tipo de importador" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Comparte tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Editar una página" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Tu sitio contiene estilos premium. Mejora tu plan ahora para publicarlos y acceder a muchas otras funciones." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Personaliza tu dominio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Añadir una nueva página" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Dirige tráfico a tu sitio web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Pon un nombre a tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Solicita tu dominio gratuito de un año" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Regalar" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Compartir “%s” a través de Publicize" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Compartir" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Actualizar plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Crea una newsletter de pago" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Configura el método de pago" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Elige un dominio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Publica tu blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Edita el diseño del sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Configura tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Ponle nombre a tu blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personaliza tu sitio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Sube tu primer vídeo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Configura tu sitio de vídeos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Publica tu sitio web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Añade enlaces" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personaliza tu link in bio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Elige un diseño" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Empezar a escribir" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Escribe tu primera entrada" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Añadir suscriptores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Elige un plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personalizar newsletter" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "No se puede cargar la clase %1$s. Utiliza el compositor para añadir el paquete que lo contiene y comprueba si necesitas utilizar el cargador automático de Jetpack" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Los alias de los dominios de texto deben registrarse antes del action hook de %1$s. Este aviso ha sido activado por el dominio %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "El script \"%s\" depende de wp-i18n, pero no especifica \"textdomain\"." @@ -1063,27 +379,27 @@ msgstr "¡Qué suerte! Los diseñadores de tu tema han elegido fuentes específi msgid "Uncheck to disable" msgstr "Desmarcar para desactivar" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "ID de feed de Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "ID de feed de Apple Podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Título" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Feed RSS del Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Escuchar en Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Escuchar en Apple Podcasts" @@ -1095,98 +411,114 @@ msgstr "Muestra información sobre tu podcast y permite a los visitantes suscrib msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Seleccionar categoría de iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Establecer categoría de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Establecer palabras clave del podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Establecer imagen de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Borrar" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Sí" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "No" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Establecer podcast como explícito" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Establecer derechos de autor de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Establecer resumen de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Configurar autor del posdcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Establecer subtítulo de podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Establecer título de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Esta es la URL que envías a iTunes o al servicio de podcasting." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "El feed de tu podcast: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Seleccionar categoría de podcast:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Categoría de blog para podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Categoría de podcast 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Categoría de podcast 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Categoría de podcast 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Palabras claves de podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Imagen de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Marcar como explícito" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Derechos de autor de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Resumen de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Nombre del artista del podcast" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Subtítulo de podcast" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Título del podcast" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Editar" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Mi página de inicio" @@ -1428,31 +758,31 @@ msgstr "Cuota de espacio del disco" msgid "Disk space used" msgstr "Espacio del disco utilizado" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Haz clic para obtener más información" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Incluye los elementos de las subcategorías en el recuento del total superior." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Porcentaje Máximo de Fuente:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Porcentaje de fuente mínima:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Identificadores de categorías separados por comas" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Excluir:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Número máximo de categorías para mostrar:" @@ -1470,24 +800,14 @@ msgstr "Las categorias más utilizado en una nube." msgid "Category Cloud" msgstr "Nube de categorías" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack está desconectado y el sitio es privado. Vuelve a conectar Jetpack para gestionar la configuración de visibilidad del sitio." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Actualiza la visibilidad" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Publicar el sitio web" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Descartar" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Actualmente estás usando %1$s de %2$s de límite de carga (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Muestra tus últimas fotos Instagram." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografía" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Titular" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "No mostrar el nombre" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Mostrar tamaño pequeño" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Mostrar tamaño mediano" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Mostrar tamaño grande" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Mostrar tamaño extra grande" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Tu URL de about.me" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Nombre de Widget" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "El widget about.me dejará de estar disponible a partir del 1 de julio de 2016. A partir del entonces, el widget mostrará un simple enlace de texto a tu perfil de about.me. Elimina este widget." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Mostrar tu perfil de about.me en miniatura" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "No se pueden recuperar los datos solicitados." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Crea un blog o un sitio web gratuitos con WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Crea un sitio web gratuito con WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Ofrecido por WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog de WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Guardar" msgid "Activate & Save" msgstr "Activar y guardar" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Gestiona los ajustes de visibilidad de tu sitio" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "WordPress.com instaló este plugin e incluye las funciones que se ofrecen en la suscripción de tu plan." @@ -1898,8 +1209,7 @@ msgstr "Teléfono" msgid "Email" msgstr "Correo electrónico" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nombre" @@ -1913,27 +1223,27 @@ msgstr "Consulta acerca de una reserva" msgid "Reservations" msgstr "Reservas" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Mostrar comentarios desde:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Color de fondo del texto:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Color de fondo del avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Sin avatares" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 como máximo)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Número de comentarios a mostrar:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Comentarios recientes" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "No has puesto un Me gusta en ninguna entrada en los últimos días. Cuando lo hagas, el widget Entradas que me gustan las mostrará." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "en" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s en %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Los me gusta del autor para mostrar:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Rejilla" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Mostrar como:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Número de entradas que se mostrarán (de 1 a 15):" @@ -2019,62 +1329,62 @@ msgstr "He votado" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Muestra a tus lectores que has votado con una pegatina \"He votado\"." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Texto mostrado después del Gravatar. Esto es opcional y puede servir para describirte a ti mismo o la temática de tu blog." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Enlace Gravatar. Es una URL opcional que se usará cuando alguien haga clic en tu Gravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Alineación de Gravatar:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Tamaño:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Dirección de correo electrónico personalizada:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Selecciona un usuario o selecciona \"personalizar\" e introduce una dirección de correo personalizada." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Center" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Derecha" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Izquierda" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Nada" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra Grande (256 píxeles)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Grande (128 pixels)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Medio (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Pequeña (64 pixeles)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Insertar una imagen de Gravatar." -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Elige una imagen para mostrar en tu barra lateral:" @@ -2103,28 +1413,28 @@ msgstr "Más recientes" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Mostrar un distintivo para Freshly Pressed en tu barra lateral" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Tamaño del avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Muestra todos los autores (incluidos los que no hayan escrito ninguna entrada)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Título:" @@ -2140,12 +1450,12 @@ msgstr "Mostrar una cuadrícula en las imágenes de avatar de autor." msgid "Author Grid" msgstr "Cuadrícula de autor" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Sitio privado" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Este sitio es privado." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-es_PR.mo b/projects/plugins/wpcomsh/languages/wpcomsh-es_PR.mo index 84c68ea17b391244acb35555d13ba23549cecda2..c305fbca251db5bf05652d6246351a9e779a0983 100644 GIT binary patch delta 2078 zcmYk+ZERCj9LMp~ZEo(VY#kfh1lCO|+i)0xM&kF^9uiObzn^o?J@=l+ z+dn!cTQipf1xE~Ngjh_R%`;{Xj^DtA)Lvvv8Lq|#?7}tp5N^a5(T^9g7{5n;<_ece zyo$A0bfYl^7{qD}AY+Y_$%dI(z{2A_x00h6`{S^`Z|@9iFp(fg1BAYEx{u0y?e8EPOccoVjx1~PzJk+3a4ifX?L zHK7=m<34-;0IK~VTRw&v!n|QC-a+lz9InE1$RN!;>czg&T)7ZyC|BTaT#iwE1vRjL zQP1Tw3YE)I6R1L7W$JMVLuIVL8t$b+OY<~pga=V0KZ<(rP0Yu)aT89XR_ZV7KUnEA z=9;9wf|J#XP1u9mQ3H7%_1+_>vv9)C`m5u&sL)=`VjX^pn(b|Fp7 zCe#+}Kvv!CM71A7wTojTPM{|EGA_j9sCIKXGv*W-4d6r67JP+z;5Q87ye-%A4UsjC zsQVqLt?9(OF>LQYi<;pv)XGhwwsaQv<7fCJZev-p-~U-Mdf;Q!$i75%a0zuwe#61UijWtiE_Wwoui6ZLs1wGb0&y>?B4ArGDaeVm+~v(AT0AB=pH@>2+Y0v^_fI+LjLDdeWz=E$`7Z*j95Jp;N4M ze~#>7W2?+PM3~U2UP^2rloosIi%)vjig$WXlr$IhIb)HD@w9ikWQVu3bi~V)dj7Gr z8E{iv5|0JlxEC%P_U6jEs|R-_;*JSBqfR^>>`laCnDSc7SNNjdRQcmG&Hj_VnLig? z^?CD^5pQo`rGGH#M4hygjJfehG~rziJm~dSrM-`;-fQUJw`an2lF>-EtBC23yQ6L- z8B94T_smS(`+VWUUU&7-l3{1u8B4?y=FF?(X*ZTg1xFL=IFfV|Devp*?mS+6xaOsq N&5Jtoycg;o`48ng*D(M9 delta 3274 zcmY+GeQX>@8HdMhQ-4s$c4(3U{n)gmb>hS&A5Dlu5<9-8q;YB|mpX<9(!IO!dEL8R zXZOyr1IkIIw4f?dVC#RVL`tQotpuo$pnf1gZ4s!TDoP}T5fYIA5h3vrgqnyysCa&N zb09|h+h=BWX5M$+cjoMu*IwOJ``xme77V3~ZbwhuXpB1kax*W=V7oE5z#(`Sd<1TU zA>0kW1((77Ivw!${J1Ipt) za2Y%bc}&bp-%mO|1GV63s0}Q*_KR>0?U$f7coD9Ii%@p1!e!Vu*W7@1X3NuV_+jWl zExZ|O!Zz351+`!XDiZsk9L+*GT5|n0*Z&OEIxj#)_ADeQ<~*$3K;vJ>{S;Gsx6%WEyPa0s4;a_kb6p+(40^CzgtU57HL1E90e20sEaX+4c8vf@Np`YWy&i z;}1j4n}9quQ{=6IUw}GnPeJAC1*n0qx$i%NToiKw%F*9K9`grYGH@NPfgeDHy!Y0| z586hk@1s!T#~r8ZB>yL==yZM^YT_9vL$5%E{0C4G`k`z865c`kB2+~F4&_h_@l}62 zl)?L;Qq=Fb3o6xPQ1-I0RrmjKDw;3_SHTD>B42|V_zl;73Chr`5S!+8D2Ly3{l9j+ z4CU|@sIzb#9)sP4RqH+pwa&A!=21!Ahx1T7`jKm2fXp?Ea2xy^)LH1|XN)wPO;F?a zKsho26}cSL;S1px;aA`sT!J?`j3=SSf9W>zFHcUQMVn|A-GcuX<$nu$%=PSn14t)7gG%T=L?G(d3)KHq z`|t?*1o|BM47w938i!FYDxzlbTxBa<+w6oj<+oY#RCExVMWGr(8;}lSAJP?7`7F|P zQobKSPoQn6fK)c2{b&kJpa+o3YV^1&lmoi|D$1FP{sGyJI4|aIr1D9$87Ystjt`>y zk;>5q>bGGR^@owJV6$YY97LqsOd}oIPa_?|K{T$U>jZxaJ%rYw-AIRPCt8ojkP3&t zUhd*O>FPH^>+1bty1wbUd-KHyOorSTD456|WND#@^-nzg(y^Ew#n_+m6S}&(-`J9|(=1mF zwaca%#V*MEq?4@eJ#nlW*tp=EQcz^_IIWkY-a=C9I_=l8HIS<$Xj}*XGQx#_8Wx-8>i=c25Yfb4!kfb z=VDTpkK))y9<%b5_?>eht9$c}@F|C$4Lt%yzDP}xt;cLF_7%h#hR+3M-@GLsg%h5wW4^D$68hf0X{KC%vPY)*v=RgucMxioM=Oir1WbcG->_I?3_> K@|*trR{uZBY4B43 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-es_PR.po b/projects/plugins/wpcomsh/languages/wpcomsh-es_PR.po index 2ebd75c80ea6e..4d0b41d22329d 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-es_PR.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-es_PR.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Lo siento, no tienes permiso para acceder a esta página." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugins" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Oscuro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "ligero, luz" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Atardecer (Sunset)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Vista previa" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Ajustes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Dominios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Todos los sitios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cancelar la respuesta" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Replica a %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Dejar un comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Guardar mi nombre, correo electrónico y sitio web en este navegador para la próxima vez que haga un comentario." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Subscribir" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Continuar leyendo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opcional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Cancelar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Responder" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Salir" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Primeros pasos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Secreto Público" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Título" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Sí" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "No" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Editar" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Porcentaje Máximo de Fuente:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Porcentaje de fuente mínima:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Excluir:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "Categoría Nube" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Omitir" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog de WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Guardar" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Telefono" msgid "Email" msgstr "correo electrónico" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nombre" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Color de fondo del texto:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Color de fondo de avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Sin Avatares" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 como máximo)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Número de comentarios a mostrar:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Últimos comentarios" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "en" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Texto mostrado después del Gravatar. Esto es opcional y puede servir para describirte a ti mismo o la temática de tu blog." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centrar" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Derecha" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Izquierda" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Ninguna" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra Grande (256 píxeles)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Grande (128 pixels)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Medio (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Pequeña (64 pixeles)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Insertar una imagen Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Tamaño del avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Mostrar todos los autores (incluyendo aquellos que no han escrito entradas)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Título:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-et.mo b/projects/plugins/wpcomsh/languages/wpcomsh-et.mo index 8c5bb138672b04ca731b45deff33d7f20ab2f109..9b75e32e9589d6375259c33f963c72b66e2c9d2e 100644 GIT binary patch delta 1843 zcmXw(U1*zC7{^a*SKB6SlV)|gex;jr>t?&9wslrpbxGTa&X2V#!WbHxx6NzP1e&xm zFHDEH3mH;&*zgMnGEl)P$c6|i&h=uri|t03pfb=4ks&IIFh%|S)6<9i-{1Lq&-0w; zIdA^#UTrUZ-&A$dVB@G2O;#F{gvYCRV4-Sbf-np_U_0CkM_>ay3Txpqycxa@!|-jW zEzZK5;3tru`OI+@vTw;;qM;YB!UVhq^lYo5z;5PWaQ$~-HU7;C4LLds<>2%3gfXj78(wm};>N#*{LHtGKSHg$4(s4=kR+Oa z-1vWxGnp!)Zh-+PKigm<{!Nb?7>3#?4wdqKupS73~Aq13!XKz-v%1_7SakFXWP#?MQa#8p=O^48d?n4TE2kJwz zE;L?ltp&f6w)~fEnCBMP?uRN%H`<8yAZ0~1igdkY_aoJRt2&r6)`6nv4kU}CwsMPX zLEX@GBbg7GPI~&HRsVtY890Je%Lh>cJ%Dy2T|CwPE~FZ(uIp4V=X>ZOm32!F3kS*GuYRBwgUDO_~YuPZC&lL;y#kzFEOwl~z7kK1n zqkhhI1~%F8z(Dik>3q&J2fS(ajmGnHbFg5~2Xc zZNCg{uO^<9pR#|1p4&W?EF?1vS@Wn?6&DnkA1(NWf@ePrH{0*RV{MaO)|<)a%+!T5 j^M#C;ie}aVOeW{qWU*l1+?7v=Jvh2Z{Eyf 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-et.po b/projects/plugins/wpcomsh/languages/wpcomsh-et.po index 8b1a4009a0976..7a458b5c7348e 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-et.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-et.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WordPress.com - Site Helper package. msgid "" msgstr "" -"PO-Revision-Date: 2024-05-21 20:10:05+0000\n" +"PO-Revision-Date: 2024-06-10 11:48:56+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Turundus" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Vabandust, sul ei ole õigust seda lehte vaadata." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Pluginad" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Värvilahendus" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Tume" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Hele" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Lisa domeen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Loojang" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Ülevaade" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Seaded" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Tellimused" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-post" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domeenid" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Paketid" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Kõik saidid" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Tühista vastus" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Lisa kommentaar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Salvesta minu nimi, e-posti- ja veebiaadress sellesse veebilehitsejasse järgmiste kommentaaride jaoks." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Uudiskiri" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Jätka lugemist" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Variandid" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Veebileht" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Tühista" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Kommentaar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Vasta" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Aadress jääb varjatuks)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Logi välja" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Alustamine" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Lisa uus leht" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Ikoon" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Määra oma blogile nimi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1037,7 +353,7 @@ msgstr "" #: vendor/automattic/custom-fonts/custom-fonts.php:146 #: vendor/automattic/custom-fonts/custom-fonts.php:162 msgid "Fonts" -msgstr "" +msgstr "Fondid" #: vendor/automattic/custom-fonts/css-generator.php:63 msgid "Headings" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Pealkiri" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Jah" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ei" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Muuda" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Avaleht" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Jäta välja:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Loobu" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Salvesta" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Telefon" msgid "Email" msgstr "E-post" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nimi" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Teksti taustavärv" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(ülempiir 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Näidatavate kommentaaride arv:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Värsked kommentaarid" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "&emdash;" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Ruutpesiti" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Nimistu" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Keskel" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Paremal" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Vasakul" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Puudub" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Avatari suurus (pikslites):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Näita kõiki autoreid (ka neid, kes pole ühtki postitust teinud)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Pealkiri:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-eu.mo b/projects/plugins/wpcomsh/languages/wpcomsh-eu.mo index 0efd110408421dbc7be60e0c5332d4bd7663185d..b3c0460cdaae39d3c59177044f7860f090124755 100644 GIT binary patch delta 1780 zcmY+ET})g>6vqcjVOf^t!=hLytU?i5XrWS2)YeKt8<95Bkk}}C%U+fX%P#C*qR=Mm zH%(*GH4|#|NlpBEv+08-Mqg@7d@%8;zW9;&pvG9As>W#4-yentPxj1j&Y77rXU@#s z>m3)G3*Xk4tsCSB+KjfB8uJM3E~7z;+l^_3FT?xbB^Za-VI|yFZcGKNhO!%=mbSue zupROHJBkb#qV^$iiy&H)q|1^H2+l&VC(gd1^*OibpycN5JtQ7bN)LXb8GSy5% z_BM}0ZJ2_Zw*(dcNoSvd8wo_Ie>DT=aPTu1X%yfMSO?#8_D4_wufP`g1yl)tf!g>_ zH(pw`X~&@AG{6qH3u^sQ=O2ekV6uw(v(`N324Z9ZG@~fuMsM4qCiIj9gYKT!YI_E8ixur2lW+%PzkOy5h&%wQL4NkzzP?=Y7;XH-^ z2}9;?ltXUF?T&k(s&Uxa1C9yUx7jb48|Y{wJv^OEW!1?gx1ocmPN*dBK)cXdR1fb) zRDWEZs6?NgUx@6spG0;Z zI_l4O%jwXJB!kT+vFN3IGqT_XX*2TFbb2}I51G**9s0S%>6OH^7y7AeZpDmdGhyCN zRZca{gk~(r(_~YLAY&f#^Ld3B_ZEB`j}C4>F`Lc!b}rgd^RPedXTrpAc3}bL?K{!E zB}u!dYRbM^^`hMuYqpQZ)~g444)iDb`i2hn4)qRR{wG#jvLo$``)NTmGPAm!z9 zfoDhK9ro#XQ*_Lq^)r5$$8{~k=1!Wm-EaiT0fKY z%mZFNNaVdB>yhy4vS*I1`Wf3)J6?IxPx~|3OxCj(Yujp$<(60HgG}Ny3j>0ERoh=0 VdUmO9#r|7YwC~pU*q`cO`VUS+&~X3& literal 4980 zcmZveUyNK;9mkJ?hzs&pr3lqS5u|iyx~=?kO2zGVySsGTuH7vy6@)W0XJ;;R=icG| z>2@YD`e2k7(U7PZUlgOM8V!mu@n7VDCrBhQ!JrRB5;guoAJhh(unn%O>-{S{Kab7z z{-VGuq26Bu`58+mRc?mbcLwsQxgA~s-w!W>t5DxP5Z-sgco>+$?Y!Rz<1az2_f@F% zzZu3)!Alwc0BXHw!~5sM_ywr%ehDS_%aEV>eHi~0>brkJ+1E@}KXWO3J;S#{z26G8 z&Ng@r+zzGJeBfayxsC_k54B$h%FhF+eIJ36_c5sXPXwNU+UHwPetHVN89ogU!Jk6S zzZTnEYs{Q}f_XW*6a zNvQeHK-u$I$j`h$r~Q5nHUH1>a`HFFqC|sfZG32cpdy4lw9A3Y-xTH-aiku?u+65 zufqG^2EGbU@csgX(!2+tT?Qq`qfqtaaj1R20VT(GVH5rkYTh59zW*DP9RG%z ze<>g9`4*^nzaHxQN8lFtDJVOifm-K#Q1hP-^1^&|@+W_HoEzpndhm^-0j>u%ZyXtKL5?XT-3ZK=AW zjs?Cq@Cf`M?GR08k*-^5TWR-bz%@;iEoW)+rQ+Zy?RJ`U*QMN@ukNVrfdXc(u6yZk zrmfMo)80qhyl&z~Hh(wmHrjh=bF@2Xs+qbLYgGLLy==OZc8sPtQ4a5>9iZvb**QZy zPCHDynuh7C*nSt(bytn5mv2;e6kEF9N>kp-=X+?nlqdUXxU{;K18;!$g?qxbx>o2_ ze-6^FqABL~(afyv#A(^J>AD@KWoCzIUf44CU0b+b-ZZn_u5~u?8+PP+z8Y$fm+jma z_NHFu{b1U5##t1{QD@qA{VA8Yp399ppTx{o7SIul3 z+tsM>xtUGUWIRku?#iN{X1UoHrM=9J`eU;%PJ2ev=Ume9ae&SIC?1E=qDU zkGNG=TVS52v8j6Ao$kbC*SE}pC`JU^9@~y9d@s$$W&!);h06-xH49nPHH-Cbxmk?5 z-Ylkwx0r6&p-aXV0}OM!k(O~+ez0*g@U}>8H_At`8{cIXOH^AL;)C2QyNtoIV`5>J zy*uS`Q75gHTlVWbjCy_bIbGVbQBpzE5230@`<^-E^IR@HjEAbO4uG~Seb}Ft@P3q= z!zsUn8EH0ju{m50+bBx7gbj0vnfKF;mN_!2{c4V!@)^$GFe`n1x)M9=xDuB=*>fc$ z-r}(xr5ipY&am0>H0!Qp$YWN@tkZWnN*?tcd}ZfqwKSHik5-DUqOwtEYiH;6VAU7W zER2R@tKgfqULKpaF6r70-_9{L1|dG8+_tlHBS)Qef`ot}&e6MwhTbl1>esB+?wWIp zqpOmG31w2SS*5!|*seuIj9}4(h*-s1u~|*CY&>1L)Mc!n7M90oPJX4CBMQv6o6Ee)KvC*6|RChVu=`=})K}YCN}4M zdN1C*mzeIRm4toyZR9g08D-%A+d=cIiB%~g&@-El9LhXgriE+TmDnQ+)h71XeLafN zr|og0x8*2KtF&&K_Smc(X&m*ZBJI@Jk9;k=duI17jhR~;yLWNh+BMUfxpl`3*VLh< zL-UP$e5ScAyQ?`fr9wdvHrB=?J}d~1on&K_?6CxChI{rNTRYIW{H}2>r~(jRT}m-m=N48s>X<@3Hmm-o#$F*Y4Ugb)vE06Q8*v&02OLPKzol zcJ6N8(wu3yc+_`O%M`hiSZP^bJ}|#JMLIp?J4IuudrtPVwr`T8wo%nryXa%AK4lhs zKk|uXmv$6Kg&U-nf#?lvOzcQ6Rbks>4Qjj|E|iJ4y>e1S zZcvr*XvhllJzTyYm)0oX1R0;Ps z9}K-SOIbM?AjDGU24z-Ekoh6xa1oy^#ae0E_c39SYfI`MA`k4qC*4v7-Bb3FN+n$z z1)fzDIT|AlK&YA_`Q3!NUX(3!u&(P7d6bY$4x7kygkF)M@S@8jJ3$UVp6rl4&S?ix8;D7Xr)7=Yvwy7C2#i z-CISO3^xel`H8FK*c>MjYEi=z7tRhxf;gQWJ>+n>ibTNGv9~(j3YVasyvS2xqg!@) z(hoM1uFZNQT(y|CeJ-6V5o=?eO+G$u*B;$8WUI=qD&izh6-%7WEFEFWwbRi+QO=2u z$B=cx-jmYivVF!su)*2D4uWQ`N&I9Z{(o%dOIz7v<~IvKKka(ftj9t??KFiUiqlZ2 z24x=ms84_#q_k(LEo#*jv$avq-XW*Fq)gILRC(;b&Z2!TB6!)c95_sMw!-yYX>nhK z2Z`FY<1auG4VvbpvH+L4NtD`w&YsP}S=qX2`4{E8ell&_tmUX#6Ro>W?NYrUVQoa> SuwatfSf#0HcuZ|%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketina" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Barkatu, ez duzu sarrerarik orrialde honetara." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Pluginak" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Txantiloien erakusleihoa" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Kolore skmea" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Iluna" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Argia" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Ilunabarra" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Laburpena" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Hobespenak" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Erosi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Emailak" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domeinuak" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Planak" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Gune guztiak" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Utzi erantzuna" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Utzi iruzkina" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Gorde nire izena, emaila eta webgunea bilatzaile honetan komentatzen dudan hurrengorako." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Harpidetu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Irakurtzen jarraitu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Aukerakoa" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Webgunea" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Utzi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Iruzkin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Erantzun" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Irten" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Hasi zaitez" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Gehitu orrialde berria" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Koadro txikia" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Izendatu Zeure Bloga" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1037,7 +353,7 @@ msgstr "" #: vendor/automattic/custom-fonts/custom-fonts.php:146 #: vendor/automattic/custom-fonts/custom-fonts.php:162 msgid "Fonts" -msgstr "" +msgstr "Letra-tipoak" #: vendor/automattic/custom-fonts/css-generator.php:63 msgid "Headings" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Izenburua" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Bai" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ez" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Editatu" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Baztertu:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Bistatik kendu" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografia" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Gorde" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Telefonoa" msgid "Email" msgstr "E-posta" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Izena" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Erakutsi beharreko iruzkin kopurua:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Iruzkin berriak" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Saretxoa" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Zerrenda" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Neurria:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Erdia" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Eskuina" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Ezkerra" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Bat ere ez" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Izenburua:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-fa_IR.mo b/projects/plugins/wpcomsh/languages/wpcomsh-fa_IR.mo index 108b8b52b0d8fdc163a5b219f954ba994aac5b13..0bd9dc1465f746d7159c8c1d840703c53cc7c79f 100644 GIT binary patch delta 7186 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "بازاریابی" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "با عرض پوزش، شما اجازهٔ دسترسی به این برگه را ندارید." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "افزونه" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "استایل پیش‌فرض" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "استایل کلاسیک" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "نمایشگاه پوسته" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "کاوش در میان پوسته‌ها" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "چند کلمه جذاب برای نوشتن دیدگاه توسط خوانندگان شما" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "تنظیم فرم دیدگاه با پیام و طرح رنگ زیبا." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "رنگ‌بندی" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "نوشتن متن" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "تاریک" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "روشن" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "شفاف" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "فروشگاه خود را راه‌اندازی کنید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "افزودن یک دامنه" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "کسب و کار خود را توسعه دهید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "جمع‌آوری مالیات بر فروش" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "با WooPayments پول دریافت کنید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "محصولات خود را اضافه کنید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "فروشگاه خود را شخصی‌سازی کنید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "غروب آفتاب" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "شکوفه گیلاس" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "دانه برف" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "شب سیاه" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "سیاه سفید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "کلاسیک تیره" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "کلاسیک روشن" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "کلاسیک آبی" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "آبزی" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "نمای‌کلی" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "تنظیمات" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "کسب درآمد" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "پیکربندی" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "پرداخت" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "ایمیل ها" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "دامنه" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "افزودنی" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "طرح‌ها" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "میزبانی" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "همۀ وب‌گاه‌ها" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "خطا: ورود به فیس‌بوکتان منقضی شده است." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "لغوکردن پاسخ" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "برای %s پاسخی بگذارید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "دیدگاهی بنویسید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "ذخیره نام، ایمیل و وبسایت من در مرورگر برای زمانی که دوباره دیدگاهی می‌نویسم." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "مشترک شدن" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "نشانی ایمیل خود را وارد کنید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "ادامه نوشته" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "برای دسترسی به نوشته‌های جدید این سایت و دریافت آخرین مطالب در خبرنامه رایگان عضو شوید." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "مطالب بیشتری از سایت %s کسب کنید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "اختیاری" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "سایت اینترنتی" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "رد کردن" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "دیدگاه‌های نو برایم ایمیل شوند" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "ارسال ایمیل برای نوشته تازه" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "آگاه‌سازی نوشته‌های تازه" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "هفتگی" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "وردپرس" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "دیدگاه" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "پاسخ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "روزانه" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "بی‌درنگ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(نشانی هرگز عمومی نمی‌شود)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "خروج" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "وبگاه (دلبخواه)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "دیدگاهی بنویسید..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "شروع کنید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "آدرس ایمیل دامنه خود را تایید کنید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "نصب سایت" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "نصب و تنظیم Sensei را تمام کنید." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "تنظیم فروشگاه را تمام کنید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "به‌روزرسانی طراحی سایت خود" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "فعال کردن اشتراک‌گذاری نوشته" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "نصب اپلیکیشن موبایل" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "مراحل بعدی برای سایت شما" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "واردسازی مشترکین موجود" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "نصب یک افزونه سفارشی" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "پوسته‌ای را برگزینید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "به روزرسانی صفحه درباره" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "فعال کردن حالت قفل شده" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "حالت قفل" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "یک نفر را انتخاب کنید تا پس از درگذشت شما به سایتتان نگاه کند." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "دامنه خود را سفارشی کنید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "افزودن برگهٔ تازه" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "ترافیک را به سایت خود هدایت کنید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "بیایید برای سایت شما یک نام انتخاب کنیم" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "هدیه دادن" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "بندانگشتی" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "ارتقا طرح" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "انتخاب یک دامنه" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "وبلاگ خود را راه‌اندازی کنید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "ویرایش طراحی سایت" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "سایت خود را راه اندازی کنید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "نام وب‌نوشت شما" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "اجرای سایت خود" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "افزودن پیوندها" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "انتخاب یک طراحی" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "شروع به نوشتن کنید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "نخستین نوشته خود را بنویسید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "افزودن مشترک جدید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "یک طرح را برگزینید" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "خوش شانسی! طراحان پوسته شما قلم‌های خاص msgid "Uncheck to disable" msgstr "برای غیرفعال کردن، چک‌باکس را بردارید" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "Spotify Feed ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "Apple Podcasts Feed ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "عنوان :" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Podcast RSS Feed" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "شنیدن در اسپاتیفای" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "شنیدن در اپل پادکست" @@ -1095,98 +411,114 @@ msgstr "نمایش اطلاعات درباره پادکست شما و اجازه msgid "Podcast" msgstr "پادکست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "انتخاب دستۀ آی‌تیونز:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "تنظیم موضوع پادکست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "تنظیم کلمات کلیدی پادکست" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "تنظیم تصویر پادکست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "تمیز کردن" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "بله" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "نه" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "تنظیم پادکست به عنوان صریح" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "تنظیم حق‌نشر پادکست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "تنظیم خلاصه پادکست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "تنظیمِ نویسندهٔ پادکست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "تنظیم زیرنویس پادکست" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "تنظیم عنوان پادکست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "این نشانی وبی است که شما به iTunes یا سرویس پادکستینگ ارسال می‌کنید." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "خوراک پادکست شما: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "انتخاب دستۀ پادکست:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "موضوع وب‌نوشت برای پادکست‌ها" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "پادکست موضوع 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "پادکست موضوع 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "پادکست موضوع 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "کلمات کلیدی پادکست" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "تصویر پادکست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "علامت‌گذاری به عنوان صریح" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "حق‌نشر پادکست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "خلاصه پادکست" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "نام استعداد پادکست" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "توضیحات پادکست" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "عنوان پادکست" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "ویرایش" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "پیشخوان" @@ -1427,31 +757,31 @@ msgstr "میزان فضای دیسک" msgid "Disk space used" msgstr "حجم فضای استفاده شده" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "برای اطلاعات بیشتر کلیک کنید" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "حساب کردن گزینه‌های زیردسته نسبت به کل والد." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "بیشینهٔ درصد قلم :" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "کمینهٔ درصد قلم:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "شناسه ID دسته‌بندی، جدا شده با ویرگول" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "به جز:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "بیشترین تعداد دسته برای نمایش:" @@ -1469,24 +799,14 @@ msgstr "پراستفاده‌ترین دسته‌های شما در قالب ا msgid "Category Cloud" msgstr "ابر دسته‌ها" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "اتصال Jetpack قطع شده است و سایت خصوصی است. مجددا به JetPack وصل شوید تا تنظیمات نمایش سایت را مدیریت کنید." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "به‌روزرسانیِ رؤیت‌پذیری" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "اجرای سایت" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "لغو" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "شما هم‌اکنون در حال استفاده از %1$s از %2$s محدودیت بارگذاری (%3$s%%) استفاده می‌کنید." @@ -1623,47 +943,47 @@ msgstr "نمایش آخرین تصاویر اینستاگرام شما." msgid "Instagram" msgstr "اینستاگرام" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "زندگی‌نامه" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "سرصفحه" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "عکس" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "عدم نمایش نام" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "نمایش کوچک" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "نمایش متوسط" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "نمایش بزرگ" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "نمایش تصویر بزرگ" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "نشانی وب about.me شما" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "عنوان ابزارک" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "ابزارک about.me پس از ۱ جولای ۲۰۱۶ دیگر در دسترس نخواهد بود. پس از این تاریخ، این ابزارک فقط یک پیوند متنی از نمایه about.me شما را نمایش می‌دهد. لطفا این ابزارک را حذف کنید." @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "نمایش شناسنامۀ about.me شما با تصویر بندانگشتی" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "دریافت داده‌های درخواست‌شده مقدور نبود." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "ساخت یک وبسایت یا وبلاگ رایگان در WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "ساخت یک وبسایت رایگان در WordPress.com" @@ -1702,8 +1017,8 @@ msgstr "نیرو گرفته از WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "وبلاگ در WordPress.com" @@ -1780,10 +1095,6 @@ msgstr "ذخیره" msgid "Activate & Save" msgstr "فعال‌سازی & ذخیره" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "مدیریت تنظیمات نمایش سایت شما" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "این افزوده توسط WordPress.com نصب شده بود و ویژگی‌های مشخص شده در طرح اشتراکی شما را ارائه می‌کند." @@ -1897,8 +1208,7 @@ msgstr "تلفن" msgid "Email" msgstr "ایمیل" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "نام" @@ -1912,27 +1222,27 @@ msgstr "استعلام رزرو" msgid "Reservations" msgstr "رزرویشن" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "نمایش دیدگاه‌ها از:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "رنگ پس‌زمینه متن:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "رنگ پس‌زمینه آواتار:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "بدون آواتار" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(بیشترین ۱۵)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "تعداد دیدگاه‌ها برای نمایش:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "دیدگاه‌های اخیر" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "شما اخیرا هیچ نوشته‌ای را نپسندیده‌اید. به محض انجام این کار، افزوده نوشته‌های مورد علاقه آن‌ها را نمایش می‌دهد." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "در" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s در %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "دوست‌داشتن‌های نویسنده که نمایش داده شود:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "دستگاه مختصات" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "فهرست" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "نمایش به صورت:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "تعداد نوشته‌ها برای نمایش (۱ تا ۱۵):" @@ -2018,62 +1328,62 @@ msgstr "من رای دادم" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "به خوانندگان خود رای دادن‌تان را با استیکر «من رای دادم» نشان دهید." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "متن نمایش داده شده پس از گراواتار. دلبخواه است و می‌تواند برای معرفی خودتان یا وب‌نوشتتان استفاده شود." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "پیوند گراواتار. این یک نشانی وب دلخواه است که هرگاه کسی روی گراواتار شما کلیک کند، استفاده خواهد شد:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "چینش گراواتار:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "اندازه:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "آدرس ایمیل سفارشی:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "کاربری را گزینش کنید و یا «سفارشی» را برگزینید و یک رایانشانی سفارشی وارد نمایید." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "وسط" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "راست" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "چپ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "هیچکدام" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "بسیار بزرگ (۲۵۶ پیکسل)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "بزرگ (۱۲۸ پیکسل)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "متوسط (۹۶ پیکسل)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "کوچک (۶۴ پیکسل)" @@ -2090,7 +1400,7 @@ msgstr "گراواتار" msgid "Insert a Gravatar image" msgstr "قرار دادن یک تصویر گراواتار" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "تصویری برای نمایش در نوار کناری‌تان برگزینید:" @@ -2102,28 +1412,28 @@ msgstr "به تازگی منتشر شده" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "نمایش یک بدج Freshly Pressed در نوارکناری خود" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "اندازه آواتار (پیکسل):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "نمایش همه نویسنده‌ها (به همراه کسانی که چیزی ننوشته‌اند)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "عنوان :" @@ -2139,12 +1449,12 @@ msgstr "نمایش شبکه‌ای از تصاویر چهرک نویسندگان msgid "Author Grid" msgstr "شبکهٔ نویسندگان" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "سایت خصوصی" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "این سایت خصوصی است." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-fi.mo b/projects/plugins/wpcomsh/languages/wpcomsh-fi.mo index 86a7b701435a347aac80bd97cfb8d9a08a3204a0..cd45c4efc8d139434f1b8535ebe305650e3ff02e 100644 GIT binary patch delta 2884 zcmXxkeN5F=9LMp4ktxrjB2QkfAciR@sHo&4X!wXAB#@|F;eynCK<>THbir6{uEm^o zEX(H7t(x{=f3R}XO{db_SdY&6(3Z1Sxn*;#CbPL(@6YAO+5P@r=lmYdIlu2Yzk6r> zy|SJ=sj+VvN`%NJ2A(kHIQpLAK)E~Km<0S8bMOI{U{ahhlW`@MV?8F}G2|9=8r4NV zPQde+j^8-ff5%v3ddv_Nb@UJ!+r-C@bd-!^X}cWrQ4^Vs<8U$ZGvyp+U=IYFvaG@O9K1yoss!3F^KJn1}l#Ib;5a5Ac$j#~3PRL2#lf!3fp+=N-U(`k33 zCU)5IDDtxAI4W}=qxRSpRHp7Gk$*if#0d>BjC$ZPGAA>RyL3GbwTZHkOQy(iDe^NL zIOx76)Wml>ZNFm(_58~?2j4(t@_aJ+*T7#nCk8Q%_I2#U``C(2DI)`1!e-i6Q5_V} zs|GGXWo8j-0?Sd?*P&8ghje9{ke~5!&|H)l3}u8a$}y4xyIn25Q28p(fVzh>CWrnKUwi@ugO=(g^r=#@FZ%W&rvUU7H8rBF4p(|fQmXS;G@-pl}L6?73%yB z%*Ae0M<-DopGIERoJDm!i1m2WY0qIDwRx9d1~#FVW)Cu?>BTgC|8G;#%s+Gd5;f38 zq%U*TY5#;8@HeOZ2n%T|UAn&rm7!A9fJ;z&U<)c!&8YrbQRD5yIL0@xQqhA4k>xc< zP@l<1sEk}eZPGzphTkE7UM7ieN_!v^wFFafDi)%yuSX43j~cicHL*QN7v>Q5D0Qc( z=*BOQpSi$6slSOz;V|lfG@jOdMUD$m8Cl_2iyF8MmEtbcQXW7};2oTXXHflopF#e0 z!);C|1AjOUp*k4Gr!k(L7~SQlH7rLBv=Mb*Blckc_u^wze_^)#Hr$80{}yVgenm~- z&n)t<3_RonAA%V}-gQG7s$&<@mzjskL=|dH1E>k@MP=XsMt42xb3KW>@dwmqtzcdF zI!z5~oLZ;t)%vT0ATe4NQ)zb^(YJQ$Vbo-H5z0y#F`rObMX2MQYEU{yh#reLE+JS& zvxU%J(uRDA=-I$wJ26_ck=WSLKZ`D`B(@T3h|!`oRF+1IKF_5@8<9t7uapzB2xWIY z(LmG_&k!nFjv9Uc&r?}WR1n(TwS@MBiZ5Ss`$p}oRhHGV>+nFy&u zDJ7nb){L3%82#U%UdQ;+ow~xguo@RRb$v1~5bU97*~U@3zktx@@(}9?l}184x>^m2 zHl2z#r8cDgCsbN=DDZ^c{$MEVE?!_e6SvwQ6I*O$QoFsJR1z2TcLdtqwZUM(E=vxK z^|pB;zOcQR++cH3+;&GwjlGr9XzM4OOKJ<74ILp4!FG2?z-~>=wSB1r@zuM60k7d0 z4%+<_S0!)uws-?!cSX?e$B?}VsXa z)m`3DsHi3Achh&!dZ(O9EG;Zv=q@fUTQIMzWWLQzzi($`^x1)oTsxf6Yx^=w6Y3(q zU?}8qcXoIJHa6?Ev73C}a3o~UWYyW!>{1)aZm^HCyY0JEZ^Ui!guH&g$LI6f_g$Ix zx~ss(=iIjc=1j50?s|LBoo>&#m&ba;;fUQe?Q;LJ+{zexH19uqX?ps2O{~zTiKXO! F`#%AsIMM(B literal 9694 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-fi.po b/projects/plugins/wpcomsh/languages/wpcomsh-fi.po index 7baec0bc646d6..8f043db6aa163 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-fi.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-fi.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WordPress.com - Site Helper package. msgid "" msgstr "" -"PO-Revision-Date: 2024-05-21 20:10:05+0000\n" +"PO-Revision-Date: 2024-06-17 11:53:24+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Markkinointi" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Sinulla ei ole oikeutta tähän sivuun." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Lisäosat " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Teemanäyteikkuna" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Värikaava" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Tumma" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Valoisa" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Saa maksuja WooPaymentsilla" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Auringonlasku" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Kontrasti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Yleiskatsaus" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Asetukset" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Säädöt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Ostot" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Sähköpostit" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Verkkotunnukset" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Tilausvaihtoehdot" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Kaikki sivustot" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Virhe: Facebook-kirjautuminen vanhentunut." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Peru vastaus" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Jätä kommentti %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Kommentoi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Tallenna nimeni, sähköpostiosoitteeni ja kotisivuni tähän selaimeen seuraavaa kommentointikertaa varten." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Tilaa" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Syötä sähköpostiosoitteesi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Lue lisää" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Valinnaiset" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Kotisivu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Peruuta" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Viikoittain" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "kommentti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Vastaus" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Osoitetta ei koskaan julkaista)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Kirjaudu ulos" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Kotisivu (valinnainen)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Kirjoita kommentti..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Aloita" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Valitse teema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Lisää uusi sivu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Pienoiskuva" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Nimeä blogisi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Otsikko" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Kyllä" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ei" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Muokkaa" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1418,7 +748,7 @@ msgstr "" #: private-site/access-denied-coming-soon-template.php:46 #: vendor/automattic/jetpack-mu-wpcom/src/features/coming-soon/fallback-coming-soon-page.php:273 msgid "Coming Soon" -msgstr "" +msgstr "Tulossa pian" #: notices/storage-notices.php:116 msgid "Disk space quota" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Jätä pois:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr " kategoriapilvi" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Piilota tämä huomautus." - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "Näytä uusimmat Instagram-kuvasi." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Esittely - Bio" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Valokuva" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Luo ilmainen kotisivu tai blogi osoitteessa WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Luo ilmainen verkkosivu WordPress.comissa" @@ -1703,8 +1018,8 @@ msgstr "Voimanlähteenä WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Pidä blogia WordPress.comissa" @@ -1781,10 +1096,6 @@ msgstr "Tallenna" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Matkapuhelin" msgid "Email" msgstr "Sähköposti" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nimi" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Tekstin taustaväri:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Avatar-hahmon taustaväri:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Ei avatar-kuvia" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(enintään 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Näytettävät kommentit:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Viimeisimmät kommentit" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr ":" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Ruudukko" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Teksti näytetään Gravatarin perässä. Teksti on vapaaehtoinen, ja voit käyttää sitä vaikkapa kuvaamaan itseäsi tai blogisi aihetta." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Koko:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Mukautettu sähköpostiosoite:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Keskelle" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Oikealle" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Vasemmalle" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Ei mitään" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Erittäin suuri (256 pikseliä)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Suuri (128 pikseliä)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Keskikokoinen (96 pikseliä)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Pieni (64 pikseliä)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Näyttää gravatar-kuvan" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "Äskettäin julkaistut" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Avatar-hahmon koko (px)" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Otsikko:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-fo.mo b/projects/plugins/wpcomsh/languages/wpcomsh-fo.mo index 7a56509e3dc2507f75e6c9a60b32e77286867edb..113281b92c9fbea6dd387bff396e2ac8c9e297ca 100644 GIT binary patch delta 1046 zcmYk*O-K}B9LMp;T6Y~Q-*QX0vaL-i3o_{C)I~Q!G4KuPI^^s+w9dlp7zs-YK?HUj zJ9H@sI&?6kmqQ3a>8XMssBRuRbqOkp2>Sl?DSVj!^V$E*K5ze>ecS%Cxwh7pxNT@X z#9m^!&X`kJ-9kqj*=kHbj-rDLn8v%9#HZF}Op(9B1ir?4e1{GA0o!oRKL5I5&HUiQ z5gzoS50(Jki&CjCt)^GE3xQBcQwO|38v1Icqa+&LN+wmqg;sQFRX3RZ4 zaG8g6n&8p;15Rf17pM)aTHhdhHSh5_enf33$>1ic=b+~4V2~=-gjvxtZAF>;wtbb7vqn)tKLzo5SV4YlE4$YuV}X+sGH z)if|i*MUb-CCZ})j-pCAiLF?$UPYa39`(Hi)NgzTb;A3&4HuEiJf~BIUSc1v+WdQp z`ctw0O}kUmW_A!d{VqaH6YVGVDWPcrRZEpPNN6KjLMKz(NoZ4AI78^A{nzv&>Hw`~ zeBxU;1w z?ydKl3XvK1D|F>z)(_(4`rh=&bUEKM5{2&i622J>g3yoLxX$TIO?V}* kP!8fDClk*&xt5j1m8IG2+!a5pTn_z06hCu@;&kJgzih;Nh5!Hn literal 2636 zcmZ9MPi$009LIkmf)+%rf+(VcDDtPROA+H`cHeY&y6??fXXb5L zFM2X+0v?PWG#>O|JlKQ;V+au=c_eD$!Fa%nF&y-SF)^AL6BGRYULTY=ncsZ&H}5wy zzdtkkbLZ-J2yGwaG02rWh{nM1P7G+TuO=D--vI9czXLadSHU&lZ{T|H&s?Xwmgm=k zYcan8#3$O6>sxYe&*%4m=v2gTH~1{r2_6J_-SM0!!ClZ_1o_<8!27^6`S%Y%bowaQ zKLOcp31mM$%jdrUS3$p=>sP=n(7y%w{9i$I`W*wW`wQfA{>|stV^jX#39^5iL5_bb z$m@559pGLNoep5&yp4cte+=aH<$V5yTn|8WTFChl$mgF1dHt&(m*h>b2RsXM9AAPP zP_xS*@B2L#vHex>aqt?5PjmxZ2d;sW>|ZCy_FF-o-=6C|AUf^K=MUubN5F?LKLc(6 z75E6~L2ONDL5}ZT@G0{|m_HU(e_N0MY3m47|@O1i|sH1$m!! zAji`QvRyC8`;~Hi2;2<)Xs!n!*ChgZzn4L-<0~M?{}%WF_#TK(pXU1Kx&95v>wWLS%@&BmkiC#6SV6mg8T2H`adQp0?Sb?|IQCr-Zuc%D8`(#WlWW26pcle< z#oKT4NFs1VGdzcGi=kaGG194u1ix>G#p0}Cg`xV4LYpmWfDTs zF4E4?NT5B9L{f(|a=IEOfhy6c4zXNR+M+7Gs>QZV<2q0@9!ESZib$Ha&|XDOEXGL~ zh<2QaP&btDu?VzlhO&K-CL&o=jwY3CDIo=%&D@w&^PVPkt>ff$I5khWH?*Pw%J&s6U_jbqLZrP zun*m;5S>B-P9Zr#EKKZ0ozHG6%c+O+9E_}1QA*+K+KDC-)=iZ*%^WKnS1rvpg~Qmn zB>IYd{e|MbLT^8QmU@e&;&Xe7XdP1%QzL~rW!bhQdb^7q!!fFFe4*TKVxd>3eGdwv z&48%ZrA26iC(5IR{VR4>8aJD90NE&s{T1yykWnkc!f0$GR}!X~scx`uKrH_p zG-BJJ=pE>IzA&bYveL)4B*wznXScJbue-mySdd|}E;}Z16B9&N67zA#jExsm)fXm$ z6~}L-j4!n)h^!vtDnzn6D3mA?rEeS6GC^XqmrzTr*db*#@oM0IPvTH3OfNZFhHx!u zX-cQ(oX4Y+G-Ttpr#VbS$~F)#O|@;q)2x>!kT#&XbjgWIVm+Uf8JATUB+b})QAsa4 zFVl1QRF(~)8x4(jo1QDtY`PRmJal$2n}Y56u#rS`)TZZaElJ}_M>O6_oJ)ksrmP4P zuh~5G!lxHS3rEX?aL5GO(ipD3(ne<6-E?*im)u)PlMCs2em!_XnkI~~+Dlw>FGYHh zUs21@w9+(!0Fk@0425jnzEKkKe@S*=H_ge=rx%a}M5^Xvrx$FNXzBPQdD~MwBB_iN*HsGz$_i)G ZkNNcnnlsUeBgw2Qr$x3n=_c8t{{S)FU6ud< diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-fo.po b/projects/plugins/wpcomsh/languages/wpcomsh-fo.po index 4894807b186fe..220ab5a25e754 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-fo.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-fo.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Ískoyti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Myrkt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Ljóst" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Sólsetur" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Stillingar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Avlýs svar" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Ger eina viðmerking" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Valtøkt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Heimasíða" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Avlýs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Viðmerking" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Viðmerk" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Rita út" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Smámynd" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Yvirskrift" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ja" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nei" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Broyt" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Tak ikki við:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Vís burtur" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Bloggur á WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Goym" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Telefon" msgid "Email" msgstr "Teldupost bústaður" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Navn" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Tal av viðmerkingum at vísa." @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Nýggjastu viðmerkingar" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Listi" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Miðstilla" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Høgrastilla" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Vinstra" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Eingin" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Yvirskrift:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-fr-ch.mo b/projects/plugins/wpcomsh/languages/wpcomsh-fr-ch.mo index 533c2c9ab8af1aa66e8e40b9b0447e0e6baca068..34c1b29f50034cb32060316b4b07f370881d8684 100644 GIT binary patch delta 8663 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" msgstr "%1$s sur %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Vous pouvez modifier votre Gravatar depuis votre page de profil." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Désolé, vous n’avez pas l’autorisation d’accéder à cette page." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Extensions" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Utilisez l'ancien tableau de bord de WordPress.com pour gérer votre site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Style par défaut" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Utilisez WP-Admin pour gérer votre site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Style classique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Style de l’interface administrateur" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Découvrir les extensions" @@ -72,424 +42,10 @@ msgstr "Accédez à de nombreuses extensions, gratuites et payantes, qui peuvent msgid "Flex your site's features with plugins" msgstr "Ajuster les fonctionnalités de votre site avec des extensions" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Vitrine des Thèmes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Explorer les thèmes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Immergez-vous dans le monde des thèmes WordPress.com. Découvrez les designs adaptables et époustouflants qui attendent de donner vie à votre site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Trouver le thème parfait pour votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Quelques mots pour inciter vos lecteurs à laisser un commentaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Activer les blocs dans les commentaires" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Autoriser les visiteurs à utiliser un compte WordPress.com ou Facebook pour rédiger des commentaires" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Adapter les couleurs du formulaire de commentaires à celles de votre thème." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Jeu de couleurs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Texte d’accueil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Autoriser les blocs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Sombre" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Léger" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparent" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Lancez votre boutique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Ajouter un domaine" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Développer votre activité" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Collecter les taxes de vente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Recevoir vos paiements avec WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Ajouter vos produits" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Personnaliser votre boutique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Sunset" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Powder Snow" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Nightfall" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Contrast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Classic Dark" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Classic Bright" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Classic Blue" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Aquatic" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Vue d’ensemble" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Partager « %s » via Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Pour accéder aux réglages des plans, domaines, adresses e-mail, etc., cliquez sur « Hébergement » dans la colonne latérale." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Réglages" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Monétisation" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Monitorage" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Configuration" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Achats" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-mails" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domaines" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Modules" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Plans" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Hébergement" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Tous les sites" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Erreur : essayez à nouveau de saisir un commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Erreur: votre connexion Facebook a expiré." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Annuler la réponse." - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Laissez une réponse à %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Laisser un commentaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Enregistrer mon nom, mon e-mail et mon site Web dans le navigateur pour mon prochain commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Commentaire envoyé avec succès" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "S'abonner" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Entrez votre adresse e-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Vous souhaitez être au courant de la publication de nouveaux articles sur le blog ? Cliquez tout simplement sur le bouton ci-dessous pour rester au fait !" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Ne manquez rien !" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Lire la suite" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Abonnez-vous pour poursuivre la lecture et avoir accès à l’ensemble des archives." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "En savoir plus sur %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Chargement de votre commentaire…" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Nous vous tiendrons au courant !" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Facultatif" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Site web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Écrire une réponse…" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Annuler" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "M’envoyer de nouveaux commentaires par e-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "M’informer des nouveaux articles par e-mail " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "M’informer des nouveaux articles" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Hebdomadaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Commentaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Répondre" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Quotidien" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Instantanément" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(adresse strictement confidentielle)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Se déconnecter" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Connecté(e) via %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Connectez-vous pour laisser un commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Connectez-vous pour laisser une réponse." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Laissez un commentaire. (connexion facultative)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Laissez une réponse. (connexion facultative)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Site Web (facultatif)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "Adresse e-mail (adresse strictement confidentielle)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Recevez les notifications Web et mobiles relatives aux articles publiés sur ce site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Connectez-vous ou indiquez votre nom et votre adresse e-mail pour laisser un commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Connectez-vous ou indiquez votre nom et votre adresse e-mail pour laisser une réponse." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Écrire un commentaire..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Commencer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Utilisez l’outil d’importation guidée de WordPress.com pour importer des articles et des commentaires depuis Medium, Substack, Squarespace, Wix, etc." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Consultez les %1$sRéglages de Jetpack%2$s pour découvrir d'autres réglages d’écriture fournis par Jetpack." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Mises à jour programmées" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Vérifiez l’adresse e-mail de vos domaines." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Configuration du site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Finir de configurer Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Terminer la configuration de la boutique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Mettre à jour le design de votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Activer le partage d’article" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Installer l’application mobile" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "Aucun fichier n’est rétabli." @@ -563,134 +119,6 @@ msgstr "Une importation est déjà en cours." msgid "The backup import has been cancelled." msgstr "L’importation de la sauvegarde a été annulée." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Les prochaines étapes pour votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Ajouter le bloc S’abonner à votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Importer des abonnés existants" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Voir les statistiques du site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "Configurer les SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Installer une extension personnalisée" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Choisissez un thème" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Configurer une offre pour vos fans" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Connecter un compte Stripe pour encaisser des paiements" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Ajouter une page À propos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Gérer votre plan de newsletter payante" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Connecter vos comptes de réseaux sociaux" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Gérer vos abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Rédiger trois articles" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Obtenir vos dix premiers abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Activer la fenêtre modale des abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Personnaliser le message de bienvenue" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Gagnez de l’argent avec votre newsletter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Mettre à jour votre page À propos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Migrer le contenu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "Vérifiez votre adresse e-mail." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Empêche la création de nouveaux articles et de nouvelles pages, ainsi que la modification des articles et des pages existants, et ferme les commentaires à l’échelle du site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Activer mode verrouillé" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Mode verrouillé" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Pour devenir propriétaire du site, nous demandons à la personne que vous avez désignée de nous contacter au %s en joignant une copie de l’acte de décès." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Choisissez la personne qui gérera votre site après votre décès." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Contact à des fins d’héritage" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Propriété améliorée" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "L’option « Tout le monde peut s’inscrire » est actuellement activée. Le rôle actuel par défaut est %1$s. %4$s Veuillez envisager de désactiver cette option si une inscription ouverte n’est pas nécessaire." @@ -720,149 +148,37 @@ msgstr "Le fichier n’existe pas" msgid "Could not determine importer type." msgstr "Impossible de déterminer le type d’importateur" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Partager votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Modifier une page" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Votre site contient des styles premium. Procédez à la mise à niveau dès maintenant pour les publier et accéder à de nombreuses autres fonctionnalités." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Personnalisez votre domaine" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Ajouter une nouvelle page" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Accroître le trafic sur votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Attribuer un nom à votre nouveau site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Demander votre domaine gratuit pendant 1 an" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Offrir" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniature" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Partager « %s » via Publicize" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Partager" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Mettre l‘offre à niveau" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Créer une newsletter payante" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Configurer le mode de paiement" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Choisissez un domaine." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Lancer votre blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Modifier le design du site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Configurer votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Nom de Votre Blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personnalisez votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Chargez votre première vidéo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Configurez votre site de vidéos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Activer votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Ajouter des liens" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personnaliser votre Lien en bio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Sélectionner une conception" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Commencer à écrire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Rédigez votre premier article de blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Ajouter des abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Choisissez un plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personnaliser votre Newsletter" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "Impossible de charger la classe %1$s. Ajoutez le paquet qui la contient à l’aide de l’éditeur et veillez à demander le chargeur automatique Jetpack." #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Les alias textdomain doivent être enregistrés avant le hook %1$s. Cet avis a été déclenché par le domaine %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "Le script « %s » dépend de wp-i18n, mais ne spécifie pas « textdomain »." @@ -1063,27 +379,27 @@ msgstr "Vous avez de la chance ! Les concepteurs de vos thèmes ont choisi pour msgid "Uncheck to disable" msgstr "Décocher pour désactiver" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "ID du flux Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "ID du flux de podcasts Apple" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titre" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Flux RSS de podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Écouter sur Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Écouter des podcasts Apple" @@ -1095,98 +411,114 @@ msgstr "Afficher les informations concernant le podcast et permettre aux visiteu msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Choisir la catégorie iTunes :" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Définir la catégorie du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Définir les tags du podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Définir l’image du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Nettoyer" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Oui" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Non" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Définir le podcast comme explicite" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Définir les droits d’auteur du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Définir le résumé du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Ajouter l’auteur du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Définir le sous-titre du podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Définir le titre du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Ceci est l’URL à partager avec iTunes ou tout autre service de podcasting." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Votre flux de podcast: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Choisir la catégorie du podcast :" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Catégorie du blog pour les podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Catégorie 3 de podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Catégorie 2 des podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Catégorie 1 des podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Tags du podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Image du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Indiquer comme explicite" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Droit d’auteur du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Résumé du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Nom du talent du podcast" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Sous-titre du podcast" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Titre du podcast" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Modifier" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Mon accueil" @@ -1428,31 +758,31 @@ msgstr "Quota d'espace disque" msgid "Disk space used" msgstr "Espace disque utilisé" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Cliquez pour plus d'informations" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Dénombrer les éléments par sous-catégories pour le total parent." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Pourcentage maximum de la taille de la police de caractère :" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Pourcentage minimal de police de charactère:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "ID de catégorie, séparés par des virgules" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Exclure :" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Nombre maximum de catégories à afficher :" @@ -1470,24 +800,14 @@ msgstr "Vos catégories les plus utilisées sous forme de nuage de mots." msgid "Category Cloud" msgstr "Nuage de Catégories" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack est déconnecté et le site est privé. Reconnectez Jetpack pour gérer les paramètres de visibilité du site." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Mettre à jour la visibilité" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Activer le site" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Rejeter" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Vous utilisez actuellement %1$s sur %2$s (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Afficher vos dernières photos Instagram." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biographie" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Titre" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Photo" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Ne Pas Afficher le Nom" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Afficher Petit" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Afficher Medium" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Afficher Large" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Afficher X-Large" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Votre URL about.me" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Titre du widget" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "Le widget about.me ne sera plus disponible au le 1er juillet 2016. Après cette date, le widget affichera un lien hypertexte vers votre compte about.me. Merci de supprimer ce widget." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Votre profil About.me avec une miniature" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Impossible d’extraire les données demandées." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Créez un site Web ou un blog gratuitement sur WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Créer gratuitement un site sur WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Propulsé par WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Bloguez sur WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Enregistrer" msgid "Activate & Save" msgstr "Activer & Enregistrer" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Gérer les paramètres de visibilité de votre site" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Tél." msgid "Email" msgstr "Adresse e-mail" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nom" @@ -1913,27 +1223,27 @@ msgstr "Demande de Réservation" msgid "Reservations" msgstr "Réservations" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Afficher les commentaires tirés de :" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Couleur d'arrière plan de texte:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Couleur d'arrière-plan de l'avatar :" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Pas d'avatars" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 au plus)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Nombre de commentaires à afficher :" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Commentaires récents" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Vous n'avez aimé aucun article récemment. Lorsque vous le faites, ce widget Articles que J'aime répertorie les articles concernés." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "le" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s sur %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Les mentions J'aime de l'auteur à afficher :" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Grille" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Liste" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Afficher comme :" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Nombre d'articles à afficher (1 à 15) :" @@ -2019,62 +1329,62 @@ msgstr "J'ai voté" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Montrez à vos lecteurs que vous avez voté avec un badge « I Voted. »" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Texte affiché après le Gravatar. Il est optionnel et peut être utilisé pour vous décrire ou préciser le sujet de votre blog." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Lien Gravatar. C'est une URL facultative qui sera utilisée quand quelqu’un clique sur votre Gravatar :" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Alignement du Gravatar:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Taille :" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Adresse e-mail personnalisée :" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Sélectionnez un utilisateur ou choisissez \"autre\" et entrez une adresse e-mail personnalisée. " -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centre" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Droite" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Gauche" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Aucun" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra Large (256 pixels)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Grand (128 pixels) " -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Moyen (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Petit (64 pixels)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Insérer un image Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Choisir une image à afficher dans la sidebar:" @@ -2103,28 +1413,28 @@ msgstr "Fraîchement Pressé" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Afficher le badge Fraîchement Pressé dans la sidebar" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Grandeur d'avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Afficher tous les auteurs (y compris qui n'ont rédigé aucun article)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titre :" @@ -2140,12 +1450,12 @@ msgstr "Afficher en grille les avatars d'auteurs" msgid "Author Grid" msgstr "Grille d'auteurs" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Site privé" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Ce site est privé." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-fr_BE.mo b/projects/plugins/wpcomsh/languages/wpcomsh-fr_BE.mo index 219493bb6f0e396e5909d92a7368a9706c26fd0d..878cbe791cbc1235fd18546a30b420675e7b5d93 100644 GIT binary patch delta 8638 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" msgstr "%1$s sur %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Vous pouvez modifier votre Gravatar depuis votre page de profil." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Désolé, vous n’avez pas l’autorisation d’accéder à cette page." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Extensions" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Utilisez l'ancien tableau de bord de WordPress.com pour gérer votre site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Style par défaut" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Utilisez WP-Admin pour gérer votre site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Style classique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Style de l’interface administrateur" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Découvrir les extensions" @@ -72,424 +42,10 @@ msgstr "Accédez à de nombreuses extensions, gratuites et payantes, qui peuvent msgid "Flex your site's features with plugins" msgstr "Ajuster les fonctionnalités de votre site avec des extensions" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Vitrine des Thèmes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Explorer les thèmes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Immergez-vous dans le monde des thèmes WordPress.com. Découvrez les designs adaptables et époustouflants qui attendent de donner vie à votre site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Trouver le thème parfait pour votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Quelques mots pour inciter vos lecteurs à laisser un commentaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Activer les blocs dans les commentaires" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Autoriser les visiteurs à utiliser un compte WordPress.com ou Facebook pour rédiger des commentaires" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Adapter les couleurs du formulaire de commentaires à celles de votre thème." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Jeu de couleurs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Texte d’accueil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Autoriser les blocs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Foncé" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Léger" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparent" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Lancez votre boutique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Ajouter un domaine" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Développer votre activité" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Collecter les taxes de vente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Recevoir vos paiements avec WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Ajouter vos produits" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Personnaliser votre boutique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Coucher du soleil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Powder Snow" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Nightfall" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Contrast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Classic Dark" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Classic Bright" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Classic Blue" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Aquatic" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Vue d’ensemble" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Partager « %s » via Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Pour accéder aux réglages des plans, domaines, adresses e-mail, etc., cliquez sur « Hébergement » dans la colonne latérale." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Réglages" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Monétisation" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Monitorage" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Configuration" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Achats" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-mails" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domaines" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Modules" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Plans" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Hébergement" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Tous les sites" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Erreur : essayez à nouveau de saisir un commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Erreur: votre connexion Facebook a expiré." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Annuler la réponse." - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Répondre à %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Laisser un commentaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Enregistrer mon nom, mon e-mail et mon site web dans le navigateur pour mon prochain commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Commentaire envoyé avec succès" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Souscrire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Entrez votre adresse mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Vous souhaitez être au courant de la publication de nouveaux articles sur le blog ? Cliquez tout simplement sur le bouton ci-dessous pour rester au fait !" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Ne manquez rien !" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Lire la suite" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Abonnez-vous pour poursuivre la lecture et avoir accès à l’ensemble des archives." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "En savoir plus sur %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Chargement de votre commentaire…" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Nous vous tiendrons au courant !" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Facultatif" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Site web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Écrire une réponse…" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Annuler" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "M’envoyer de nouveaux commentaires par e-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "M’informer des nouveaux articles par e-mail " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "M’informer des nouveaux articles" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Hebdomadaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Commentaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Répondre" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Journalier" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Instantanément" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(adresse strictement confidentielle)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Se déconnecter" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Connecté(e) via %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Connectez-vous pour laisser un commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Connectez-vous pour laisser une réponse." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Laissez un commentaire. (connexion facultative)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Laissez une réponse. (connexion facultative)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Site Web (facultatif)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "Adresse e-mail (adresse strictement confidentielle)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Recevez les notifications Web et mobiles relatives aux articles publiés sur ce site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Connectez-vous ou indiquez votre nom et votre adresse e-mail pour laisser un commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Connectez-vous ou indiquez votre nom et votre adresse e-mail pour laisser une réponse." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Écrire un commentaire..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Commencer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Utilisez l’outil d’importation guidée de WordPress.com pour importer des articles et des commentaires depuis Medium, Substack, Squarespace, Wix, etc." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Consultez les %1$sRéglages de Jetpack%2$s pour découvrir d'autres réglages d’écriture fournis par Jetpack." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Mises à jour programmées" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Vérifiez l’adresse e-mail de vos domaines." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Configuration du site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Finir de configurer Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Terminer la configuration de la boutique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Mettre à jour le design de votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Activer le partage d’article" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Installer l’application mobile" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "Aucun fichier n’est rétabli." @@ -563,134 +119,6 @@ msgstr "Une importation est déjà en cours." msgid "The backup import has been cancelled." msgstr "L’importation de la sauvegarde a été annulée." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Les prochaines étapes pour votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Ajouter le bloc S’abonner à votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Importer des abonnés existants" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Voir les statistiques du site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "Configurer les SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Installer une extension personnalisée" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Choisir un thème" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Configurer une offre pour vos fans" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Connecter un compte Stripe pour encaisser des paiements" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Ajouter une page À propos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Gérer votre plan de newsletter payante" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Connecter vos comptes de réseaux sociaux" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Gérer vos abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Rédiger trois articles" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Obtenir vos dix premiers abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Activer la fenêtre modale des abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Personnaliser le message de bienvenue" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Gagnez de l’argent avec votre newsletter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Mettre à jour votre page À propos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Migrer le contenu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "Vérifiez votre adresse e-mail." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Empêche la création de nouveaux articles et de nouvelles pages, ainsi que la modification des articles et des pages existants, et ferme les commentaires à l’échelle du site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Activer mode verrouillé" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Mode verrouillé" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Pour devenir propriétaire du site, nous demandons à la personne que vous avez désignée de nous contacter au %s en joignant une copie de l’acte de décès." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Choisissez la personne qui gérera votre site après votre décès." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Contact à des fins d’héritage" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Propriété améliorée" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "L’option « Tout le monde peut s’inscrire » est actuellement activée. Le rôle actuel par défaut est %1$s. %4$s Veuillez envisager de désactiver cette option si une inscription ouverte n’est pas nécessaire." @@ -720,149 +148,37 @@ msgstr "Le fichier n’existe pas" msgid "Could not determine importer type." msgstr "Impossible de déterminer le type d’importateur" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Partager votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Modifier une page" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Votre site contient des styles premium. Procédez à la mise à niveau dès maintenant pour les publier et accéder à de nombreuses autres fonctionnalités." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Personnalisez votre domaine" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Ajouter nouvelle page" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Accroître le trafic sur votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Attribuer un nom à votre nouveau site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Demander votre domaine gratuit pendant 1 an" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Offrir" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniature" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Partager « %s » via Publicize" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Partager" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Mettre l‘offre à niveau" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Créer une newsletter payante" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Configurer le mode de paiement" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Choisissez un domaine." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Lancer votre blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Modifier le design du site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Configurer votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Nom de Votre Blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personnalisez votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Chargez votre première vidéo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Configurez votre site de vidéos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Activer votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Ajouter des liens" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personnaliser votre Lien en bio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Sélectionner une conception" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Commencer à écrire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Rédigez votre premier article de blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Ajouter des abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Choisissez un plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personnaliser votre Newsletter" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "Impossible de charger la classe %1$s. Ajoutez le paquet qui la contient à l’aide de l’éditeur et veillez à demander le chargeur automatique Jetpack." #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Les alias textdomain doivent être enregistrés avant le hook %1$s. Cet avis a été déclenché par le domaine %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "Le script « %s » dépend de wp-i18n, mais ne spécifie pas « textdomain »." @@ -1063,27 +379,27 @@ msgstr "Vous avez de la chance ! Les concepteurs de vos thèmes ont choisi pour msgid "Uncheck to disable" msgstr "Décocher pour désactiver" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "ID du flux Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "ID du flux de podcasts Apple" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titre" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Flux RSS de podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Écouter sur Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Écouter des podcasts Apple" @@ -1095,98 +411,114 @@ msgstr "Afficher les informations concernant le podcast et permettre aux visiteu msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Choisir la catégorie iTunes :" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Définir la catégorie du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Définir les tags du podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Définir l’image du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Nettoyer" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Oui" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Non" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Définir le podcast comme explicite" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Définir les droits d’auteur du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Définir le résumé du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Ajouter l’auteur du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Définir le sous-titre du podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Définir le titre du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Ceci est l’URL à partager avec iTunes ou tout autre service de podcasting." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Votre flux de podcast: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Choisir la catégorie du podcast :" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Catégorie du blog pour les podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Catégorie 3 de podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Catégorie 2 des podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Catégorie 1 des podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Tags du podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Image du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Indiquer comme explicite" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Droit d’auteur du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Résumé du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Nom du talent du podcast" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Sous-titre du podcast" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Titre du podcast" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Modifier" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Mon accueil" @@ -1428,31 +758,31 @@ msgstr "Quota d'espace disque" msgid "Disk space used" msgstr "Espace disque utilisé" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Cliquez pour plus d'informations" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Dénombrer les éléments par sous-catégories pour le total parent." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Pourcentage maximum de la taille de la police de caractère :" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Pourcentage minimal de police de charactère:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "ID de catégorie, séparés par des virgules" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Exclure :" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Nombre maximum de catégories à afficher :" @@ -1470,24 +800,14 @@ msgstr "Vos catégories les plus utilisées sous forme de nuage de mots." msgid "Category Cloud" msgstr "Nuage de Catégories" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack est déconnecté et le site est privé. Reconnectez Jetpack pour gérer les paramètres de visibilité du site." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Mettre à jour la visibilité" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Activer le site" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Fermer" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Vous utilisez actuellement %1$s sur %2$s (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Afficher vos dernières photos Instagram." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biographie" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Titre" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Photo" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Ne Pas Afficher le Nom" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Afficher Petit" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Afficher Medium" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Afficher Large" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Afficher X-Large" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Votre URL about.me" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Titre du widget" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "Le widget about.me ne sera plus disponible au le 1er juillet 2016. Après cette date, le widget affichera un lien hypertexte vers votre compte about.me. Merci de supprimer ce widget." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Votre profil About.me avec une miniature" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Impossible d’extraire les données demandées." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Créez un site Web ou un blog gratuitement sur WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Créer gratuitement un site sur WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Propulsé par WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Propulsé par WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Enregistrer" msgid "Activate & Save" msgstr "Activer & Enregistrer" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Gérer les paramètres de visibilité de votre site" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Téléphone" msgid "Email" msgstr "Adresse de contact" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nom" @@ -1913,27 +1223,27 @@ msgstr "Demande de Réservation" msgid "Reservations" msgstr "Réservations" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Afficher les commentaires tirés de :" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Couleur d'arrière-plan de texte :" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Couleur d'arrière-plan de l'avatar :" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Pas d'avatars" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 au plus)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Nombre de commentaires à afficher :" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Commentaires récents" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Vous n'avez aimé aucun article récemment. Lorsque vous le faites, ce widget Articles que J'aime répertorie les articles concernés." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "sur" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s sur %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Les mentions J'aime de l'auteur à afficher :" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Grille" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Liste" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Afficher comme :" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Nombre d'articles à afficher (1 à 15) :" @@ -2019,62 +1329,62 @@ msgstr "J'ai voté" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Montrez à vos lecteurs que vous avez voté avec un badge « I Voted. »" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Texte affiché après le Gravatar. Il est optionnel et peut être utilisé pour vous décrire ou préciser le sujet de votre blog." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Lien Gravatar. C'est une URL facultative qui sera utilisée quand quelqu’un clique sur votre Gravatar :" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Alignement Gravatar :" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Taille :" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Adresse email personnalisée :" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Sélectionnez un utilisateur ou choisissez \"personnalisé\" et entrez une adresse email personnalisée. " -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centre" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Droite" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Gauche" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Aucun" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra Large (256 pixels)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Grand (128 pixels) " -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Moyen (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Petit (64 pixels)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Insertion d'une image Gravatar." -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Choisir une image à afficher dans la sidebar:" @@ -2103,28 +1413,28 @@ msgstr "Fraîchement Pressé" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Afficher le badge Fraîchement Pressé dans la sidebar" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Taille d'avatar (px) :" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Afficher tous les auteurs (y compris ceux qui n’ont rédigé aucun article)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titre :" @@ -2140,12 +1450,12 @@ msgstr "Afficher en grille les avatars d'auteurs" msgid "Author Grid" msgstr "Grille d'auteurs" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Site privé" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Ce site est privé." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-fr_CA.mo b/projects/plugins/wpcomsh/languages/wpcomsh-fr_CA.mo index b946c5cf12b397045fd4c666761917fdbde98ed2..fbdb5a7e6bcb38936f1c9dabab811454c0c1a2c5 100644 GIT binary patch delta 8711 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 literal 52315 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" msgstr "%1$s sur %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Vous pouvez modifier votre Gravatar depuis votre page de profil." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Désolé, vous n’avez pas l’autorisation d’accéder à cette page." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Extensions" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Utilisez l'ancien tableau de bord de WordPress.com pour gérer votre site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Style par défaut" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Utilisez WP-Admin pour gérer votre site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Style classique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Style de l’interface administrateur" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Découvrir les extensions" @@ -72,424 +42,10 @@ msgstr "Accédez à de nombreuses extensions, gratuites et payantes, qui peuvent msgid "Flex your site's features with plugins" msgstr "Ajuster les fonctionnalités de votre site avec des extensions" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Vitrine des Thèmes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Explorer les thèmes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Immergez-vous dans le monde des thèmes WordPress.com. Découvrez les designs adaptables et époustouflants qui attendent de donner vie à votre site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Trouver le thème parfait pour votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Quelques mots pour inciter vos lecteurs à laisser un commentaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Activer les blocs dans les commentaires" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Autoriser les visiteurs à utiliser un compte WordPress.com ou Facebook pour rédiger des commentaires" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Adapter les couleurs du formulaire de commentaires à celles de votre thème." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Jeu de couleurs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Texte d’accueil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Autoriser les blocs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Foncé" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Clair" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparent" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Lancez votre boutique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Ajouter un domaine" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Développer votre activité" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Collecter les taxes de vente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Se faire payer avec WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Ajouter vos produits" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Personnaliser votre boutique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Coucher du soleil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Powder Snow" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Nightfall" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Contrast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Classic Dark" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Classic Bright" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Classic Blue" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Aquatic" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Vue d’ensemble" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Partager « %s » via Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Pour accéder aux réglages des plans, domaines, adresses e-mail, etc., cliquez sur « Hébergement » dans la colonne latérale." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Réglages" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Monétisation" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Monitorage" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Configuration" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Achats" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Courriels" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domaines" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Modules" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Forfaits" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Hébergement" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Tous les sites" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Erreur : essayez à nouveau de saisir un commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Erreur : votre connexion Facebook a expiré." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Annuler la réponse" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Répondre à %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Laisser un commentaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Enregistrer mon nom, courriel et site web dans le navigateur pour la prochaine fois que je commenterai." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Commentaire envoyé avec succès" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Abonnement" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Entrer votre adresse de courriel" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Vous souhaitez être au courant de la publication de nouveaux articles sur le blog ? Cliquez tout simplement sur le bouton ci-dessous pour rester au fait !" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Ne manquez rien !" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Lire la suite" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Abonnez-vous pour poursuivre la lecture et avoir accès à l’ensemble des archives." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "En savoir plus sur %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Chargement de votre commentaire…" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Nous vous tiendrons au courant !" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Facultatif" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Site web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Écrire une réponse…" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Annuler" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "M’envoyer de nouveaux commentaires par e-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "M’informer des nouveaux articles par e-mail " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "M’informer des nouveaux articles" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Hebdomadaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Commentaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Répondre" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Quotidien" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Instantané" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(adresse strictement confidentielle)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Déconnexion" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Connecté(e) via %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Connectez-vous pour laisser un commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Connectez-vous pour laisser une réponse." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Laissez un commentaire. (connexion facultative)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Laissez une réponse. (connexion facultative)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Site Web (facultatif)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "Adresse e-mail (adresse strictement confidentielle)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Recevez les notifications Web et mobiles relatives aux articles publiés sur ce site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Connectez-vous ou indiquez votre nom et votre adresse e-mail pour laisser un commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Connectez-vous ou indiquez votre nom et votre adresse e-mail pour laisser une réponse." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Écrire un commentaire..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Commencer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Utilisez l’outil d’importation guidée de WordPress.com pour importer des articles et des commentaires depuis Medium, Substack, Squarespace, Wix, etc." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Consultez les %1$sRéglages de Jetpack%2$s pour découvrir d'autres réglages d’écriture fournis par Jetpack." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Mises à jour programmées" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Vérifiez l’adresse e-mail de vos domaines." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Configuration du site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Finir de configurer Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Terminer la configuration de la boutique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Mettre à jour le design de votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Activer le partage d’article" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Installer l’application mobile" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "Aucun fichier n’est rétabli." @@ -563,134 +119,6 @@ msgstr "Une importation est déjà en cours." msgid "The backup import has been cancelled." msgstr "L’importation de la sauvegarde a été annulée." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Les prochaines étapes pour votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Ajouter le bloc S’abonner à votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Importer des abonnés existants" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Voir les statistiques du site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "Configurer les SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Installer une extension personnalisée" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Choisir un thème" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Configurer une offre pour vos fans" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Connecter un compte Stripe pour encaisser des paiements" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Ajouter une page À propos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Gérer votre plan de newsletter payante" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Connecter vos comptes de réseaux sociaux" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Gérer vos abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Rédiger trois articles" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Obtenir vos dix premiers abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Activer la fenêtre modale des abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Personnaliser le message de bienvenue" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Gagnez de l’argent avec votre newsletter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Mettre à jour votre page À propos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Migrer le contenu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "Vérifiez votre adresse e-mail." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Empêche la création de nouveaux articles et de nouvelles pages, ainsi que la modification des articles et des pages existants, et ferme les commentaires à l’échelle du site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Activer mode verrouillé" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Mode verrouillé" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Pour devenir propriétaire du site, nous demandons à la personne que vous avez désignée de nous contacter au %s en joignant une copie de l’acte de décès." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Choisissez la personne qui gérera votre site après votre décès." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Contact à des fins d’héritage" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Propriété améliorée" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "L’option « Tout le monde peut s’inscrire » est actuellement activée. Le rôle actuel par défaut est %1$s. %4$s Veuillez envisager de désactiver cette option si une inscription ouverte n’est pas nécessaire." @@ -720,149 +148,37 @@ msgstr "Le fichier n’existe pas" msgid "Could not determine importer type." msgstr "Impossible de déterminer le type d’importateur" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Partager votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Modifier une page" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Votre site contient des styles premium. Procédez à la mise à niveau dès maintenant pour les publier et accéder à de nombreuses autres fonctionnalités." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Personnalisez votre domaine" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Ajouter une nouvelle page" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Accroître le trafic sur votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Attribuer un nom à votre nouveau site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Demander votre domaine gratuit pendant 1 an" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Offrir" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniature" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Partager « %s » via Publicize" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Partager" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Mettre l‘offre à niveau" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Créer une newsletter payante" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Configurer le mode de paiement" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Choisissez un domaine." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Lancer votre blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Modifier le design du site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Configurer votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Nommez votre blogue" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personnalisez votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Chargez votre première vidéo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Configurez votre site de vidéos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Activer votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Ajouter des liens" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personnaliser votre Lien en bio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Sélectionner une conception" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Commencer à écrire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Rédigez votre premier article de blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Ajouter des abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Choisissez un plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personnaliser votre Newsletter" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "Impossible de charger la classe %1$s. Ajoutez le paquet qui la contient à l’aide de l’éditeur et veillez à demander le chargeur automatique Jetpack." #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Les alias textdomain doivent être enregistrés avant le hook %1$s. Cet avis a été déclenché par le domaine %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "Le script « %s » dépend de wp-i18n, mais ne spécifie pas « textdomain »." @@ -1063,27 +379,27 @@ msgstr "Vous avez de la chance ! Les concepteurs de vos thèmes ont choisi pour msgid "Uncheck to disable" msgstr "Décocher pour désactiver" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "ID du flux Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "ID du flux de podcasts Apple" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titre :" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Flux RSS de podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Écouter sur Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Écouter des podcasts Apple" @@ -1095,98 +411,114 @@ msgstr "Afficher les informations concernant le podcast et permettre aux visiteu msgid "Podcast" msgstr "Balado" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Choisir la catégorie iTunes :" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Définir la catégorie de la balado" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Définir les mots-clés de la balado" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Définir l’image de la balado" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Nettoyer" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Oui" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Non" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Définir la balado comme explicite" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Définir les droits d’auteur de la balado" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Définir le résumé de la balado" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Ajouter l’auteur du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Définir le sous-titre de la balado" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Définir le titre de la balado" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Ceci est l’URL à partager avec iTunes ou tout autre service de podcasting." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Votre flux de balado : %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Choisir la catégorie de la balado :" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Catégorie du blogue pour les balados" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Catégorie 3 de balados" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Catégorie 2 des balados" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Catégorie 1 des balados" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Mots-clés de la balado" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Image de la balado" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Indiquer comme explicite" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Droit d’auteur de la balado" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Résumé de la balado" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Nom du talent du podcast" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Sous-titre de la balado" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Titre de la balado" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Modifier" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Mon accueil" @@ -1428,31 +758,31 @@ msgstr "Quota d'espace disque" msgid "Disk space used" msgstr "Espace disque utilisé" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Cliquez pour plus d'informations" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Dénombrer les éléments par sous-catégories pour le total parent." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Pourcentage maximum de la taille de la police de caractère :" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Pourcentage minimal de police de charactère :" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "ID de catégorie, séparés par des virgules" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Exclure :" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Nombre maximum de catégories à afficher :" @@ -1470,24 +800,14 @@ msgstr "Vos catégories les plus utilisées sous forme de nuage de mots." msgid "Category Cloud" msgstr "Nuage de catégories" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack est déconnecté et le site est privé. Reconnectez Jetpack pour gérer les paramètres de visibilité du site." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Mettre à jour la visibilité" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Activer le site" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Rejeter" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Vous utilisez actuellement %1$s sur votre limite de téléversement, qui est de %2$s (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Afficher vos dernières photos Instagram." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biographie" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Titre" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Photo" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Ne pas afficher le nom" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Afficher Petit" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Afficher Medium" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Afficher Large" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Afficher X-Large" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Votre adresse URL about.me" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Titre du widget" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "Le widget about.me ne sera plus disponible au le 1er juillet 2016. Après cette date, le widget affichera un lien hypertexte vers votre compte about.me. Merci de supprimer ce widget." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Votre profil About.me avec une miniature" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Impossible d’extraire les données demandées." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Créez un site Web ou un blogue gratuit sur WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Créez un site Web gratuit sur WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Propulsé par WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Propulsé par WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Sauvegarder" msgid "Activate & Save" msgstr "Activer & Enregistrer" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Gérer les paramètres de visibilité de votre site" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Téléphone" msgid "Email" msgstr "Adresse de courriel" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nom" @@ -1913,27 +1223,27 @@ msgstr "Demande de Réservation" msgid "Reservations" msgstr "Réservations" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Afficher commentaires par :" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Couleur d’arrière plan de texte :" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Couleur d’arrière-plan de l’avatar :" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Pas d’avatars" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 au plus)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Nombre de commentaires à afficher :" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Commentaires récents" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Vous n'avez aimé aucun article récemment. Lorsque vous le faites, ce widget Articles que J'aime répertorie les articles concernés." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "le" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s sur %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Les « J’aime » de l’auteur à afficher :" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Grille" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Liste" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Afficher comme :" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Nombre d'articles à afficher (1 à 15) :" @@ -2019,62 +1329,62 @@ msgstr "J'ai voté" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Montrez à vos lecteurs que vous avez voté avec un badge « I Voted. »" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Texte affiché après le Gravatar. Il est optionnel et peut être utilisé pour vous décrire ou préciser le sujet de votre blogue." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Lien Gravatar. C'est une adresse URL facultative qui sera utilisée quand quelqu’un clique sur votre Gravatar :" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Alignement Gravatar :" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Taille :" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Adresse de courriel personnalisée :" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Sélectionnez un utilisateur ou choisissez \"personnalisé\" et entrez une adresse de courriel personnalisée. " -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Center" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Droite" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Gauche" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Aucun" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra Large (256 pixels)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Grand (128 pixels) " -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Moyen (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Petit (64 pixels)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Insérer un image Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Choisir une image à afficher dans la colonne latérale :" @@ -2103,28 +1413,28 @@ msgstr "Fraîchement pressé" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Afficher une insigne Fraîchement pressé sur votre colonne latérale" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Grandeur d’avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Afficher tous les auteurs (y compris qui n’ont rédigé aucun article)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titre :" @@ -2140,12 +1450,12 @@ msgstr "Afficher en grille les avatars d’auteurs" msgid "Author Grid" msgstr "Grille d'auteurs" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Site privé" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Ce site est privé." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-fr_FR.mo b/projects/plugins/wpcomsh/languages/wpcomsh-fr_FR.mo index a44b6e3bbea05e6336af9a2954f0833a98016836..8457df870aaec563f7593b52b20e88d6285fc9e4 100644 GIT binary patch delta 8672 zcmZA5349bq+Q;#p90=h|AP~Ye9N`E_2v;~lNCG5)At4ZMxpE9)Ak4(fgm8}sD2IU1 zT)QG7D9WKIBPgQC0=kHZin_pxD8Blts|cv9zRK$R`=>j8aQnlPZ&h`7b@fwKGYQ8w zhn{~vByc$@Y@@+3*|x*}dsy5awV5T!ZvsJc@Pj2sXvn zF$^zZ3SPlGFve*Zb)Nh0dTG^~#WsMHtQ^>Wm8 zORyWR!6A4Q_25tzMjkdqT{jh-=)nYBi*fi0YR!Dsf&6P^b!pWNtuYLfP$TVWn}*@k zhoT0Yi%hdI6}5Jj*sjNc)OTS%et}AP3h7e+=@^3}?fT4)(vdzPWl)SKp@7SU|`{5<3qW3gR-3h$u45B26RU@Z)1r72_eP;03bDzm+@4+hdH zC}ma1`Z5k-PrQKIul1NXWuhZ$fC;FM)3GjQ+x5|?H=SrZ6*a(ORLWPQw%sn&{V(Au z?f=&(XoSlXtqcEx8pr`uia$Un{(>4n3zodzGzryl3RdrD+d|a9eOM1yqptreYJfX1 z4WGgY?f)+*gwSxky1_7hK&AXQRLWX+GmIvfg8IP8L3LDwdXrLACOp^>7oY~Z5?kP- z$j&nk+wGT78NDWXzHyVnNc1D1VNAf^d$83wKcScPCSRg5b`A9)qqk*a z+m5J=^uzj?gSvjA?JR6aeIW+4T31ofg^ytbK7&f#OQ;mTZr3lPz9YWD*;t#;TXp0| zrFzip`d51`)kHM{+F)W9yHGWbmj`PYTlY0v=vgSw$EOEUu_ZAYV~!bA;duU$Wh z%D^Sm6kWq;4C`w>C>GV8V4H~=;5hsItiI%*Eov;Hp#wgFs=sO1Z=h~y+Ry4R9ve^} zV4H)=z$8q?S*RD-h05eUyZ)l>tEdc|KxW(cFhD^ag!i}JBpS7tI-~Y!FI1`q+V#Q6 zMlf=*DK5lvT#pGD$|y87$#@yJ;+wc|01w41mi|$!!=8T|1E(mk4~=)jxS*SY-<}I$5`rLp`H^uw7MQJ z&RPZIYb@bJ*f1-FZe-ybUYw3Qke4w+hg)Bt>8QD$jT7-+WQ@i~s87z;cUl=7fXZMt zhGPzD+m6EO{Xc=iC>n~f4jx1;%GdA?JcF8|4^VUWIcl-~8~Nfh!gBcV!p^A0_&n+X zCsEhGg--k!wU&Ov5g5gfDDD4g6!gFf+kj3`e+VbzV;G9J@H`s1d?mvLJdOSHm{$xR zX)UT8)S6g`YX25Vp3x)U%J4$ez&^!5JcaKmG{aV;Aq0D4L+p!MWW!MBr=e0_h58&= zjY{<%)ODxq`X|_$`hPGITaLCqfRa%Cq+<+@AI<*P1?6_beb}7(BN&ATZBL<6_YrCl zUBea_QD6TTm}}2(^t57m$C=`6(JY;W@1D;L8TpUVE%% z6n3HB66;|$Y7G=%G!|kqR$)(k8nqZNp%dGTvj&=hRn+q_8czi%tfO!l^=9SctyQ`T zH3jRi13r#gjBlXc=qzd=-yrMI_!(>C;0ac$M_>~5DX9A%!lt+Z<8UuVVcoQ{QK{c%*Pq2k)L+F+Jd2~S(G=?qi?D>cAN6Jzu`zy!oiSvp zwJp11D)qZiFS;2cwf~=`pb;KJJ?IoxcZ5pmcNmK|F&!ICvr?XqnxYCEj+;>fxq^C; z?CI8vjl~%1Uc0^=mB}3#&`92;Fc7~)4WwhCbwd(rAVcv6t*Z0SaUR|)cS>E6Y7TZSPOqb&E;>X4x(mS zYojG<`z4^R>xbc(fturNY=QToGPn(Oe^Bkb`KzcYxfpO;zm0y6n#*MJr)@PBJK}v9 ziM#O*Jc63L6R0(D1C{!Ev#r(N9<}-hVO<=H+O~yA)(sb`zc=mnz(*AHN%jfG<5ld1 zF=f^i>)$uou>)o`>pZ5{_a08Ph4; zPf8A=BZO3XDN|3qn@=q+yis92aEZ@K66g^jfT{S+c-ScZ-9VN^#?phkQQ+u<2pf!9zS&abq#;aY4){dug9Z=%-3d2EH3 zZEvCai=At=cf`6p-x#6-=HqCbjMH&Hw#G(P)-M{}Yzt5wS7BS+h)Vg3cKa1G ze9L*(C+R>`dpY*P)fi9*$0^jt&#^OJ#W-v_-%9lWY({+?YSDSni7Rjz?m>NG{(#Cr z=mM+1NK__bQH!oE>iV9jMY?E#z5mzJ5KY6As3|yt%E&vYx%>#b64_((ogNG$(h#;QpD|o_60VYic(K zC_GHVAyle{vgFla9vLihDno0LjbZG>9Bj(PS`$TB2k)_6iM6S3z&l4e_gnlm>h<05;}Rt6=z14_J!2a5IKt?e(OQ)YZc=)MHI+%Dgy=ddUWBQ60j~)PF~P z3vS-XFPL}>Sq8?KO;-QsFoXIR*h2fiBX{XRgD?!Uu|DRYQZ^Cw`7i^O`nypBU4}~a z7Q4O!BdH%mrTp)xe&0p)^8wbyD;SPfu>sFFeoz5Jwpgi;M6HG9s0TPv4~)l#n1<>& z7uE47RL4_M1D%B$XeH{t6{zdCqMoxI)&G7BI4K;WK!&T2W)#TmpN`M}RI_$OF4tY5 z{hQm)xhYSiJq3HBj#UIRQ2k}rh&B!QCt|R5K44^0_>u-4!z`-*x*1J*q}|C4%5Cg( zH9SXwU1|i0+V*u$%KsqN6FRhI|7I1de>S16Dei{K>{puq+mA#lT{(FXcM_45nH}R5 z;z{BOqJk(Rbi7Qo<(jXnYrG}pA$Iv~TP^0UL^AQa-S)r8ho$kFp8qV-nj0U&w+PLZ zj+w-p#4$ogL#}xk&k_0*)2`qH&-jp-P1GE*v^S$N3_B5jrCdtfP3$55Lev}qt?Q z{}-uDBAz023?MEL&AA}K?%)7*eJE`w`qOqAw-U<<9dj+J|Mcp>`IFR#5|uL1zX zZ|7brjUD9wGYU~eDi`W_p6Fj)Vw=!*ClO8PH&<<+6@-)WqZmR=C3HMP93&1Ay*aPn zaMLLF!A_`8K^=c5E>)KdW4h-5JG=52RuM&ZJpm`!s)g11>Hn2S*yXj7x{g4)T^K{6uKq=D36NaWxg&NSsJy5le_ih>dbL_N}UB> zugCnc`>iIGKEHR4Giy$vyUdwcQc~ga`TCo)d$x`&FRbua@<;O!m(N}5aTd)tkM@iU ze$(@e!yJ?n)g&vi`j&#qqFJtDe}5yZ#O*itr!J&vg5oKDXbMZl37# z&!+Q=%PLD;Tsp73%v<4dmX}qQx;`sJ8|`+s02rY;I`mjutGriPde2d*&> z5A12)n||IroRL<0zPHkEjBw2`uVqdRD|K>bufb;;RLpi3`kXGhbQd#%xkI*_9ka%n z4`;=iXR?NyeY01Z7qk6!^JjWJE`y(bZ}8yI@50QzBj(4Iaw zS>-BH%7R}PBdLxwWD&nC@edtnshw>MZG0=~0)(GYkDrf7$FLw>QZsEA+cP28+a5Si-ci zW<0JkbLrd(!O!PzbC}!aZ8R(9cQe13-_V@2Al`g_L9^h3g=r4+!$ob(lEul9Lr(10 z>Zn;7B`)*r#Yw@CCGA3z^IXn+<|A{)40rKNSB108<;?TWF-EdV{LYd}=N#5oVJVB? z#0sA5sxZgi+o_hdmdp$HwF*YwpW-n0ER8p#`ZZg>Y?}G@vP$#o2PT=2AhB~)Q9d#uX5Qq{sdzx}Xz_3^%D z(hj$|ZAW^@iQVSpozsICcV;=dpV&Ra?QttfKBxb`dLqX)C!M}OdTsRNWb@}I`*z}L zUf}rN{vH*{jug|?(vmo+zF>S<;2op!O8yN!LFw_I{qIe&>(XF literal 52160 zcmds=37lO;mH#iR5bF5;M4FafUkE-3d_Aaq-VEx!zXg@w z-JtTDHR#_x6nqrn*`VUj0}lh&fct_^1C?I}s(#}k{1)&bgx>)k1>P3ozX+-v-vEyQ ze+DYw{ZDi}1XR99fhy0jpx!?fTncUk_W`d2_Xl4C9td6wJ`}tGoDIGoRQrDeRJvaV z{4J>TdoA+*d??*a01kOH-hTV+d}wjpwfRYgzpBG&t8j@ zWIym=Q00FlsCq8~mCrIz?Xv+?`#lL19aKTR|4eWp_!4jqcpG>K_zh5W_)}2z`_J(F zAc#ryw21#s0IMKPo4goY0KOm8_r43N|9%dtefK}vzk3X*@M++o;95}SuYl^0QBdV< zfDZ?|pvw6IQ2lpRz&C=*XBVjQ{ynJn{YOym-x;3&5Y+pB0M&j6p5o!7L8V^+(pAZs z;0mw~s{A*B>%rSWr90r%BuT*|LABQsa4t9sY8<`{yaIeLsPCT%k*fSlLG{aKQ2De# z_3N`i)%T5{zV{YT^}9LX?V#%QQBdvkWl;3?4e*iRe}l^Z5vM!dod7C40IGi<2R;IP zA}IQAhUYH;mGA3A{EeW>^HEUg?+W;9@La+Np21iE9}gY}UIWepKMaaKeh8{wzW~*~ zd!6auI|Nkx0#Nlo6IA&&gU5rTpuYFg5PuygdU`jg`u;Phe!CM?KK}+D3H||8dmX`G z5x+Pdd>*(ARDb*fsQ&mFsCGK+EHCFmP~SThd@{HORQ_)V)er9hRleIn)$6kXzXJY< z@V|mz1V4GUr@QtXfA3~c<#-RMcKjl!araA5`Kl2`5Bq@{9|wVoKRv{s4XS-tfZ`ul zfk%Vafa<5)z{9~$f})Rahwx9p!wBzlp2r^rK8f)0AYGSS4w59f4HVt{7kDywe^K&6`xs((%d#Xrsi)y~6U3T_8g z->X5<$2A~DNp1x7-JgW#zW~)fzXFc{QznatfoFoM|KmZGrwZ!3Ef7*jwu7qg&EQes z4?(@Z&vI|~V?dSvc<>Y8sbC8J0X!Z&c7^A^0#v%c0M*Xppz_%P&IVrzioR|EQ}An` z+Uqx<`uD(<-VTR?dhd8pd0F}=*;J)BnK(*H{P~W)? zgrt&BgL?0PRsNkrL6vs^+#5U{)bl0avEWKj?U#Xvg3km+H&=rC&Mt6&@Fr00`yNow zKLV;>zXt02KLkaWzXRuhhp+bdC7|lFF5nhW-+L;ke0G2uhc5^B1K$$xhJZJN8;E}| zIDaq7az1kjc;cEQc>;L*1-#4iN38Ysd2_%UK=s!xpvpHD@GAj-1giai4{Dr0be-4d z7*O=N5LEo*K(*I;@IdflQ0*`Rsvq0nbHSH{=LfHMx$PKm8}Vm?YX7%_u!iJapxW)H zp!)mwpz3`XmDG2S0rj0lpyJO7@ykJ#cPqF*SO?WV6QI)fz=OamK#G#Q64d+O0`=Zq z;N!qwfd_-9Z}jkLQ2p^jQ1!Vkgx?RU-Tny_UEBq#pMC=>zk@II^3DboJ{3F;Tn#GS zHc;*M9PkkErJ(xzT5ukCD=517Cb$6nUWh+u&w?+0g7c>*T%07IB0T$vIlEjrfm)YR|_Gdw(njPa^y{kXMop zsQ&m8_*n3es?){UAXP{I2$}{l(7k(0jfQ20`~`h3?2&p0$c#@Kjz6!=x}b0A%vyzLUFhX+HnD+zxQ)VMja;dH$QRQ&DW`Cu~cbg~9i z``rXS2K+Fn_W22@eD`Vkyp)0JpD|GFyc1NqSAZ(l+reYN4}zkXe+HHA*CBjxD@h(r zcmUM*)`F_nQ$Xd@0>$565T0Kb!nc6x&rgGD@9zctHK_i42!mE~!?B?HVF`FJxCPYr zM?mHOOi<;#3RF371Xa#YfO~`A2OkRl2s{A%H8>C4`%?O2FWLrF{26V>W#9tBYr*5e z?V$Skufc=B>p^|*z2GA7GvHG2zrmBi^Ey7hI$%opy`akdRd5IR15ocjwd?infqzB# zg`nEwsGisR6j1HC0o)I)fTG(`Q003DsP=hVi2n#EI{gZ$?|lng2mTv47d(5rx5F^_ z2*Q_ws^9ZLy>|ns_PYgCeLo-KzX@JI_%86l;E7b?5bz9e5L^T5{hi=p;N_sccQyEM z@PnZE#Xo}kg5LnupLc@#{_jDJkJ&q&{+|UZzbinM^TnX*{RVI$_-=4EcqgcFxc8)& z>i|&g_3#ir9#nY-K$T+!sC>49Dt7~14*qqB|5s4?-wmq%voG`Z8Uz(S2UNRW0ID6H z2&P~aRJ%PdJbx3Y@BS?)y7~l|f?ohdKfeS|2lslq_v4wM;;W$Yy%dyucp11Dd_A}V z{0uk%KI|DT&zuK}zdr*MeP0iX?%xM$JboEeKimx-4IcGOFXw5X$~6S4{hkb}eQM$P z4p8m*YEb>~Hc;tr0v`$97VvYR>UkHae0~QW3GV$YFV8Wc+Uv0)d=@CWxd2=WJ_)=K zycX2=eh${ay`Js;GyLwwZXWSH1x%-~R!{ z{~q=nug}?_;#Ytw&lb?e6?hckXMn2D)!@nC8$f;c3!vy`?<+i?#o!Ty&jjazo4`kd zmxb`_z{3fD1XR9X2h|UEgXe*VJlE-XBdBrE2G@XBgKCFwgQtP3p6C7iOi=y23sgJb z2CCd&09B43g!tt7PA5l!YLD~51>jRbmE%RA+Vd^ox!`9(_49#$>G>QAD&GN6^;!n1 z|1SY&gI(~g;A=q9-`Owla*lx~5Pl;lI{rAQ?|&Y=1pGcI`nm9h-oB%t+M^l5F9!D` z{8!*fd(jTyqrgwS$lv?ni~YSnfX9+?7|H}2qMc^TXhd`CD23`y{ z!L8sYz{i5=m0`XFRle<@>h)akX!RpFkMO%+<>Toapq?N6YNxm3K;?fncn-Jfz5 zeZV_G<$qUr{wuIb_<+}V{5Ys`JR4Mb-v;Wvn?dD&EBF}j4)7H4XW)t8oU6UxH-T#Z zHmLIN1T~&72j_sV0M*{NfNGy9Z~^#LQ2FllS|9fdLDgdwsPq?tqN`z0^}PZ-0(=vw z`rQudyB`nu8E`Ym#o za)|#Qa53RWz18#E0L~%Y0F~b>K+)|@pz8Y(Fa^H~ir#(=s{8|Qb2>c}d@$jsfokVE zD8BSea4z^ZQ1i%VK(*8NL5-h3fGK$7+g+bn0*b#p7gRgG3e@-C1SE z0X!f4I;ir_x!&pKR8a3-04krSffs>IQ15>^J?*v2+vnk++GPcJ z1vmabGHv3lS7(C}a&d;{I*YR1PwI@hc$!9?RCC_-D>*Xik=IKVjS-k&p z@Hn2o?)~1c9|T`X_?w{GVf=Qle-~7~F9ex7lAFMF;5i>~KKT+*?es~o4gL%GcyQz2 zIh|bt9zgi^fFA`PO!#x)f#6rc=Yn^E*MVan^mabrL&yq*j{=qMGEn{Sf)IWc_#nd9 zfsX{Q5BMQa{rx3y5%>e}ufZe!-s$RAQ2g%mpvJ+sK()i~!4tsr!%m;8!J`OIfR6@W z67U9a0pU-AuLpk#UI4!QBi?Rb2ahFuCpZ8mcldV(!3lzELDBmM!P($fLAA$kK-FXK zDX;Glpy+*Wz*9lB<4W)#a094%J{eTL6W|fxw?XCqTTtWa(2sh(7J~Z_9s;FrZUr|J z&OYXJcRP3?;dg!9$IV{<08b-)0aydS18xOZe}b_Kz7f>-AN5I>FBXAE6TTF@7JM0~ z?>+WYu5Xd$51EN}xT`gtO#{F>ka;B!LwC7{Oh8$h+w&7ksqKd5{@2#PK~ z1?~ra1yuijGvH4^(aCQ?(e>V+_WTb3^}R=cYUdL`<$D^ae3yU^0at^wz#&lOd1Ru?HHrLBT;^Vnj8|B&$T1BCUP z3%(ls9v5Ao+(LMq>xtZ_Tz7H*KJa2Lt0-_9ar*7z`Zm|Cgns~vUzLAvCGeRL@gbg_ z5T4%wzLxm^nwI_*gg+eOP6S(|IU|H`0RM&X=fM|%?+)?L5BNCnBg7vLt^>aap2PJe zt`%JW!gUkz8hhhh|3p|n`Cq&Z`~>)W@Fwu*T(9NQ??1UTe*T^CJGh>~wUKKJ*Hv8l z-OlwJ?stHi3&yxKMm3H^)B1hg!S8wg-`u^7Yl{0Xf)|00<=Vy-f8XckZo=ESzRUgJ zfb&46jO0_LbjNW22jZT`rQa_JZ{~Up_wNNi&86Q_;A6nAfzo-t#QmAzUvoX3>lK8T za_RR1!W+2W$F+{@YOco;e=XPmujhIa*J}uG1Xpssooiph<==e53%DM`HHQZ$gHPhR znfsT3+reLf`f0rBH^lV;t|r&c@QhotI}7y_PhQBgr(4Kv;8$?}T;kryHNyP|!IyFU zS4bm%rr&3XJC$pd2TfnRfUtg#au7RD-bviQalI!z3y%yQ9O6C(-bl=Pt~0o5As)7w zyqPQh_6hOlgU==MM_eBc49!@PI!Bk0<=l5dN|~#fAZXh-)_SkLP+Z_dn%&6W8OpF6YuO-SWyS8=T;PQL+g3wSB`Qt%mE-{k(? z;F(<4axEjgmh0PG`c(qzzQd*YSHE|K__uKX1@7+#|6LFGeU9+|fUCiuS&aYpAB2Cw zrQb)nZs-0q3%NY;mxP}~xW}dW=vjnc1YQE__d{?B906BxE$4b3*P&c>uD5Z$nCnxd z`8BBDWdWbh{SNM5#PvJwzsdD9?l0u3axLZ3@5$ibfP-A$;(jI94cz|-JeTV`T>AZO zz{gn#x+C1;x+R47=YCeW7yKjFk;Hv2#0`LZ5x$e_Xzu5M-wDqmypEe|h#v)S2KAfG z_4nMrpX;L`?jW#gPu^cFU9>lq(29I1M!pK zL&EdJx&KMHKY;tc<2sJ(<-~o2Yc2P`;L`6@u3PO6{vYs0()^6;*Muj)v$%F~)d-&l z>bHsObi0G^5jUUvXM?@){F4DglH`rtTowYChi3)xcW)!=S6ruXJ(+6`&t`?^!-Vx)$aOSvW8f9w z7r~a;8uwR*`xHE15BYtJ zs~O^t;r=eJM|1rv*FIeF_sEduL?V`RJ)7%6#Qi0>f$KW14&iTr`h6p$uW-DAhy$QcCgx}BoMO+KGzDnFH z!M(x#xZc723%Qcx(xtUtqub$T`B=SCYqRn;x0BX8X{Fa~jaRz$YNgSbOvfwD%4k+g zM_TQ4veg^Jlcz@FPA6?<+p{*$Ygszc8*bFA3zGSjZaUuTbkoJBE=U$HNjK_#bG_Th z7N#dHNtZQRqv`s}c((7{#m9HjRx_P@((#>SX}Y!5u5DDNgVok}x-}c_)Vmq+)kdpV zOIsuQGM`dzy$*%xRz^F6JRiw+q}58dIyRZ^Ad61gZIP;5-(Klv{!Tlid~JI`*5g^T z%WI7~8IfyujG~iiCtc&2x3elKsCA>hEvuDM+V{JyiL_15HGgSgIzh`&jdmKcwla;= zs`Y_Rt2vsE_d4}zI?qgkt!W|}p}D$Q!BnVM)`CmrcEtKE95S!vYCL+_4cm2Qv5q=9&1 zO>shHeB!KhsIr|#t=0HujUKKyLx5gsspV?*j>@WjvHI!@gX#KKss!hy%X;LWPPAJj z$Vgu!>31%Fb-J9c-^SfF%V})dU8%ow`L)Wi)2+0-l*7K+q_fmwA=qtf8?3j|9ocY| z`gx*8y}1o~Ah{BEdc&Qpo6aAlRkkfmtCQ_|gKsTNYuR>DCGEB_-A>yzA*oKbVBcnI zz~8YfbX#rLhv|L`tG9<@oM@3!Q^vfimdHZZRYh4Xj(XR6RmKaY8)!8R>)!C`@}VK3 zFX=&5mUg*Q8lBT>kEc88-7y-j+OYAW%5>`xhq|iTYP8w|o$6RNo~Z@K>&FW`&}8c4<%JJXzW{nxetO&5la58z`b$Y1h0~y=DgjqR^tB_=+O`R^w()klR7x2VmhAY)=qwQ8N zHq4S_S*4Sut6B`&W%br*yD~90nTUzle<`D)k8yY`{2&``wI_{ZO@w+U%X;uQdI55C zvL4E4SMU37Z)9XJ-P)#+Nij_RgXvNV(Se!ts$;N*Hoc=xUasNS2#~h336^b_$L}o{ zvnqmXR&*Aooou4wEMs`mxJ0E>q|g9?zAMlPy^<`4^}r{VTk{4Gi^6q9am}o;gqv22 zCdmhI9%kS+i>L7|Pb^Ad+=ULcAr75+-Rre%xYEuu?zF};AKeV&*0!`VLXl!pnrFvY zW^Xb$#JhG>CTSQilQr8=dD#h0_`h%)a zc^mw6PIq!b)M+Jxg2$P|n_`^k@KHJf0WL+Bzuv7$sl}uKR6vitN0a~?Kv5y^DgQ+*8g*zS1 zEX5OR|44Ir`Y_%ho@51CPVzsbwjvv;Flk3jH*3r}+X;`D$i#|QXf$hX<*rj7ZKlKI zQ14V*CJ2cnN7@v3Zbz}(($0jq_@zCXyBr}2M&a=~PC1|r$W;)Mn0v3=g+ycQ+De;R z#n3wFs5hPmhsF`m^3W3o`V&{uRkYR^vWy8<@a^FWa)*ecJo5AR$xD(SjJ%W1uQ#iW zo@f*PBYv}Etd)+z{Eaquz$m-0fl71I1)&8+CiG4$ZE19-70EvS-7pi`^v5@;^Y%I% zS)YX;Lhv3{N$ZXGJsd1xsKbme9rYJyK^P zw8^+T)*BygLIC}V8*p-_@HI`u7ABkVbYiU4Z6QbXWvS_d`OSn;mlt#KkA$>QEz2fo zW@;me1G$tjjcnI9RXJbp45no5H2g|j-s|sx}$=`p-yR~!)@J! zo`f+I)u@la2v(S6N4vF}^Sa93$V)WNrhZ{}%?ZdSnt zhb2wG>R~@)2t3)&iF!M$k#46rO$Np7oM66Ypt{nNhp8moogj3Z8jDNkpLFVJ=|p{J z*61uqR%ukLKG{yRx{il6C#oqF-|0O|7Ow?tLlQ>+J;AsX6`*{4Iau3?v z=4@w|5E{_xHglRK8%F(S3hN~2yP)Sclq0j4PTHH84OLaz=orjyN}D2~rPW?ravD>2 zO|t`Xs2N~1$w98rd71MMrfbYR!sH+^wm&y`d}oZ}@&P3 zk_tA3!1FZ#292e-@I98bGqDv-AFc=%{Q=2ONF%IHYD8$Jf&x@`uj$3I;n;LQ`xkYj zM9T~5Tzr=g{<+sl`ijIPXG5s4=c7p3f9d>Xq1$1sP}!#J(w!=k$c(TMTIs^HBhp7qbF)7*V3Ft)A{CUawJ>Un1ee1cZ{R+Xs_1<4|G; zFuQ{>T+w2g>#Q-!QKC%OWU~ZmD#J)oN#me#WmNGlW%->x1yPu|@0>D^7keIW4U5lH z8jsfK;0_jw#70BX6WG*DI5M@wW_O=iJLh3)7)Mk0QLMV9!zN}k)Fo_ckaV$S`OuKw zJ25+1Ly;wlG9tweWa2|fYc*1n^=)`#aFk_Hl3Fwl(L~eVlSVni%Qg=5YMsHSyczI} zmfc>ba8{R)WX~y1WZ=|CCQqzo=uWg$_$t{BCKqH~RFQ4sd&W^rMWxkF$cLkiTaENh z8DBDWH@-v(+y?B4C9TsJGBy^2Jf`IXnsPB(qG2{Pzq?Wr=IzBNosrMmYmLe9+<1-6 zv*F$vSG^b?TEuQCZ0aQmPrJ$5Oxg()6l}cH!h`92DXa8wWcmy8SImkdBADChkDK|W z5q)e_JZ?F?R;eo3Ep!+Sw&^o1LSQZe_1O;G4zbpZA8V0b68&ccD(zyxW*xf8tfKh{ zRm;$>q(le9RNHUhD?J#Rz!E+($rhN3sdCngp@9Ym$)Y4KueH`8${VRIirx-ObLOsD z*67^jTiOcIuiW0s?0@;DHGBTvJ!DyWRC>ocy)~+dkzU=7eMQ~Zt8SZAk!PnDYqDXe zQ*hUwG*qjm%yuTSYF!%8h$OKn>ya1yXQ5E-aQ6 zO-y654I$mppdrTEsxO8amD#L<64R9u2@hU}#Mjk?%#92ant|8ZN)8jcR&v%&rZzpB zQmy~Iql{&(_eC*22OAhh0hpa&&+<7BqXE-QSNdCT!Z=PXSG7Vj>OtS~3vcg~#GhfV zFK#2z1_fokILHVbH(B4}U+VUBUTCHHG#iVsgDI2OF|rTpxoqxyGb|+(@iLaUGxq+-xQNuWi%4P7h_mZuht<~wX4&Un%m>SyXhnLwDYMD?f_~`tC8aQ?)ZTb=T9m8) z1^E=OTXyk5I)AZlS#`{FBp9TkCCP>$=_ea7)UjZ+BiRT$ur)J`h-*;{#6(zP=!-9z zJIcw8joNIqaSTdH_`l1GjLHuGn@S9Un*BHsM%26|M;I%W1zX&qPaun_e0fkp*48kV{)^2WaE-FXXWaji!4|&8T=F2xEU!yIYsd9 zVyUO+eHu62JQwOc|5@eyRTGw)24okVIX8-IEe6GyZ7awQ-PWwuaJNFUN0niQ(%)n5 zh#$VT(m+)W4L@^3Wf<3~l3E;=X8n$W+pRFHM8lH8``TvKo@m|9DiRxr;tt1*u5W5cF>4coycgmw-gs4wP4wy~MUmuX=hdYk+Uf~ms; zxn*OtrEb%@oj9I#W={(m#u5}1rw;D~{YQh))JNCO>X+H7n1-BrCnUk3A2HoDG-RvH zc|`KY?pSH&tidpvY28E55t+-)K~0SVlGBu zt|0qdWs0H{=<;ha|7Ep>mL=XU;!{CHck{A31I>G*>?%wGL!>6aLNjA=Vuljy;m$hM z&}dyEG1xpuIvI8XO&`NqwIUrwg05^$$oWdnLPX1WzMfgax?7cMwv4ci2Eu}EvbDYD z_JEB&OjqKq32I{|+Z>C2R+XTy!;d9t8^yS!?M;D*V;|8pI%qG`Z_A^hpUmnLb#-M} zmdIEBHra~%CWP%a&4Cpi`9|iIN%F|!D2)-#(1mMFVzGJ!>#*XYti$>b^5#%w8wNH2 z-x&Ru`ucmv14F@%<)QIOBd&$1=|SFUahcPGlNuQFA4M?<%?A|nn+7m67nLu|jZdQ; z;DbeHU1Vzjd=r0_iEb(b4QzfQYhpU1k~<~_>Wk07TFW9@J_ETLGnvlmA|d)p=bQwu z24AXnrKbpMc9N%(DK&F^D9^F3qMdn^8(;dCFa~1=z8II=&6mXZ3HPt)djKa6v1J{D zmMr3Josm3>sK_MxBXb5&PU=jc91|HqInD>ZVi0d-?Hw5jz2X8~SQWrGD5MEX_(-g* zdD1!lW~Vb2Z~Z+D!0^l>q$Q&Q#b}E|l%=WNtw;TrOBdoNYEw6kCPOSgW$6jWopI7h zi_V(cv75zbnKm0ODnsT%5K@YsG=P+6$9)S>Rd%%6+dBJNULjqnq_X~2(oqc4lEZz0 zH+6G)&S zGdBsbHjD8+=1XiZXp+u(d?hQGNOG^JA^EGNTHw}H;UTL;8085Iq`tsX+`(SVhPX}3 zzQLu#1{RZW{z;##%@!zgKdh2!;!uSj;E>Pf8lcH$8qnQ{xa$zy*=n}NCzm9fb1iiO z3vPXJ1ZVCH%@NNRY_?%q@u9h4$k#C?0BS+-aji6%0ugxn6}iipXc zUVW44J6U5yJY`4d+29gF(R|t6%b~ZzD)g`!g_~|VuN!SfbRvHWDMT+;)worIYH+Wp^fbZa`gK;R#=ayEB7S1MVAYLw%FP_Xfch1tV z)I){i*X9Isp;^eOR+BAuu#GG?CW!7mGxQY#FWoI1=fwEd5RkZ(0 zarGA0FgTTZAK@RTkl>XoaSpV%?-Wayq+lV(ZWOUg}_TzOCKw zUI)qN4}9@gvi6a|U78tI)%(96X87EnvNLAL{(kC_8NT!HSE2~?rQ5fS=Jk=**({Ohe!F+(M?9c!H>W}`f{K;#9^7Q}= zkK!xSEAYp#s3O<s{3(lVLK<`D{m+&9zcjrLr=_cxnL!ch*gZdG3+xyDQ(Pf@ zFywM%d%(&3vpC1W7ATT(j~2 zHj!kbm`(2P8BAEnZ1h0`Sqln5>!~-i#)H_VDSw=$d>6Dl^}^C@i@acNsXo^trb{6} z*uW@{%ty9N`|>!Bau|~84s05&Vj-A&o2T8xp*l`4ocUK2#iLR35(e4)f*w|$#cZ8g zwD>f(B$zM0Nrv(mG%t;4tFyeKn2lju4i8jLdVp4sRWd70UWN(xht0kJc5e>vnEv%4 zx$X^T$fBqPY=p2CepM|lw8iFNS4chdtZzM7zGA(exqyrAQ8GgnK0z4s3!z8FWoB4luE=ibnK9w*?Bd7@D;NEQ)%UF^s!)(pL>Jms(gvgpo>rv>uz3= z@0Z$vX}++gktc|THajJq;XibqFRyhp>CN(7M!XsQGN<2j0t=kR(l_J^_vHoG0 zlr@fm1RoU}|C$sNw?PN6dCZq;V~p|HrM8j7{QNz=vtN+~lpBoB!I~Z1#%5Sixyb!_ zjnc^;uMYSH4HrEpiL>^xPr7rnnOT#I82ei{4!C~J3&AnX(y0uzuu_zF6XUAWNk@B7 zHcOfLo+;RkJ29H|(poVZI-R!M4F$~}gCAtf_R}HEZCb>}nSCL9cz3!W=X(QZ{%XVh z#A=n!*lJF|zR=AEB481Tu~Y#xivX7!{bk%hST zuQ4AhQ`^Cr+1Q-@z|Twd^FmAM|81xW`cLU?~4NPf%g7 z;aplol!#Wum0V0-7i(PBRJKaGnY{_y=owvWRxrR>%^Mv{<*yb9hP^|+0~k&_R)>|C zU=hXGd_TirnvY`W<34zr1sTr@sIMCnHF?r}X2nWiZdMZ9SXk?Vr1G-(Vt}@KivO6a z+o0DAep47mojv6iIwY&YLZ>}o@ag;^cGu!z&xd@YE^%PKOnYv=YHCH)i)H`5PtZwBWgqFh2@zO@f zT;T{_EbdYk1wYk<6?oL5;JM2=~tWh#ybJRldS70L%zgyl_1^knbyI~;gi2On6{ zxMZrG;7g2ad%P;)qLk);c-S~wKoND=j*6@k=gzPMWpcjl)yl?=!}Xfslmp&{%!7|< zQ1%BCwy$a+4_J2lE@QLt^f3NlaM9{+(HmH%K(r~xue2Rn(=#bzXUMAbaE}?fcXX+k z{*p!SF-w0sL!P@=XSe+Kl=B|*4BK)`MGQWyyMHV^n4w@ZL~Y7Ok#^hVHXfq;ho^N@ zjGLh`@<%h|j?&UBXRYuISy=Q8uV2*Ae!S_uUBu3iRq0{Okgd+)7!V`{_-Z%7L34Ot z?HWtmDAUQ0iYbPpt=IYDPvzWX2FTq@L(kTOrP8~RTQM%~NC8wUU zWYI~FUBqwJx;5)o4j^bL?UHoy;G$W}A%EDwfF|W7W-mDr&8glzOI*Iq06*uV&8r5^ zDAGx5z>#2JWwXkDi{|K(^o-$pcNWf2?Mh={6+^nSByF-rM6h$tNoOJB>h_#wdTzS- ztXWSOSdF!cHM~}PNxHhx>TZ;Q{KS(6PZ?Y^P-#qzRc5VacIhGdFJVrYh0RnOatGGb zigNc0LIWnQ1fgtJJk|%9?Lu`6=ld{zwM7mA2UfM6 zvqCuAr(#>|nI|PfqSouVO=UIi>azH7$j{sa|PlE4X7PQ63Xr1VW) z$6hsbbK-k&RrepNu-huJ?Ge&PP={D-&{xPXz2t;;hyD0xRq82CQO(S~IOW8Osa+k4 z$vh)(&REX)YJSiU^LOzLFFQt>-cFgM$U*vDES&Pt@jv>iod|?*OSyuiYibnR(sc;X z)UH}~nX1AY7=4D@855_R^C3*LIxNI}gA;uul%l>P3QW?gT6ILnL-p>-IW4VFg+?9Y zgrrEhTDb^pGB8E+Dp3N{5jY>l*00+L$19t@+RdBE(n}E0yfIy`pnw*2nc9~*xTSL1 z_HoHV>UNwtVy5Xv=4L9Pbaz~LUb+;Kw3}TvfVq&jCCNbQj64o9No!Nr(=|OZZ`aV! z#;A#`ikehx8zVX2apN7=Ef>LB=X$1he1M|og;aY{dx+BapxcwQHjl62uOW7lI(I2v z5=F4T4p(jL2s!{MWM-5yOxZ*TF_L@{jL`=uA(J}=Z>#=AmGhLGRA5C&r!H4Tk^A#U zB3Pno^k0V^1@iam=qwrO19pB8&B4h(l?gSxx=vhwX07?c;TfGsT)LiP3$;d-*I=@}QP zP3^jbZ>zWHJZOF?j<6hllAz0|#0`c6WexI7$G0chDMZl^Fh6!Eoq91}9uVtEJ5wLP z|3Unr*Jx>bDvN_{oI`xXo5&pBr`L59Rv=q(jBpeYx7va$dZ^8V%c&LFoh4&E%uDvW z3+6G_y=g*%GC|*QogGqSuWe?n!1M95iF8m=%F!debHt7a2I zgef?}X~i?;!_R(?$j*zRvMm$>fJpPgbNUhKE4)PhY6`xyz1~Ksf!vB0jrGw=&}Q&9 zGa|C%kl>gM8BBweW4WD+q%necFG42|*qb_y6Ns4qnFp*j0_);{o4#oE)3m6VkEIiv z!5FJ8u4STNrvQXQ<%4mw?`uT6?UOgfjWxwGyO&r5TUOiRb?!S8cL#2j!1;JU7sBkQ5uWH8b>v}ltUgyvos8b? ztx0Gff7>cUok{R|eXgW3D`cxEacYM@#`BkKFl5bYnEFLmY?8C@SuWu{4FXsuFIurh zhgk*gWS*0~oyZ8VRduYUR(%i7h`nZwEUOF#XQ5SIqX8IXHN{eo{^#^4j2p&ktz?HW zrJB(q+Z3l=F}2Glc4zQR)Kk0EI6f>ous@yE6o$OUBD0^UT*owN7&+*d z68m7T8*LduB8yK$`64SsH_W6BeW7xeQ;E|_{)o~_`B@xB(#nnSFXSMmdX0RNArrHb zE$kPd<;rZj#JTA;ac;5T&CYLpB$bnshM-Q4vg4ra+!-DCq8ZFalp1Vq2Z5Hpgxk9L zSW9kQg6y(^M}7yu$yG+McP!uKHVTX*u-vY zR(XsjZuNB$VVRn$Sc6)HpGJT5u$5PTinxVERewJ}u#52Y&9hlx%vF3?w)h?R>Y~HNOuwv9*F0R~_CMhiy z4|F6V>>xrhRl$i%BoJStj>h%iw@tQBG5-{&Sh%RGUFUgq+Hm4f;x%y03t9o7H-7;I8N#Ee&+bF%G6DLQ#a#XTk=d0 zF=a5y$NquxiDJu5E@wtfHVnhxsjOb8vB$(#8<5G0LA_yw!{CgFj0u~HE$T5HxK9G* zJEF`>d*Wh^(1$u<%(>3onvFj+q5Ch(najlhD9WCH-Y0Qq3{4gav2XTQXWDB^5i{z; zJ^GZdAlw&oU>sdGU965LlPzs9i#VT(aT0RYGOqK3kp|P{2#AvE-92gq>8pWHi`FeQ z{UQ{zb`{N}L}|emh66{Sku`=*p({tM{9A`Q=Elu zZM+WiPVh5A8gWRdw-ezV*Ue7XLZ(<~VPnQ|SzJV1K+zd;SZO-ILWZX`#Qj;mb zv?Cp3mVe8n84Sk|o-9GF9_k~8L)Fcg$c*1`d5yxv86-|;Dh+&8$C}{}q%o2gjMKvP z1&$9Vcg+mbiXa{xwPNI9^OG=szyxPT2rCYp0&DB_Y8B;fBj3#9FksDg#1;Gl39sB_ zTXJ)$O$vQ&1S#00y-du0>Q>k~+om{z#5`92e{G%fU2{n1Q+qqoae>Cg@`^|)Ksw)e zMD87w+L3CU_s*d-(xZGv2|ipVVMWEo73|`KwQ_o&YPEM6dDOo61(g|)~72erJhcsO5E1g3n9M64!?&FmpZYaLO6noVn){KbwLOCA#Xv2lo5 zCl(fWYbldrLk7`-OtTX_oQ!2+gVj+|(uqKgogsT|r(_J!kOX3n?;0O<`{+zuRN8v5 zKSyP&IJeFuz#!k%{cJf1jN?Ed3v4b19063EE|+pH9NgWgDpy#%p#CIIb0QKLfacg3 zWfQl(9#xTCj$0vy%yUSOxqA;Qj}~pFx3Wx~&bKBpF}gIdFGx1I$WPxRV$4On&EJpe zfX*J<)7z`Dql~%nlDR}#X!v7G_jz^-!exkM1t^R;fdk7byaww$YJZ$aCOpP1S;KU;t`%}&^J?Ooy% zZHbDbwTmjsy9=Q64oc6U5ZHS}S8-osdCbM2+ri^(Lw@ zzffF#Pr4n`iq`%aeloWsIp7Y(#4#w@QF+9?c+1|FD~J7c2VTY(UYv{3BGC_B5Mdvt zAC_n6TbG_Mvx!%0&!vU&JFdIq172*e0%XZ#VBgO_3OBOFpFksVRj@EiQ3JPvhjd2u z{i0+a6O2@B{3y@6q>Qa`5{-*yoGV02!ir1B`E6w83`h9kEA2=7dBzj41R-R4XOYS$vj6@c(fY$T^>?En zO*i^S$ugHGCBl}M+>mX}HseC5&fv<0y-tNE{M{!ViL}&K5c-Tn5>LWvt^7*8r%nCZ zV|u1C8NHFCEkF81M;Nky%EyOODDqY&e2oOk;A;x9myUyp*4v8v6szR91?X!4EH*@(G0Gfb_KTyfdQtTj@Xgda_z zMrU+j;q!-v0C^u-u zMgZlnm>3?X2NV_gWK?qDnIdqqq6~R_;U2y}W8Fi;-*X{yzYd#xq3P*;kc}YXa>!{@ zv$@G+Y6-0vnF@`S3AqoyC&jYHRNdy$m}qms6KQLf9+w(p_l97ek6H`OM9m#(gQ+AKfwP?pRp2SnRo^73BANPQCy8;_1l4>2$Mpk3C?$Wj&CS zFC#Mle92uQ%nvrLS2NB+WZ#xEpxr3I&Q5$FNI)ztd@Pc{eQ2=hv^7J6F`VyppoK4c zf6n+>9T-`n?|UPo{-KrLL#J7t)oZiiLEf2D= z625L`H3@_CzCoIjyh@=kW|MCxBUl=2?j z1XqqvOx+-JyVM!vm|RNQ-6TfK(})&tOjm2)XhbDGQ<3eNSr{{<8`hA@W7+I&O^3Wx zSQNFFm?dD0oo3G|DckOt&A>$A8Z-CYAXnp>DpQf0iCCJGo?+7iqUKEAko;jt{KI&- zbFwsqU6zH5_$!zmA{}#1cBH!OwE5d zh=)g5AgOU<>N=!DG+nHywx}izl6aiH^9IAof|D<45I1eI0+GqVcst4ZSM2rIKC}uV zaXl=3%Scd?1?fri_L%NuKpVn6a9U<3F=~kT?k2Mx;g1y?wNw$Y7EG(lnxuC&uKOS&)REb3{roNiDW2ujv-2!cmU;45q=Ym1#(Z zji`Oc6BVMz>h#A2ixMqi`f(Rr_(GDLD6phJ>^rccRjlOrNf*c(xLy;Js`?u3&xpRG

)L^5xZX< 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 L7sT3sD)s*X?+>&5 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-fr_FR.po b/projects/plugins/wpcomsh/languages/wpcomsh-fr_FR.po index 2e1960c4d028b..4383c45e99213 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-fr_FR.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-fr_FR.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "%1$s sur %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Vous pouvez modifier votre Gravatar depuis votre page de profil." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Désolé, vous n’avez pas l’autorisation d’accéder à cette page." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Extensions" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Utilisez l'ancien tableau de bord de WordPress.com pour gérer votre site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Style par défaut" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Utilisez WP-Admin pour gérer votre site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Style classique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Style de l’interface administrateur" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Découvrir les extensions" @@ -72,424 +42,10 @@ msgstr "Accédez à de nombreuses extensions, gratuites et payantes, qui peuvent msgid "Flex your site's features with plugins" msgstr "Ajuster les fonctionnalités de votre site avec des extensions" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Vitrine des Thèmes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Explorer les thèmes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Immergez-vous dans le monde des thèmes WordPress.com. Découvrez les designs adaptables et époustouflants qui attendent de donner vie à votre site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Trouver le thème parfait pour votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Quelques mots pour inciter vos lecteurs à laisser un commentaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Activer les blocs dans les commentaires" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Autoriser les visiteurs à utiliser un compte WordPress.com ou Facebook pour rédiger des commentaires" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Adapter les couleurs du formulaire de commentaires à celles de votre thème." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Jeu de couleurs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Texte d’accueil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Autoriser les blocs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Sombre" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Light" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparent" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Lancez votre boutique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Ajouter un domaine" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Développer votre activité" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Collecter les taxes de vente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Recevoir vos paiements avec WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Ajouter vos produits" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Personnaliser votre boutique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Sunset" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Powder Snow" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Nightfall" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Contrast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Classic Dark" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Classic Bright" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Classic Blue" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Aquatic" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Vue d’ensemble" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Partager « %s » via Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Pour accéder aux réglages des plans, domaines, adresses e-mail, etc., cliquez sur « Hébergement » dans la colonne latérale." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Paramètres" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Monétisation" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Monitorage" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Configuration" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Achats" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-mails" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domaines" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Modules" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Plans" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Hébergement" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Tous les sites" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Erreur : essayez à nouveau de saisir un commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Erreur: votre connexion Facebook a expiré." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Annuler la réponse" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Répondre à %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Laisser un commentaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Enregistrer mon nom, mon e-mail et mon site Web dans le navigateur pour mon prochain commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Commentaire envoyé avec succès" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Je m’abonne" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Entrez votre adresse e-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Vous souhaitez être au courant de la publication de nouveaux articles sur le blog ? Cliquez tout simplement sur le bouton ci-dessous pour rester au fait !" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Ne manquez rien !" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Lire la suite" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Abonnez-vous pour poursuivre la lecture et avoir accès à l’ensemble des archives." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "En savoir plus sur %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Chargement de votre commentaire…" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Nous vous tiendrons au courant !" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Facultatif" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Site web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Écrire une réponse…" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Annuler" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "M’envoyer de nouveaux commentaires par e-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "M’informer des nouveaux articles par e-mail " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "M’informer des nouveaux articles" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Hebdomadaire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Commenter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Réponse" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Quotidien" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Instantanément" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(adresse strictement confidentielle)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Déconnexion" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Connecté(e) via %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Connectez-vous pour laisser un commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Connectez-vous pour laisser une réponse." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Laissez un commentaire. (connexion facultative)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Laissez une réponse. (connexion facultative)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Site Web (facultatif)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "Adresse e-mail (adresse strictement confidentielle)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Recevez les notifications Web et mobiles relatives aux articles publiés sur ce site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Connectez-vous ou indiquez votre nom et votre adresse e-mail pour laisser un commentaire." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Connectez-vous ou indiquez votre nom et votre adresse e-mail pour laisser une réponse." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Écrire un commentaire..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Commencer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Utilisez l’outil d’importation guidée de WordPress.com pour importer des articles et des commentaires depuis Medium, Substack, Squarespace, Wix, etc." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Consultez les %1$sRéglages de Jetpack%2$s pour découvrir d'autres réglages d’écriture fournis par Jetpack." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Mises à jour programmées" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Vérifiez l’adresse e-mail de vos domaines." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Configuration du site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Finir de configurer Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Terminer la configuration de la boutique" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Mettre à jour le design de votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Activer le partage d’article" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Installer l’application mobile" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "Aucun fichier n’est rétabli." @@ -563,134 +119,6 @@ msgstr "Une importation est déjà en cours." msgid "The backup import has been cancelled." msgstr "L’importation de la sauvegarde a été annulée." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Les prochaines étapes pour votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Ajouter le bloc S’abonner à votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Importer des abonnés existants" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Voir les statistiques du site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "Configurer les SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Installer une extension personnalisée" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Choisissez un thème" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Configurer une offre pour vos fans" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Connecter un compte Stripe pour encaisser des paiements" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Ajouter une page À propos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Gérer votre plan de newsletter payante" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Connecter vos comptes de réseaux sociaux" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Gérer vos abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Rédiger trois articles" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Obtenir vos dix premiers abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Activer la fenêtre modale des abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Personnaliser le message de bienvenue" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Gagnez de l’argent avec votre newsletter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Mettre à jour votre page À propos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Migrer le contenu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "Vérifiez votre adresse e-mail." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Empêche la création de nouveaux articles et de nouvelles pages, ainsi que la modification des articles et des pages existants, et ferme les commentaires à l’échelle du site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Activer mode verrouillé" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Mode verrouillé" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Pour devenir propriétaire du site, nous demandons à la personne que vous avez désignée de nous contacter au %s en joignant une copie de l’acte de décès." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Choisissez la personne qui gérera votre site après votre décès." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Contact à des fins d’héritage" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Propriété améliorée" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "L’option « Tout le monde peut s’inscrire » est actuellement activée. Le rôle actuel par défaut est %1$s. %4$s Veuillez envisager de désactiver cette option si une inscription ouverte n’est pas nécessaire." @@ -720,149 +148,37 @@ msgstr "Le fichier n’existe pas" msgid "Could not determine importer type." msgstr "Impossible de déterminer le type d’importateur" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Partager votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Modifier une page" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Votre site contient des styles premium. Procédez à la mise à niveau dès maintenant pour les publier et accéder à de nombreuses autres fonctionnalités." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Personnalisez votre domaine" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Ajouter une nouvelle page" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Accroître le trafic sur votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Attribuer un nom à votre nouveau site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Demander votre domaine gratuit pendant 1 an" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Offrir" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniature" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Partager « %s » via Publicize" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Partager" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Mettre l‘offre à niveau" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Créer une newsletter payante" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Configurer le mode de paiement" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Choisissez un domaine." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Lancer votre blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Modifier le design du site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Configurer votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Nom de Votre Blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personnalisez votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Chargez votre première vidéo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Configurez votre site de vidéos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Activer votre site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Ajouter des liens" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personnaliser votre Lien en bio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Sélectionner une conception" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Commencer à écrire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Rédigez votre premier article de blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Ajouter des abonnés" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Choisissez un plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personnaliser votre Newsletter" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "Impossible de charger la classe %1$s. Ajoutez le paquet qui la contient à l’aide de l’éditeur et veillez à demander le chargeur automatique Jetpack." #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Les alias textdomain doivent être enregistrés avant le hook %1$s. Cet avis a été déclenché par le domaine %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "Le script « %s » dépend de wp-i18n, mais ne spécifie pas « textdomain »." @@ -1063,27 +379,27 @@ msgstr "Vous avez de la chance ! Les concepteurs de vos thèmes ont choisi pour msgid "Uncheck to disable" msgstr "Décocher pour désactiver" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "ID du flux Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "ID du flux de podcasts Apple" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titre :" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Flux RSS de podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Écouter sur Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Écouter des podcasts Apple" @@ -1095,98 +411,114 @@ msgstr "Afficher les informations concernant le podcast et permettre aux visiteu msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Choisir la catégorie iTunes :" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Définir la catégorie du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Définir les tags du podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Définir l’image du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Nettoyer" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Oui" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Non" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Définir le podcast comme explicite" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Définir les droits d’auteur du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Définir le résumé du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Ajouter l’auteur du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Définir le sous-titre du podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Définir le titre du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Ceci est l’URL à partager avec iTunes ou tout autre service de podcasting." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Votre flux de podcast: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Choisir la catégorie du podcast :" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Catégorie du blog pour les podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Catégorie 3 de podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Catégorie 2 des podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Catégorie 1 des podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Tags du podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Image du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Indiquer comme explicite" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Droit d’auteur du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Résumé du podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Nom du talent du podcast" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Sous-titre du podcast" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Titre du podcast" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Éditer" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Mon accueil" @@ -1428,31 +758,31 @@ msgstr "Quota d'espace disque" msgid "Disk space used" msgstr "Espace disque utilisé" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Cliquez pour plus d'informations" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Dénombrer les éléments par sous-catégories pour le total parent." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Pourcentage maximum de la taille de la police de caractère :" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Pourcentage minimal de police de charactère:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "ID de catégorie, séparés par des virgules" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Exclure :" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Nombre maximum de catégories à afficher :" @@ -1470,24 +800,14 @@ msgstr "Vos catégories les plus utilisées sous forme de nuage de mots." msgid "Category Cloud" msgstr "Nuage de Catégories" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack est déconnecté et le site est privé. Reconnectez Jetpack pour gérer les paramètres de visibilité du site." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Mettre à jour la visibilité" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Activer le site" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Fermer" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Vous utilisez actuellement %1$s sur %2$s (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Afficher vos dernières photos Instagram." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biographie" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Titre" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Photo" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Ne Pas Afficher le Nom" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Afficher Petit" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Afficher Medium" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Afficher Large" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Afficher X-Large" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Votre URL about.me" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Titre du widget" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "Le widget about.me ne sera plus disponible au le 1er juillet 2016. Après cette date, le widget affichera un lien hypertexte vers votre compte about.me. Merci de supprimer ce widget." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Votre profil About.me avec une miniature" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Impossible d’extraire les données demandées." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Créez un site Web ou un blog gratuitement sur WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Créer gratuitement un site sur WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Propulsé par WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Propulsé par WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Enregistrer" msgid "Activate & Save" msgstr "Activer & Enregistrer" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Gérer les paramètres de visibilité de votre site" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Téléphone" msgid "Email" msgstr "E-mail" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nom" @@ -1913,27 +1223,27 @@ msgstr "Demande de Réservation" msgid "Reservations" msgstr "Réservations" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Afficher les commentaires tirés de :" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Couleur d'arrière-plan de texte :" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Couleur d'arrière-plan de l'avatar :" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Pas d'avatars" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 au plus)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Nombre de commentaires à afficher :" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Commentaires récents" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Vous n'avez aimé aucun article récemment. Lorsque vous le faites, ce widget Articles que J'aime répertorie les articles concernés." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "sur" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s sur %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Les mentions J'aime de l'auteur à afficher :" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Grille" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Liste" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Afficher comme :" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Nombre d'articles à afficher (1 à 15) :" @@ -2019,62 +1329,62 @@ msgstr "J'ai voté" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Montrez à vos lecteurs que vous avez voté avec un badge « I Voted. »" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Texte affiché après le Gravatar. Il est optionnel et peut être utilisé pour vous décrire ou préciser le sujet de votre blog." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Lien Gravatar. C'est une URL facultative qui sera utilisée quand quelqu’un clique sur votre Gravatar :" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Alignement Gravatar :" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Taille :" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Adresse email personnalisée :" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Sélectionnez un utilisateur ou choisissez \"autre\" et entrez une adresse e-mail personnalisée. " -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centre" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Droite" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Gauche" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Aucun" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra Large (256 pixels)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Grand (128 pixels) " -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Moyen (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Petit (64 pixels)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Insertion d'une image Gravatar." -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Choisir une image à afficher dans la sidebar:" @@ -2103,28 +1413,28 @@ msgstr "Fraîchement Pressé" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Afficher le badge Fraîchement Pressé dans la sidebar" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Taille d'avatar (px) :" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Afficher tous les auteurs (y compris ceux qui n’ont rédigé aucun article)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titre :" @@ -2140,12 +1450,12 @@ msgstr "Afficher en grille les avatars d'auteurs" msgid "Author Grid" msgstr "Grille d'auteurs" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Site privé" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Ce site est privé." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ga.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ga.mo index 66800d28e73f037c966f7a6b9574ef803fe03e78..3318159ce73d691a074bb6d026f4a73e5cceec35 100644 GIT binary patch delta 5009 zcmZA4d32Q39merHVM)Rk2unf|$UqW)_!PQ0sRzx&7{)gfXt=Qm({TxQ#RI4te~v2UUDT7-qXv3p zjcOO3Xe<_RJ|4AXWvGhzQTJJidZ3M{`)$X7E<8kohc+j1I$lQ&lu4cRd6sn;>PC5} z&!=HB7NRP)(4Jq3Y4lgy{xMXgPN61v4%ucVKA!rwq>;=tIcIvKW;hBp&@-qDJ*WY_ z*4d~5{Pyz=$UkNqf3(IYP~ZO&HSiC}Kc=2PnrJLLRQF46PyMy4yKo``Gg1A%s3#j{ zFPx5=ND*r7%1|Y&K@GGF6LFpGA3{CIIqMb7r+*VQp%iwgzSlEg8&6orqjq}<>J6NS zs?bvF8q~n=+s{8jP53P8$v#89#$TYWt4GE((acU0N>%z7GnKlfRW zqh@*$^<>v<|CaSO>V{vV-hz766E)}%?nfc}*Tmu+Ov7|skD(>Oq4cj{TfP6$9m8Kt z#!zWc7iOT=JPS3Ep*SA%Py??+t>so!srR5Jb_`X~%c$?yp(=43Rq_Yc2sT(O7 z`lafO9!$kdT!AC-2$tX@)Bwe9V|ri>YKba0&JK9n?}iM2clv@`~{A zrWXcu;TU_O2$`H&gc@iQYV#dL-RKNzFVxx3@7sQ(&f!hg5w%AKS;wHByb#%k#*b_h zvkEoQ-JPkwCUBG!8sHjgrr)4u`Uo}C#FX$84o2;jY#iuf;;0)fVP|QH9Mpt2qDs9V z2jB@*CGVpqFt}@YlTPj$2+wd9C$y#utt(JBdJDCN+fW1VK_1#1wdZf4Dsl()n*AG9 zxwfg{JZ*C3NKOHn1cNd1J9#A{}<}>Cf$tb zgE2S+b5W&!8MO)5qAI%sBk`m?{|U04OyDLBy$<(r5N7f(b(PMGDs2t&P-Yos;a=24 zzCx8UhTmbm?>(^*=Af1|4^_eGs9(%V^x%uA2mS(?Xu#Z~p$i+cr6Vy8HE=RUVJ7N^ zgK!$=qpsVHy7575f+tZWK98!{9n?hcq9z#MGd#gwsPp|WO7DLW4V9`KeYgOd;9b<( z{uA}2&G{8k$gByvX`uHSht`y(;?K2E~85R6{=DXQKfF38NRMN>V7$>35`R&-i6p4t23#8 z7aEH>p_%T)Xgpv&W<85dIe!%ku?}_P!M($;TOR6%YbvU=^HKL*gKj*AD*Y|wC&NVW z%BZrbeW<@qoGAsB-Ns0Vrh z^}Sj4^ZB@e{;B|t!8CgG3$I}b7SJz8Hm*5=t?+Bq#OhJIKazJ*1IJ(sjK_J{4O`+y z)OGu9|1j!4=TT2yhni5}0S(PGqJMbpVy)e**{D4-9>?HhWSPwtT!`23P0Sw<-V1+4 z=4k3|zZYeVpg$5-p{G$3&POT}FoiTUQ!i?Ub5Ju|jCu{<#5TAdHPQX3lAc0+?*i(3 z*HPd58>%vY$5^aKRjwJoZkj*>>TOBJNWK55G<1Uu)D3b_7mh>CbOLHXkF^|I)333g zzlwUob+-R5y6BgZUF1WeLmO0^@MnkKe;rgS^gkbZLLK_a)vGl}9gZhSKB*>EWF>i# zXleEk9WRp)h&Hq~?IF^O0x2gtw0>jBRq_ha zp(V>EzbB)~QZk-=L_Q#t2Ro#-`uo9NI^KOAa>|NPdr zCnIlc=s(BGa1~*>e>}7=bUYU(^jlz?W)Y2F*iIMJCe-+5ts3_Dll28`M2?Vd9-vvYxkYwmwF0(-iU!d4h~1fff7-67BS@`e;{eZPo5^P5-&MR z+++>Waf9q2&ytxWj_9ZeV^&-9@Lkf|_QiEQzlX*U5=D~8uSq1~cg0L16G$uvP@noQpwWXAhE9b4Y=bN0b&^0{BhQe> z$0xQ?fDIp?#B;<)o+sBxCeeQjyhNswY2VnddPUPoeWgxCx>I(C-DGzkLq+Hjq4LkjZbhn zquS>>TicI!5);M*{RxiCiAn10n&CX3G|1VIwAks@VQbR@udlMy@VDCM{G-DJXKY7r ze0k}D`96P1l_~I*6nm^a<-z5%?`}&^03NU zs#oiyQip17@qx5dw6WJltrw`?y7h(iQI$%qB3h}nfUU2-?Cba6J>lNo`S{QGoY|Q( z=QW$)z3ZO8B710Pzi$|hkH~29V6ibvii~L)th2^!EH`E#Zo*RBf}`+8JPCK>WPBKF z@lBkGCBuywiD#plYDfMvtN5`HFUJyNvgWZu!90Wg_~2!v59S~a!oygJ$L#sy5yq5J zAB+_^4r$0VSQnw%S&H0Z+EDk$u`gbQ1MpfriRYV}D4fEH?Klqa!&C7&)P+Z^$57XO zgj2B(7ik9Sus_bR^#!N_EX9+t9fx2PCt?Qca61m?`Q}*)YTzwY&)-Ega14jy$EXn& zGhA7Q`g{~>gw0~!TMy?&|C_7P!sBg3sD`3qaK*F zZbWr-3(|(U7F%%#PQnjSd!>^3*5}ozcF#uLw+z+(d8iJ0mCV0xSjUNBco|-dUqf}^ z80zy6tbau{*q0rs&qv@`9EDnnIrjXySWEr$w!Q&1(92OBz6!Op2SzdfTASB7!7Q8O zs1f()RZx!yqaHXMb;D%T2p48|wNCZ2b~c2O_BZZbWrp8){~@qxRZESqgf< ztM-E5*$X~Ijc8C+;Q%~yqb4X0rrJj2!-P&2U@)gce{;MJ(9UWe-V6{zRkh>X=_ z@3JTMp{Du;>p|3r-m<=HJ&wyb{}F0LjbjQfK{ecFU1i;bdR=coy$yGuI`aKOJ!|$+ z(1`Y)%Mu`gbRE^fwpJdBHR2=gDsc2tM<;uL%iwZ?zOJ~*VN z(D7lYnX5*9-hi5!6{tNHt6~1x$mVK$;Z9V253=vfLDYl(g!-N+nOJD361ACTqCQ_@ z>ldRo>w46Hwpw?hX6j+&JIw4yy?#fs6g0&}lL|d8L-lkrs;Bc&J#9yIEQK23*HLS} z4bLcI$x!Y5YI0%I9YvZpe?)b>ifQEW#K{d!Sn^~wSz7T21Bv99{LtVEK>+l-Xbq}Midj{2k=W(Fk|JNxD;=~cu z$UeXs*oSwl0cWAs%tw6>T!(5XL^bqH)ROJOVtmw|e-isse+Bt!F|VOs&%ffC_?gpK z621RE1+CrX$UZYS;4J(hY6S119z24ImTD|&spg;_(2CmS?Wh5Cp$4=Wd6u~j^)~$o zY08Y`l{y8RF{_caQ_zj;P$SragYi0B{}!qPccUJ3A6|%$+s{W&FFbGpmU4bNYR%`M zmgGF-+2$ft$FE0q{I2QDzdqQ-2|eHdo{Wdk$784lFJe8knL1H3a3yMl+fhq#59+>d zJPG&WV0;>N-9c3Q@1U+fj_TNlGnjv^$zM338)nZeG_)A`QZsEh5!a($zuQq$w-@zR z?8hN^7}f9xsE+;-HM4_HFPxu(y00F2Q_Wm^epQx&da?%9^8nSL&a1~;Q8(O%!|*5e z`~lQb9YQ_$H>kJfC~CyN$9DV_HG?bIP-_2T9Ez*0*(+>eD{2?-#9_D>%kc$!{vA{U ze?xV!WOiW&Dp6BE9Vg&iRL3Hy0jxoNZ=|i8t=A$Q&6=AjT*3u+pdRpdEW=X1rt}p& z8a4HEP!G5e9o&qX;yaOF4`vVQL5J`R{4J_u4iyLMP)oWD^*s|{;qQM6nv(6P9{&I} zrH|ln{4uKGmr)~s1GQJ)x99(X>i9rjYF$4Zx8qbi3!g?UaUUvrD@w2xt8t3n|1<@S z_)b)hA3#mvW2g>2h1xtX;(B}&)sgmw!gZafx{qq-O02}2Q61|>b$AbIp!-oX`UYmz z@TU~C)}_1(ax7}ZvrrwHYtOf!_J)hvY#CgFo3IX_z|HtE-h`>M3nT7(jxp>*Q-vdO zIqH|#nsZoxO?8qJ>PQOp;4P>bxB)eyZK#p#Lha@rR7W30jqGLAeZNNCcN}%!C#d_1 z=N4wN95n+~nBTN>nSXU)E+@1`ji?4bhiYI2s(~o#x^<|Iu17uaYU@p?nYqn=-i;dJ zK3jhbi>SXybm;3ie`x*huw~t#L2``zC%J}=!lZ;e2G6w zP&;2o8<|G#C6medy@atBx&mpSl__4q*JRh-kucAWC1Bxh2y`-e8M-V`H=jS#K>`SgbX6@ zlO?2w{FYo#bUaG7;je93+(OPJ`+C=ZgU)jNh|I~C3V)$|MEO)(zX9t=+}6cl zTmCM7g38t?`39(jtqO9qlF$b;nfBpdQW$4*jA?jkK@H~Bo#@j7YGm-zp8 z_+v7fTumM$6-39}0>-f}#l57ATuwYvMRH_6;TV(uLvkpkZTUKXLg6~Hi);#SFB@68 zAQ}z4RLV(u>%G9~a-*KJHq()aM{0W>EUPFQm`FHn@wAr;_YZx%EE(|W{4qG_WPxyh;7NP2yM!&1eOQtcoD&Cn1+;rSes+Nu?Gak3Q(Ri{m z99y0&apQ?iW|14L39m0dyotjM3xlMj1a6C>X9JkQx z@YE4)H9_D94TTSz+=$oV`)izp-x*IjF*oIS8`s7IFB*1^SUS*4JE^oAqVj$v7K)53ibRTowV=Nq)dyqDs5Wgow0CD#hJw|ey8JS(&60| zUpd+B@(R!I;JIP-$nR7yTdUE!3A2n@T_5*0nAVt|^z<|Bo7RNOxLz8$Vn8B8KU3lO z%GKfhmFxTEr*!`r7KtCQcVU{`H52CGF^EyWR?=^=}`R4q9 zR{nP~>gwux#*N+Fzh-H!+gTO!P0jn2jh>sx?J>e-D%Hj+wnAs%hUtkHlqPd~oOEut+vSE& zO+5GX6>%Q3$W7<(H%+?GjR&SN(-pY18;PaOf}|6PW#UoCizhrM>V@+sm51XeWlnB( zBQd8Xx5F&Tbi~42CY{r_E#mjQIB8zdz$VWP*jmZ(l-fjTV3FpK%>-05K>@>RE8NOC~UhzslrE&GtP5HEF(1QFN zrTuu24ku3=SG&^fh|&Mv5uX^4b{E%1Vu{>t)65gX<nD)Jj-kTT1 zlU)we67`*hu>_B8KJBTR6@F(d$$(9hZeb5J<$98)H6CHFc?{LdFTjYp3rZITUOeS- zRWj_VONGPgw-x8-HE?@&)z2;pC(f8x(&k5kOq{nmjLtY#*_P|(oz3k@nWl_dV!4}x z+-{0J%Vv%)8oAPqr`FP9GR^D8l1EqO7cke|v-1}eVvqj&{xmJQp3Yp4bK>Lt7H*3KEMG^=u>*Pg%3VFJv%k>yUu4_H AHvj+t diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ga.po b/projects/plugins/wpcomsh/languages/wpcomsh-ga.po index ba99f1e56da81..e3e8aeca69aa8 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-ga.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-ga.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Breiseáin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Taispeántas na dTéamaí" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Riar Dathanna" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Dubh" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Geal" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Fuineadh Gréine" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Fáilte" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Socruithe" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Cumraíocht" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Fearainn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Pleaineanna" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Liosta na Suíomhanna" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Earráid: tá an seal Facebook goite in éag." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cealaigh an freagra" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Freagair %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Tabhair freagra" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Síntiús" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Cuir síos an seoladh ríomhphoist atá agat" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "An chuid eile de" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Roghnach" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Suíomh Gréasáin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Cealú" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Gach seachtain" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Freagair" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Freagra" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Gach Lá" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Ar an toirt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Ní fhoilseofar an seoladh go brách)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Logáil amach" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Suíomh gréasáin (roghnach)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Scríobh Freagra…" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Tosaigh" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Roghnú téama" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Ar an mionsamhail" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Tabhair Ainm ar do Bhlag" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Teideal" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "Podchraoladh" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Rang iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Socraigh rang an phodchraolta" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Socraigh eochairfhocla an phodchraolta" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Socraigh íomhá an phodchraolta" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Glan" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Tá" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Níl" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Socraigh cóipcheart an phodchraolta" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Achoimriú an phodchraolta" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Sonraigh údar an phodchraolta" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Cuir scríbhinn faoin bpodchraoladh" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Tabhair teideal ar an bpodchraoladh" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Seo é an URL a chuirfeá isteach chuig iTunes nó chuig seirbhís phodchraolta." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Fotha podchraoltaí: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Rang podchraolta:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Rang blaga na bpodchraoltaí" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Rang podchraolta 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Rang podchraolta 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Rang podchraolta 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Eochairfhocla podchraolta" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Íomhá podchraolta" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Cóipcheart podchraolta" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Achoimre podchraolta" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Foscríbhinn podchraolta" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Teideal an phodchraolta" @@ -1302,8 +634,6 @@ msgid "Edit" msgstr "Eagar" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1431,31 +761,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "An céatadán clóaghaidhe is mó:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Íoschéatadán cló:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "IDs na ranganna agus camóg eatarthu" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Cés moite de:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1473,24 +803,14 @@ msgstr "Na ranganna is coitianta agat agus iad ina scamall." msgid "Category Cloud" msgstr "Meall Ranganna" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Scoir" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Tá %1$s faoi %2$s líonta agat (%3$s%%)." @@ -1627,47 +947,47 @@ msgstr "Do chuid Instagramadóireachta a thaispeáint." msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Beathaisnéis" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Ceannlíne" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Pic" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Ná Taispeáintear an tAinm" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "An URL about.me atá agat" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Teideal giúirléide" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1684,19 +1004,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Taispeáin do phróifíl about.me agus a mionsamhail" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Suíomh gréasáin nó blag saor in aisce ar WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Suíomh gréasáin saor in aisce ar WordPress.com" @@ -1706,8 +1021,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blagáil ar WordPress.com" @@ -1784,10 +1099,6 @@ msgstr "Sábháil" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1901,8 +1212,7 @@ msgstr "Fón" msgid "Email" msgstr "Ríomhphost" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Ainm" @@ -1916,27 +1226,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Freagraí ó:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Dath chúl an téacs:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Dath cúlra an Abhatáir:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Gan Aibhiteár" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 ar a mhéad)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Cé mhéid freagraí a thaispeáinfear:" @@ -1958,37 +1268,37 @@ msgid "Recent Comments" msgstr "Freagraí Nua" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "ar" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s ar %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Moltaí údair a thaispeáinfear:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Eangach" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Liosta" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Taispeáint:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2022,62 +1332,62 @@ msgstr "Bhótáil Mé" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Téacs a thaispeáinfear i ndiaidh an Ghravatar. Tá sé seo roghnach, ach d’fhéadfá, cuir i gcás, cur síos a dhéanamh ort féin nó ar do bhlag ann." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Nasc Gravatar. Seo URL roghnach a thaispeáinfear nuair a chliceáiltear ar do Ghravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Suíomh an Ghravatair:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Tomhais:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Seoladh Ríomhphoist Eile:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Roghnaigh úsáideoir nó cliceáil ar “saincheaptha” agus tabhair an seoladh ríomhphoist" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Lár" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Ar dheis" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Ar chlé" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Dada" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Oll-Mhór (256 picteilín)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Mór (168 px)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Meánsamhail (96 phicteilín)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Beag (64 phicteilín)" @@ -2094,7 +1404,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Taispeáin íomhá Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Rogha íomhá a thaispeánfar sa taobh-bharra:" @@ -2106,28 +1416,28 @@ msgstr "Úrphreasáilte" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Suaitheantas Úrphreasáilte a thaispeáint sa taobh-bharra" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Méad an Abhatáir (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Taispeáin na húdair uile (údair gan alt san áireamh)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Teideal:" @@ -2143,12 +1453,12 @@ msgstr "Taispeáin greille d’íomhánna abhatáir na n-údar." msgid "Author Grid" msgstr "Greille Údair" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Suíomh príobháideach é an suíomh seo." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-gd.mo b/projects/plugins/wpcomsh/languages/wpcomsh-gd.mo index 93b3c7d317c31dc5ad4af89b19c698bc4e0317f2..69aad2bc9e010a10c678f4ce0d98ff4ebab5f7ff 100644 GIT binary patch delta 3080 zcmZYBd2EzL7{~EhT0~lVw@{#krKK$`haBb5f(YAkOF>%7rBK=}E%X4oRqn-$U?i9@ z(Si`8#A0HB1d2%!BZL}7f(jB32r&_r;2%H)0)*i4{q0Ww(Mg~8GxHwvJ~Qvkrg!Hx zPYeE>82Of=Y$4JVk;WX9k8+@#i!w&l^T?mM#Njdg9S7nq?1z1#jp>C2n1ZD^30Gow zJcQk_-FXrdj0u|4R8qNc33<1Hm_knU#4KElariPSp`EA^G&|qNuC!ZGFFuSKz$d7VFQA^k z>aO2K_4AKwM=~1S7lV6`*Dk@?v=^X8{1NuV!>9zlLUr`5yM6`L&mYbk z?)+_3f)CJ(No1$z@-e6>nLv z$5l8LEAbdAvA(=*1P;KZScV1Ij#`v=f>hK|RC4%%WYm=QMxF1EnwdeU85oI5%!e9b zDeC?Tq${%mH8Y!?Z=iP3F4REwViBIjJPan1h8ER$)VD5m&PUdZS%kAabc_tj9A~(? z{~OePzluskC-s6@^x{*fwXy^?6G7B&c@5dwW(P9Bpm~Q1$(RpNi|`ogf$uOKe?pDm zE^4YD;1EpUW{rFT>Jv`J(C+|_p}i1C;!YfgUtktSkhNwg7rom5qp9e@GF*mBF&{fn ziQRYCV|s_%J&^Tj2B8udhnfK&YSqud{#b`hnt2n|e+z10hurz2*o*g@GgLIyzoEYQ zZ5)h$p+=TRuT?k-)zMzm%(S2uV+Sgs)2Mzfy7Sji30_Bix;xkxyRoH)Vm1bqVJQ_o zxDs{4dQ``|QB(CU>cy?7gpQ)V^$BCAr_ zl?|L|#tW#aTuByMJnK-I??!ca0Qnl`6fzid8MP+vqdJb`AtjoObY;?!VbCDzCVFl6JNUadDK*1M7{V1Y6c#n?n`2LTIK1e zHQ{rXU<7SHj>j6T!{CQhCQ?Zmz^@dRap-~@(W4tsQ~#1{&!s+{&@3j{-<#Ph^tVmYyqs3kNzUZRSaO+*mYgvwMx z3sa>gOz5AIDb%$v^{I-88AO0c4UgZL=V;6!HWT{Q(yD!$P|=ptw;oMsw+tjyo(N<7 zPQfw={fKFQYdz!=m4tSK)|JYWL}{qT=bhjxkxsFO&~Nl&!bhl-gb5wDaLgmLF4*#B z6VX}nsWcE;Qz|)O{&!r>8Gdtuq1C*B#ZMZJ+&LYPeN#LA}HKqD1jbxm#M8h^bRSRU}!*&8vdZGCKsJsaz{MRBw2 zzPK!#5uak?ooVuk@VnvA?GFYRl{OW$d+|W}J(j+;ODd6#C0+msQ)(GH==T0rRXktGD%K9kdU# ZwzuuiUg2rW9{9P(-pkEsE6f|=`4{=7M(O|n delta 4758 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Tha sinn duilich ach chan eil cead agad an duilleag seo inntrigeadh." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugain" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Showcase nan ùrlaran" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Sgeama nan dathan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Dorcha" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Soilleir" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Laighe na grèine" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Foir-shealladh" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Roghainnean" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Rèiteachadh" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Na cheannaich thu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Àrainnean" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Planaichean" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Gach làrach" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Mearachd: Dh'fhalbh an ùine air an login Facebook agad." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Sguir dhen fhreagairt" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Sgrìobh beachd" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Fo-sgrìobh" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Cuir a-steach seòladh a' phuist-dhealain agad" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Leugh an corr" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Roghainneil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Làrach-lìn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Sguir dheth" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "bheachd" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Freagair" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Chan fhaicear an seòladh seo gu poblach idir)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Log a-mach" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Sgrìobh beachd..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Toiseach tòiseachaidh" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Tagh ùrlar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Cuir duilleag ùr ris" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Ìomhaigheag" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Ainmich am bloga agad" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Tiotal" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "Pod-chraoladh" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Tha" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Chan eil" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Suidhich ùghdar a' phod-chraolaidh" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Seo an URL a chuireas tu gu iTunes no seirbheis pod-chraolaidh." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Inbhir nam pod-chraolaidh agad: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Ainm tàlant a' phod-chraolaidh" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1301,8 +633,6 @@ msgid "Edit" msgstr "Deasaich" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1430,31 +760,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Ceud as motha a' chruth-chlò:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Ceud as lugha a' chruth-chlò:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "IDs nan roinnean-seòrsa, le cromagan eatarra" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Dùin a-mach:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1472,24 +802,14 @@ msgstr "Na roinnean-seòrsa a chleachdas tu as trice ann am cruth neòil." msgid "Category Cloud" msgstr "Neul nan roinn-seòrsa" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Leig seachad" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1626,47 +946,47 @@ msgstr "Seall na dealbhan as ùire a tha agad air Instagram." msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Dealbh" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Tiotal a' widget" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1683,19 +1003,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Cruthaich làrach-lìn no bloga an-asgaidh air WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Cruthaich làrach-lìn an-asgaidh air Wordpress.com" @@ -1705,8 +1020,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Faigh bloga air Wordpress.com" @@ -1783,10 +1098,6 @@ msgstr "Sàbhail" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1900,8 +1211,7 @@ msgstr "Fòn" msgid "Email" msgstr "Post-d" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Ainm" @@ -1915,27 +1225,27 @@ msgstr "Ceist mu ghlèidheadh àite" msgid "Reservations" msgstr "Glèidheadh àitichean" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Seall beachdan o:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Dath cùlaibh an teacsa:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Dath cùlaibh an avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Gun avatar" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 air a' char as motha)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Àireamh de bheachdan a chithear:" @@ -1957,37 +1267,37 @@ msgid "Recent Comments" msgstr "Beachdan o chionn ghoirid" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr " " #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s air %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Griod" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Liosta" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2021,62 +1331,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "An teacsa a chithean an dèidh a' Ghravatar. Tha seo roghainneil agus is urrainn dhut tuairisgeul a thoirt ort fhèin no innse dè mu dhèidhinn a tha am bloga agad." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Meud:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Seòladh puist-dhealain gnàthaichte:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Center" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Deis" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Clì" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Chan eil gin" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Anabarrach mòr (256 pixel)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Mòr (128 pixel)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Meadhanach (96 pixel)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Beag (6x pixel)" @@ -2093,7 +1403,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Cuir a-steach dealbh Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Tagh dealbh gus a shealltainn air a' bhàr-taoibh agad:" @@ -2105,28 +1415,28 @@ msgstr "Air ùr-phreasaigeadh" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Meud an avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Seall gach ùghdar (a' gabhail a-steach an fheadhainn nach do sgrìobh post sam bith gu ruige seo)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Tiotal:" @@ -2142,12 +1452,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Tha an làrach seo prìobhaideach." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-gl_ES.mo b/projects/plugins/wpcomsh/languages/wpcomsh-gl_ES.mo index 2fd5a0c003fe97abacb959dafaf2e4125cc22a15..c2d821c316f9bb1d4040506c1370961daf3f9b79 100644 GIT binary patch delta 2823 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Síntoo, non tes permisos para acceder a esta páxina" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Engadidos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Mostrario de temas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Unhas palabras para motivar aos seus lectores para deixar un comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Axuste a combinación de cores e o saúdo de benvida do seu formulario de Comentarios." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Esquema de cores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Texto de Benvida" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Escuro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Claro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Publicar a túa tenda." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Facer crecer o teu negocio." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Recadar o imposto sobre as vendas." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Recibe pagos con WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Engadir os teus produtos." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Personaliza a túa tenda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Visión de conxunto" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Axustes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Configuración" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Compras" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Correos electrónicos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Dominios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Plans" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Todos os sitios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cancelar a resposta" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Deixa unha resposta a %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Deixa un comentario." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Gardar o meu nome, correo electrónico e sitio web neste navegador para a próxima vez que faga un comentario." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Subscrición" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Introduce o teu enderezo de correo electrónico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Continuar lendo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opcional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Sitio web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Cancelar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Comentario" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Responder" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(o enderezo non será publicado)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Pechar a sesión" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Sitio web (opcional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Escribe un comentario ..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Primeiros pasos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Instala a aplicación móbil" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Elixe un tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Conecta coas túas contas de redes socials" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Engadir unha nova páxina" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Nome do blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Título" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Si" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Non" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Editar" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "A miña páxina de inicio" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Porcentaxe máximo da fonte:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Porcentaxe mínimo da fonte" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Excluír:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "Nube de categorías" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Descartar" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografía" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Non foi posible obter os datos solicitados" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Crea un sitio web ou un blogue de balde en WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog en WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Gardar" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Teléfono" msgid "Email" msgstr "Correo-e" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nome" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Cor do fondo do texto:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Sen avatares" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(como máximo 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Número de comentarios a mostrar:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Comentarios recentes" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "o" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s en %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Reixa" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Mostrar como:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Texto mostrado despois do Gravatar. É opcional e pode usarse para unha descrición personal ou para explicar de que trata o blogue." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Ligazón do Gravatar. É un URL opcional a usar cando alguén prema no teu Gravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Tamaño:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Outro enderezo de correo electrónico:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Selecciona un usuario ou selecciona \"personalizar\" e introduce unha dirección de correo personalizada." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centro" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Dereita" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Esquerda" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Ningún" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Medio (96 píxeles)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "Inserir unha imaxe de Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "Artigos recentes" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Tamaño do avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Amosar todos os autores (mesmo os que non teñen escrito artigo ningún)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Título:\t" @@ -2140,12 +1450,12 @@ msgstr "Mostra unha grella cos avatares dos autores." msgid "Author Grid" msgstr "Grella de autores" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-gu.mo b/projects/plugins/wpcomsh/languages/wpcomsh-gu.mo index deb187583a09eca8c91872ceb524f797bce5916d..7c3c9324c71662e910d3160b4f9f52b6e574abea 100644 GIT binary patch delta 1561 zcmX}sS!_&E9LMo9Rh?-&9n&(ZYMD}NQAO=rN|QF03K9<Ew8V{UON#e1j$USU6c>+&zCfqGFZ{)q+XXAs>VLET@fobgQs z6%APBZkX$=!AjceP&?F#>Ugiq4`37dF;vIjT>CGV=dg{8ZGx!h`@4K7YGUP>&{PRM_R)Wj3Q`-ige~97Nq1pi%9^xs+ff{=s_G1nXIjc4n1x18O2WPy-xx?L9bx z{61=d@9{MzK2hPw{}{3ib0*K=*`#4RHhLu%#0^E3GXGOJ2QaLYAcDsgx(EJ zMmsZzm`IEw=4q{ER3;O%3H=GF%q6s1txRQR2Jcs*?T!*`fVTtMrGG^$Q<+3eA@uSN zC8iT236(h+yg#vsX~<+#VV3(s$5BnpAaut1$?1P!G@(*KjPYujOS!A--*cG#oHN#z z`y1>of2qCfAM9To+pvCHYutYE7u$ls5L+EspSv|~mUc8pTiR_;U~y!{#*X%wSs81L zwa252I@;QBs~w$N;cH4=%FXxXw=^}!;?dPD@zz-CS>7X`eHff(OA2P#M8WLvm2~&s zbTXAr_IQ=^wj|VOyFzPHy`e&%EeQ{^%fnZ*yVKo=?83r1_ITlz0k_lL2hz!#(RA`c WI(gMgZlt~y-N~{KB4svf;QPPO*RC)C literal 5861 zcmai$ZH!!18OIM$L{>nHya>J>6y&Id@*aaM3QqvzhS;#-THfsew11&5P&F4;b@l@GbBHaPc|D+zeV!bOk&Y z%maQ0%eQ^j|6%el)i6+(tmHDw}h=v#b|yg8 zXItPu0Lq`;;0Ew%@MGYAKz~oC5+E8bU#vFm#-T@Jzw8Kt}MtRa}r<1r@k7{udU$dy5mHZy5NSaAj zk5W4{HfC0(sU1t2abZ@~v-)f;YcXpzr?R{-H>cU8k%dCzkqE-r#6t$!%%o==gFCX5TT9l;5y;<8@ zNn6#pY}O_zmhAYftwhauGRtSpI)X2nQQnNJW?i0C&2Su5llo*~hLdV+hBLev&Sq>a zs?S=Ys}*)8Yo%2s*`~=|v2A9yniP#Rnq6szTSTzFMuH1766Fvh5rR!K5>N0-Ca3f+ zcx96|sXNf}hPWtHm5n6XY>ctSqlZsoB`7jpIKhu4FD3g{&7-*-Y7N zYWP~1P1A8s!Dh_pl(vqht;wWbn9Xs8|7d)remX*_1P~xF%~zQE){O6 zHfz-by*5^Edu>#&+L?H~ASr}G!IHv`=h;kwhZ9td3es+b(oAZxT|eh?pVM76^U85w zJ&Hi9-o&&EN1bH1B+V4ZlDnzh7zs$tSeECry)OAtj{dA^VP`XH^UOw-3W@ZtsLT7z z7W5A3TxeGC+M3m~+HBcu!8>Qv9hw=M-YFZ8=ZcBOBB5Co2bR1wwm1bzEGrRZYBd^J zPK>9ht4_vEth>J5GDX?y>PH`sd*eaYu$yVas=2LE17|XL)rrCn|FX zJ#`07H>EncgYC|F(TH&JTdk}a_1V!hjtWAE)0p&4Bq@H5$5ewIjWlze-DgHOl{UxI zNx|7It;TZM4)zZ&E%h%e4Gu6Z5A>J&mtEJ-)3agyhBc+H#<^t6cA&4nXDH*e)|;g* zvkf*jDew|{KdCRbm8mG_E?IHgmbInp=jHOKUQEP!X-&P7>137d_2WsihrZ0Cw6vDa zF3PsvaAdJ!aJlu<6?J>X3Olg8=WC^PaXrqXW|o)jx-@ILbSxR{TiVxOiqghZ)HA}( z(W2gEJK5?P&9gh>O0%@SI`8<&EcS75Y{}hIb~sKOao%IP?E~HR;cojE-S#uQZMXe= zxAUWJ`-yJn9*ASz_LJSt_nG~$+irK;N4lLI-S%$iCmeBqw|x|1Z?|(F>~7})_Cr6# zo^JbIW)F7TyMUi{JNL4u&u9&;bIa{+=Lg;Pakud?=z}EF1(XpEaD{Q;S%vncn0gJGxrdLENZ`m;VMpdZM)1I zw36^{DI7V3oyOOVb z(iQXf3p5qvicuY1QdCXX8m{GKXYOoKf@7`CDZo5tVJ zy0h5NN!;((A$-Kg$&rhYHyU2TcdtAA{Rk>`2I2p22MLP3{wop=Eb~gq(4^{ z%J;E94$9yO=Yp=G@J)6zeIw~kRgGN0I!z;-$_hCo6po>~1MQ?51>W&}sG-Chli&`P zVI6ZK3yy;0Dk2|?j>f6Ryoj$Px4yr=yfyvNp*FgCUGIgega$=MVRI+Z0HILOq02fh zQT%}*qq?wIVMf`NOHV5@_f63vU#%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "માફ કરશો, તમને આ પૃષ્ઠ ઍક્સેસ કરવાની પરવાનગી નથી." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "પ્લગિન" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "કલર સ્કીમ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "ઘેરું" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "ઞાંખું" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "અવલોકન" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "સેટિંગ્સ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "આઈ ડી" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "બધી સાઇટ્સ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "જવાબ રદ કરો" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "આગલી વખતે મેં ટિપ્પણી માટે આ બ્રાઉઝરમાં મારું નામ, ઇમેઇલ અને વેબસાઇટ સાચવો." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "વૈકલ્પિક" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "વેબસાઇટ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "રદ કરો" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "વર્ડપ્રેસ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "ટિપ્પણી" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "જવાબ આપો" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "લોગ અાઉટ" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "શરૂ કરો" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "નવું પૃષ્ઠ ઉમેરો" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "થંબનેલ" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "શીર્ષક" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "હા" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "ના" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "સંપાદિત કરો" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "બાકાત:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "બરતરફ" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "સેવ કરો" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "ફોન" msgid "Email" msgstr "ઇમેઇલ" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "નામ" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "ટિપ્પણીઓ બતાવવા માટે સંખ્યા :" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "તાજેતરની ટિપ્પણીઓ" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "ગ્રીડ" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "યાદી" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "કદ:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "કેન્દ્ર" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "જમણી" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "ડાબી" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "નથી" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "શીર્ષક:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-he_IL.mo b/projects/plugins/wpcomsh/languages/wpcomsh-he_IL.mo index 3fb2e579b72ae90e86d8cab81b8d54b398e3dc65..8e3f744b52c7d749b5710eb5fe2c482b56fefa64 100644 GIT binary patch delta 8728 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 D#wnvb literal 57981 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 YTp1c3jOzYB3g1#UKDOmG{dvRx1t)wOVgLXD diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-he_IL.po b/projects/plugins/wpcomsh/languages/wpcomsh-he_IL.po index 309addbef5efc..09d4f0792e0b2 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-he_IL.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-he_IL.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "⁦%1$s⁩ ב-%3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "אפשר לשנות את ה-Gravatar שלך מעמוד הפרופיל שלך." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "שיווק" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "אין לך הרשאות לגשת לעמוד זה." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "תוספים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "להשתמש בלוח הבקרה של WordPress.com מדור קודם לניהול האתר שלך." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "סגנון ברירת מחדל" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "להשתמש ב'ניהול WP' לניהול האתר שלך." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "סגנון קלאסי" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "הסגנון של ממשק מנהל המערכת" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "סקירת תוספים" @@ -72,424 +42,10 @@ msgstr "ניתן לקבל גישה למגוון תוספים, חינם או בת msgid "Flex your site's features with plugins" msgstr "לצרף תוספים שיגמישו את האפשרויות שהאתר מציע" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "ערכות עיצוב ותבניות" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "לעיון בערכות העיצוב" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "זו ההזדמנות שלך לצלול לעומק בעולם של ערכות העיצוב לבלוג של WordPress.com. כאן תהיה לך אפשרות לגלות את העיצובים הריספונסיביים והמרהיבים שממתינים להפיח חיים באתר האינטרנט שלך." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "למצוא את ערכת העיצוב המושלמת לאתר שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "הכניסו כמה מילים שיגרמו לקוראים שלכם להגיב" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "להפעיל בלוקים בתגובות" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "מבקרים יוכלו להגיב דרך חשבונות WordPress.com או פייסבוק" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "התאמת טופס התגובה עם ברכת שלום שנונה וערכת צבעים." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "סכימת צבעים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "טקסט ברכה" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "לאפשר בלוקים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "כהה" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "צבעים בהירים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "שקוף" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "להשיק את החנות שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "הוספת דומיין" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "להגדיל את העסק שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "לגבות מס מכירה" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "לקבל תשלומים עם WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "להוסיף את המוצרים שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "להתאים אישית את החנות שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "שקיעה" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "פריחת הדובדבן" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "שלג לבן" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "שעת בין ערביים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "ניגודיות" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "כהה קלאסי" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "בהיר קלסי" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "כחול קלסי" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "ימי" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "סקירה" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "לשתף את \"%s\" באמצעות Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "כדי לגשת להגדרות של תוכניות, דומיינים, אימיילים וכו', יש ללחוץ על 'אחסון' בסרגל הצדי." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "וורדפרס.קום" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "הגדרות" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "להפיק רווחים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "מעקב" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "הגדרות" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "רכישות" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "הודעות אימייל" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "דומיינים (שמות מתחם)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "תוספים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "תוכניות" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "שירותי אחסון" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "כל האתרים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "שגיאה: יש להזין את התגובה שוב." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "שגיאה: כניסת Facebook שלך פגה." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "בטל תשובה" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "כתוב תגובה ל%s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "כתיבת תגובה" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "לשמור בדפדפן זה את השם, האימייל והאתר שלי לפעם הבאה שאגיב." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "תגובה נשלחה בהצלחה" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "הרשמה" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "יש להקליד את כתובת האימייל שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "מעניין אותך לקבל עדכון על פוסטים בבלוג? פשוט לוחצים על הכפתור שלהלן כדי להיות בעניינים!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "ככה לא מפספסים שום דבר!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "להמשיך לקרוא" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "כדי להמשיך לקרוא ולקבל גישה לארכיון המלא יש להירשם עכשיו." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "לגלות עוד בנושא %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "טוען את התגובה שלך..." - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "אנו נמשיך לעדכן אותך!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "אופציונאלי" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "אתר אינטרנט" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "לכתוב תגובה..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "לבטל" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "שלחו לי אימייל על תגובות חדשות" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "שלח לי אימייל על פוסטים חדשים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "שלח לי הודעות על פוסטים חדשים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "אחת לשבוע" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "תגובה" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "להגיב" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "יומי" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "מיידית" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(הכתובת לעולם לא תפורסם)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "התנתק" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "התחברת דרך %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "להתחבר כדי להגיב." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "יש להתחבר כדי להשאיר תגובה." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "להגיב. (לא נדרש להתחבר)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "להשאיר תגובה. (התחברות אופציונלית)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "אתר אינטרנט (אופציונאלי)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "אימייל (הכתובת לעולם לא תפורסם)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "לקבל הודעות ברשת ובנייד על פוסטים באתר זה." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "יש להתחבר או למסור את השם וכתובת האימייל שלך כדי להגיב." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "יש להתחבר או לספק את שמך וכתובת האימייל שלך כדי להשאיר תגובה." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "לכתוב תגובה..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "מתחילים כאן" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "להשתמש במייבא של WordPress.com שידריך אותך בייבוא של פוסטים ותגובות מ-Medium, מ-Substack, מ-Squarespace, מ-Wix ועוד." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "להגדרות כתיבה נוספות שמופעלות על ידי Jetpack, יש לעבור אל ⁦%1$s⁩הגדרות Jetpack%2$s." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "עדכונים מתוזמנים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "לאמת את כתובת האימייל עבור הדומיינים שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "עריכת הגדרות האתר" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "להשלים את ההגדרה של Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "להשלים את ההגדרה של החנות" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "לעדכן את העיצוב של האתר שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "הפעלת השיתוף של הפוסטים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "התקנת האפליקציה למכשירים ניידים" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "לא שוחזרו קבצים" @@ -563,134 +119,6 @@ msgstr "ייבוא כבר פועל." msgid "The backup import has been cancelled." msgstr "ייבוא הגיבוי בוטל." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "השלבים הבאים בבניית האתר שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "להוסיף את הבלוק 'להירשם' לאתר שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "לייבא מנויים קיימים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "הצגת מדדי האתר" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "הגדרת SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "להתקין תוסף מותאם אישית" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "לבחור ערכת עיצוב" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "להגדיר מבצע עבור התומכים שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "לחבר חשבון Stripe כדי לגבות תשלומים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "להוסיף עמוד 'אודות' באתר שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "לנהל את תוכנית הניוזלטר שלך בתשלום" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "חיבור חשבונות אישיים של רשתות חברתיות" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "לנהל את המנויים שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "לכתוב שלושה פוסטים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "לקבל את 10 המנויים הראשונים שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "להפעיל מודאל מנויים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "להתאים אישית הודעת הצטרפות" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "להרוויח כסף מהניוזלטר שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "לעדכן את עמוד 'אודות' שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "להעביר תוכן" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "לאמת את כתובת האימייל" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "אפשרות זאת מונעת יצירה של פוסטים ועמודים חדשים ועריכה של פוסטים ועמודים קיימים; היא גם סוגרת תגובות באתר כולו." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "להפעיל מצב 'נעול'" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "מצב נעול" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "כדי לקבל בעלות על האתר, נבקשך להנחות את האדם שמינית ליצור קשר עמנו דרך %s ולהציג עותק של תעודת הפטירה." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "מומלץ לבחור מישהו שיטפל באתר שלך לאחר פטירתך." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "איש קשר לענייני הורשה" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "בעלות משופרת" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "האפשרות 'כל אחד יכול להירשם' פעילה כעת. התפקיד בברירת מחדל כרגע הוא '%1$s'. %4$s כדאי לשקול את השבתת האפשרות אם אין צורך בהרשמה פתוחה." @@ -720,149 +148,37 @@ msgstr "הקובץ לא קיים" msgid "Could not determine importer type." msgstr "לא ניתן לקבוע סוג מייבא" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "שיתוף האתר שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "לערוך עמוד" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "האתר שלך כולל סגנונות פרימיום. כדאי לשדרג עכשיו כדי לפרסם את השינויים שביצעת בצבעים ולנצל המון אפשרויות אחרות." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "להתאים אישית את הדומיין שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "עמוד חדש" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "להפנות תעבורה אל האתר שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "בחירת שם לאתר" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "לקבל דומיין בחינם לשנה" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "לתת מתנה" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "תמונה מוקטנת" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "לשתף את \"%s\" דרך השיתוף האוטומטי" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "לשתף" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "שדרוג התוכנית" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "ליצור ניוזלטר בתשלום" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "להגדיר אמצעי תשלום" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "לבחור דומיין" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "להשיק את הבלוג שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "עריכת עיצוב האתר" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "להגדיר את האתר שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "שם לבלוג שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "להתאים אישית את האתר שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "להעלות את הסרטון הראשון שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "להגדיר את אתר הסרטונים שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "להשיק את האתר שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "להוסיף קישורים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "'קישור בביוגרפיה' מותאם אישית" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "לבחור עיצוב" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "להתחיל לכתוב" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "לכתוב את הפוסט הראשון שלך" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "להוסיף מנויים" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "בחירת תוכנית" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "ניוזלטר מותאם אישית" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "אין אפשרות להעלות את הסיווג %1$s. עליך להוסיף חיבלה שמכילה את הרכיב באמצעות מחבר ולוודא שדרשת פעילות של הטוען האוטומטי של Jetpack" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "יש לרשום כינויים של Textdomain לפני רכיב ה-Hook של ⁦%1$s⁩. ההודעה הזאת הופעלה על ידי הדומיין ⁦%2$s⁩." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "קובץ ה-Script \"%s\" תלוי בנתון wp-i18n אבל לא מציין את \"textdomain\"" @@ -1063,27 +379,27 @@ msgstr "איזה מזל יש לך! המעצבים של ערכת העיצוב ש msgid "Uncheck to disable" msgstr "ביטול הסימון להשבתה" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "מזהה פיד ב-Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "מזהה פיד ב-Apple Podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "כותרת:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "פיד RSS לפודקאסט" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "להאזין ב-Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "להאזין דרך Apple Podcasts" @@ -1095,98 +411,114 @@ msgstr "להציג מידע על הפודקאסט שלך ולאפשר למשתמ msgid "Podcast" msgstr "פודקסט" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "בחר קטגוריית iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "הגדר קטגוריית פודקסט" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "הגדר מילות מפתח לפודקסט" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "הגדר תמונת פודקסט" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "נקה" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "כן" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "לא" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "הגדר פודקסט כבוטה" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "הגדר זכויות יוצרים לפודקסט" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "הגדר סיכום לפודקסט" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "להגדיר את המחבר של הפודקאסט" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "הגדר כותרת משנה לפודקסט" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "הגדר כותרת פודקסט" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "זוהי כתובת ה-URL שעליך לשלוח ל-iTunes או לשירות שמשדר את הפודקאסט." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "הפיד של הפודקאסט: ⁦%1$s⁩" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "בחר קטגוריית פודקסט:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "קטגוריית בלוג עבור פודקסטים" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "פודקסט קטגוריה 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "פודקסט קטגוריה 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "פודקסט קטגוריה 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "מילות מפתח לפודקסט" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "תמונת פודקסט" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "סמן כתוכן בוטה" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "זכויות יוצרים של הפודקסט" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "סיכום פודקסטים" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "שם המציג של הפודקאסט" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "כותרת משנה לפודקסט" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "כותרת פודקסט" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "ערוך" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "הבית שלי" @@ -1428,31 +758,31 @@ msgstr "מכסה לשטח אחסון בדיסק" msgid "Disk space used" msgstr "שטח אחסון שנוצל בדיסק" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "מידע נוסף כאן" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "ספירת פריטים בקטגוריות משנה אל סה\"כ קטגוריות אב." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "אחוז גופן מירבי:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "גודל פונט מינימלי באחוזים:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "זיהויי קטגוריות, עם פסיקים ביניהם" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "לא להציג:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "מספר מרבי של קטגוריות להצגה:" @@ -1470,24 +800,14 @@ msgstr "הקטגוריות הנפוצות ביותר שלך בפורמט ענן. msgid "Category Cloud" msgstr "ענן קטגוריות" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "השירות של Jetpack מנותק והאתר פרטי. יש לחבר מחדש את Jetpack כדי לנהל את הגדרות הנראות של האתר." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "לעדכן את הנראות" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "השקת האתר" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "לסגור הודעה זו" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "אתה משתמש כרגע ב-%1$s מתוך %2$s מגבלת העלאה (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "הצגת תמונות ה-Instagram האחרונות שלך." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "ביוגרפיה" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "כותרת ראשית" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "תמונה" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "אל תציג/י שם" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "תצוגה קטנה" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "תצוגה בינונית" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "תצוגה רחבה" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "תצוגה רחבה" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "אתר ה- about.me שלך" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "כותרת הווידג'ט" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "הווידג'ט about.me לא יהיה זמין עוד אחרי 1 ביולי, 2016. לאחר מועד זה, הווידג'ט יוצג כקישור של טקסט פשוט לפרופיל שלך ב-about.me. יש להסיר את הווידג'ט." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "הצג את פרופיל about.me שלך יחד עם תמונה ממוזערת" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "אין אפשרות להביא את הנתונים שביקשת." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "יצירה של אתר חינמי או בלוג ב־WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "יצירה של אתר חינמי ב־WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "מופעל על ידי WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "בלוג בוורדפרס.קום" @@ -1781,10 +1096,6 @@ msgstr "שמירה" msgid "Activate & Save" msgstr "להפעיל ולשמור" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "לנהל את הגדרות הנראות של האתר שלך" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "תוסף זה הותקן על ידי WordPress.com הוא מספק תכונות שמוצעות במינוי שלך לתוכנית." @@ -1898,8 +1209,7 @@ msgstr "טלפון" msgid "Email" msgstr "אימייל" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "שם" @@ -1913,27 +1223,27 @@ msgstr "בירור לגבי הזמנה" msgid "Reservations" msgstr "הזמנות" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "הצגת תגובות מתוך:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "צבע רקע לטקסט:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "צבע רקע לאווטר:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "ללא אווטרים" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 לכל היותר)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "כמות התגובות שיוצגו:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "תגובות אחרונות" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "לא אהבת אף רשומה לאחרונה. לאחר שהפעולה בוצעה, הפוסטים יוצגו בווידג'ט פוסטים שאהבתי." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "ב-" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s ב-%2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "מחברים אוהבים להציג:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "רשת" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "רשימה" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "הצג כ:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "כמות הפוסטים שיוצגו (1 עד 15):" @@ -2019,62 +1329,62 @@ msgstr "הצבעתי" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "באפשרותך להראות לקוראים שלך שהצבעתי באמצעות המדבקה 'הצבעתי'." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "הטקסט שיוצג לאחר הגראווטאר. אופציונלי, ואפשר להשתמש בזה כדי לספר אודות עצמך או הבלוג שלך." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "קישור גרוואטאר. כתובת URL אופציונלית שתשמש כאשר מישהו לוחץ על הגרוואטאר שלך." -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "מיקום הגראווטר:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "גודל:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "כתובת אימייל אחרת:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "בחר משתמש או הזן כתובת אימייל אחרת." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "למרכז" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "לימין" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "לשמאל" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "ללא" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "רחב מאוד (256 פיקסלים)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "רחב (128 פיקסלים)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "בינוני (96 פיקסלים)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "קטן (64 פיקסלים)" @@ -2091,7 +1401,7 @@ msgstr "גראווטאר" msgid "Insert a Gravatar image" msgstr "הכנסת תמונת גראווטאר" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "בחר תמונה להצגה בסרגל הצידי:" @@ -2103,28 +1413,28 @@ msgstr "כתבות פופולריות" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "הצג תג חדש בסרגל הצידי שלך" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "גודל אוואטר (פיקסלים):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "הצגת כל המחברים (כולל אלו שלא כתבו אף פוסט)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "כותרת:" @@ -2140,12 +1450,12 @@ msgstr "הצג רשת של תמונות אוואטאר של המחבר." msgid "Author Grid" msgstr "רשת כותבים" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "אתר פרטי" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "אתר זה פרטי." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-hi_IN.mo b/projects/plugins/wpcomsh/languages/wpcomsh-hi_IN.mo index a4efc1975e1fd5ea5fdc8510e52b5b85fda0a76a..da7d36a89689d14ddc941dbbb6a88b0d6cd1b71c 100644 GIT binary patch delta 2020 zcmYk-e@vBC9LMo<2{i77%P;xi1>u5akXJ||eq|e2T(|@q#AC0<*9h>yc9?j6NJebvS_<=oRNA zYVPkMf94>ET%2 zb>|mc{&&>Gt~xzFoqsBQ&utZ9DJtK9nm{KG;Sh4EIfLpTf#vuI z>JIZss-FsHEh^uN`dzp48O);{-AP4j{RS4`JE$Lg_gSvI-~ds+8y%w0q!kwWl>nMOiIJ5@z@ zuh&T50`}RhQco>#tF=(+f^{x;FW%|uwa#{Yh}c9l7&B<@p`!IzL$FkaBpyetg+wkG)vd9zPr$_5242 CoaX!h literal 8718 zcmchbdyHJyUB?g9eXwl`O$s4}w#VdU)bB&hP#Eow5J=>QxUJo{aH}j5Dt>=5g>nujj>c?x&1-1Ngh( z5cvDx8t_lRcY-g0BjB4^d^5NOyb~M?^DlyIF;4_M1B&$pa25C*__N?2frvKW0bd7x z4}25&e3*Yf;J*d>j{?5wjh^3i;8pBj4gL(c9=r*>11y8npyV9|CI8WYCqVwp=`gg0E%%JSaW?5tM(v4_*!aM_9iK<@q$%fLebiD86gLycFi|4!8+i z%laK*ejh0QDJc1~pyVzD`eE>=nSTxx-^auH6JdS|)cL1D+53B-_2-a;wE@?Il6xztyxI&({=J~|u7NsN z1pGKCJr+Pjm`{WJnJ@6#1AYb6{+B?>eHj#={|fZ0NIvO*4XAzZ0M~;zfRZ}_%8n0* zc??Qk8s-I9WBy4{=l?FyUkLLbfI9#0fiB^)ZwM6qYEXJ#7w9*Ic{$)FP=fU;hwFnXJ z0Oij)(B%y%d%pmVf{%mZ|F@v{ybQv^Tzjpzw*>w?^Ua{>cZ0I04o-uILHYM3P<(y_ zt_H8>kmTJ0%5Pgh>GS?DKM0D?Z-Lr(8Wf*PAg(Zf3cdsUUZDSHpkKuy<;iLgRn0n3 z=kEk{ZXYN;s^EvfS&*aVTY>%}sPpD+e%}x%yWS3J-@Cwjz}=wqeiD2)cmb5W7Xy72 z#V$E-1?9J!LFLbT!Eb@HAfn9s2%7lDpyK>VP<&2-x*sls(*JM3&w&2~N}pMR4-4}f zpz`1pFX{6QQ0Kl4UPHeB5R^Sb5S=~&ZwBR$3ivDF-atPLiqG$WH-cXUCGXEc+41)Q z-(bD`b)fQk2dMZpLCO0v*aA<1-vzHD=#u|3sCs`r%uvrvGNecEnc?GC8Mg)k?ZV}) zrWJ;CRUY)7cZCo6jFNDrFaMJ5ii>QQ{@WRf_YOwy zc^@CLQBRX`6GORPWo%%O0%i+C{?PMY##Y7w#xP?QL%tkm=(&S&C*yX8p4&W_F;G2d zZI}ycS9~jPk}y{;sPDy$>lyO3^6l3dn;CjGGVWt2U-vTf?DODyr9L+?EJHb`C-PwG z;F|EAfvP<{>QPe+(z5^1I?eqI^>_86_b~L_?7`)$K1n6>kw8-qSHJmanBNO3?|zN3 zlkp+O#~8oNNEr>r2N`!WKEQY*cGh?|9u)M_@e&3Mi&x~V34 zdoqs;yJk9zK-1jw)tuoGijC^ndx3OD(rzYtBqxGo|n*r;_P5Za^i?ilo_&VHVYr=Cm2*qlodq z6o%Tlcrr)T6|`A#8`35fs8=YzHOlTcTjQySNSm!m-bnIX*s4eKHp(kzYubpCW^T6O zD)&MI1;>A1@kQLsHul#2n-dRI>+M=xG24?mjg%E^XIq$}JM<{@50&t$D3)H#^&? zx2vHHGP{}xn9ibx*&St&cSjs4%r*n{+f`|tP$1C-gaXW(@FDQ9!t}FCY`I8eJ!7RX5Va_ zk)U&CY(__U7pWPmM|gd#-kz5C$1;kkK2LSb#TiwCFZ)So#@bnRCd#pPe_SQ$>}aSN z=1Ro<&aQDRHhNLb%E;VL#^XYUg;`_Xs!WD$tVj;qs9Ec$TGAwYliW^b>0FLcQzRAX zOhsaSku+kvt7m1|@vfNxb1YWnv!SiXk2?>j*nBH7<9MrX#?vgDA9hiVGB~G&g^bO# zjnqcfD&F@>DDjX&?N_s862sa}x`3HL#HbpNzH(jg2nwG)IeY+$ZB+ z+8`oNC}Np}XfK{4jzK~%DrP92yxnT08RjlySDTKDvV@Qg6Eg(8sX}mF(!bGw7Pnt5 z&P>cDg*wAstr~NH{H(>6l53g+zOK!IL@a}I!lY2sHG{bKzg!zSkhy-)4?($X?jgwc zP$9L{89Srkx8h7SPK#ODrP}W{x@JwWWHxU__~m2mw1~=ftR9nUG}n4e@TQVFu9=L< zh1j-R_0;vMvYDJW^supgrTy`2B4MSim|C$T8%Ay^ZMd~GvXRfq#toGXx31g3Gqh*d zo^7SO<4k)ic4K+NkQyM#T$-3~aj+oC*5je1xyh338NuFs*TnYHZG(Lo1v3?ArESe> zs*YK)w@oI+5G9mF_0o0dkiJrlAj%cErt?_M2uEyQ7{K zuEnn(Dc@4wP>SlUnP_M?h0`YUDt0FM$gaIZl;wSKwJ7bX4Rl`;69&uCN4;pumb~{gXJLmje+U*>6(}!5){H1P(1Dx07 z)7{R=Zs#(bm^|2H+hMWWIos_#*X=yZ!b5J$GycfKlJ5>5>np9LJmeH|y@oO{C@sZt*P3yv?|Mz>4sI>nuD6EZwAE6hvPkkUmec0k;x_2O&S^JcXn)kXPE{6(aa2-RWmI zLqHWx&tTD+c9zovvOfbioT_{vLGU-CWE2cu5fp*|8Gm8bDJSQ&T&zqazocrnbAcr` z5yU6lns~t*u4vB|#SxK5-DWwF4DgvoxO@V5MwjfGB~`VSgRVUKk@wZad7_C4rC|EFM;iIXq=LQX8#M~=mZUvth-jSs>?7AP9M!c#uVT1X_D zbE*QMv=8~><4Tx3AMJjMRTwC5`Rch@`Qd%9s8!&2+@(O+*7ktV%$DHuF8QgZb+d1jI zYn|~*tA4T*Ln29eoP)<{rx`BtO;1gu?_VDs)}H405|=$3BrE-4q>UWxQ}Oa~=IFQ3 z3(-Yac{o8u^JsVRU@s`@>z+#7pdPhOgF!^tk8B0bm94S@^EiWGbp$5LkG|GKxt|p} z#hTOIl@AkoJo=KVx^b9)t-FYW58ZBDF>``!VuSPiqdl66z}KCW?T6A)`)0F4t&~c2 zz1!uz8kp0OrgMx%s#n(@x+BT!>~0L#S?~)Ua)*0Pff;O(C=ED|-adZVq_PZ!#>(J& zVKS&wq^qM12>2`L;xAk8EG14)Eu=l{7)mbvoP`U@Ltj`(l;AJk+`3ey7sW(yrZHc%eZav%T8fAknHPqY?sxLmfSclv|N1OVDJ?87>pJ; z#hfJJjDAJQ^#I-zyo%4XS(ryT!D;(`t3%Qe-;Qn^*>tV zO;-hQl;b>8+0y?C4iD)qM#%I9Aiw^$KSe5W3Joy=jxvzNVkSEaP!UTkQ)47Ves6;f+CDWs#9 zdET|v@DE62;&?*q`>_u#Q|yylVUJsg0vahCZn zUnguuwp;WS}yfbcecjqvQ#{6KF}!OvkFHnltXS^A|d3 Yv+wq}P^vlKAM)L2`Mql#zjNll0l9C8-v9sr diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-hi_IN.po b/projects/plugins/wpcomsh/languages/wpcomsh-hi_IN.po index c52629eaf0189..737125788ee06 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-hi_IN.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-hi_IN.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "मार्केटिंग" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "क्षमा करें, आपको इस पृष्ठ तक पहुँच की अनुमति नहीं है।" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "प्लगइन्स" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "रंग योजना" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "गहरे रंग का" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "हल्का रंग" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "सूर्यास्त" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "अवलोकन" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "वर्डप्रेस.कॉम " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "सेटिंग्स" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "कॉन्फ़िगरेशन" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "ख़रीद" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "ईमेल" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "डोमेंज़" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "योजनाएँ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "सभी साइटें" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "जवाब रद्द करें" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "एक टिप्पणी छोड़ें" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "अगली बार जब मैं टिप्पणी करूँ, तो इस ब्राउज़र में मेरा नाम, ईमेल और वेबसाइट सहेजें।" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "सदस्यता" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "पढ़ना जारी रखें" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "वैकल्पिक" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "वेबसाईट" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "रद्द करे" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "वर्डप्रेस" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "टिप्पणी " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "जवाब दें" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "लॉग आउट" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "एक टिप्पणी लिखें..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "प्रारंभ करें" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "पृष्ठ संपादित करें" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "एक नया पेज जोड़ें" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "लघुछवि" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "अपग्रेड योजना" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "शीर्षक" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "हाँ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "नहीं" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "संपादित करें" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "मेरा घर" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "अलग:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "खारिज करें" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "इंस्टाग्राम" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "तस्वीर" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "विजेट शीर्षक" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "वर्डप्रेस (WordPress.com) पर एक स्वतंत्र वेबसाइट या ब्लॉग बनाएँ " -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "वर्डप्रेस (WordPress.com) पर एक स्वतंत्र वेबसाइट बनाएँ" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "WordPress.com पर ब्लॉग" @@ -1781,10 +1096,6 @@ msgstr "सहेजें" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "फ़ोन" msgid "Email" msgstr "ईमेल " -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "नाम" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "दिखाने के लिए टिप्पणियों की संख्या:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "हाल ही की टिप्पणियाँ" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "पर" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s पर %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "ग्रिड" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "सूची" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "के रूप में प्रदर्शन:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "मध्य" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "दांया" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "बांया" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "कोई नही" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "ग्रवटार" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "शीर्षक:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-hr.mo b/projects/plugins/wpcomsh/languages/wpcomsh-hr.mo index 6a9697d234c5d743261ade3f104417e2cc8c554c..cd34cea6ca414a99960770e67ff808fff43ce78b 100644 GIT binary patch delta 3141 zcmYM$eN0t#9LMn=MnYITCRMbR!zz5VQBn0yzO}cUqaNu%}aFkek)y!5~wzitKQe)Y)wQO1c^xT|nWjQUkTJ`>15Bb~qp4adEIOli1zlU?j zvnvK_6JHNc-D4=5iP6N5*BNsFUrXaesmUFw zn{L5M)Qgv+`ftTL+<nLhwVwjCv zFduiJUU&eNz(Le~M^OD95Bw--KaB}x{5cgp@CzoFoix>+j(V^JSzc3tLvU(vJw5n) zE$T&eScvyvDR!U|+8OvHYGBWx`ahug*QPr{1BdyFlO8yadhrF+1D8-!n8I-N_bi-) zd02+aklfAIz@5k=W-sdggQx+#5nR6;_wFxECAbc2 zFpLLLFUVy2bYCv&x(GERWvCZVz$JJq>b@PQnckhCqD=Q8eVJELBRzs+@ncj+zoKU1 zGIE$9Bd&fec^Kk)6lwrlaRDAeE!FRVm+<}+HaDvOW

Ogu2OAXFIO<5Efgz3XYxD)l=4eI%N)CikViLMN;L#QS0L?yTh9o&g& z`u-15QD%oxYx@o|cykKX;SZ=6{)}3Ze}eW5veR=ps2Ap=5-#SX`)8w`Z$!pm?nB)l zMI|1`gf>Y(6>Y8^sE+oaM)W*t>Rv`|#^b@?&!IZHfJ*o>=3+VvPt}Y;B~XL9uOYA* zH4`fWI}4eAP4y-k?#4$@-}7lyhZj*DrICfM3sH$pLA`hu>ho$qZNBBGk*&s=*n=9_ zOQ@N6Gq`>SwWI^1nSXsgU(>J(=dcsi(SB6NFQ8`RwZOMfOK=2N;zy{>R9bZPzNx5$ zXQ8HiF)Gn^ti;Wz=U+rU_j)3@;V5b;KE*Y72K8B17xPJBD=MM4Q3-y4e9pO?EdigSdlm3GIUlqLk3)Sx!tN^hr%1 zRGNv^!~$XiF_+jxsAxlPOxE~c0kxl&1lJD)*6VvznM~Z7tnu04?Zi|v&PBJ)yYgN6mb{ z$BTA2ExsSMCv$cUb=yN5B5~U@{DKXSaO`&@UQO!_^@ZZ0UVALJ-!923&1{dG1~10R z@1QGtG;irxcT?Pn#ocu=)97GE?loqaLz5Zf+aqg*)81v($@6 z+{04}`-j-nB0nd>aH6Kp4~ODW&zaxSVy_hS+3m%X?N7zUH^#jW-*cS}v2MTDw^8T0 zwE8W5es9#bB_-!Yz)OB TexI{3ISnB@r7+i)O!(tJ83%vd literal 11287 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Nažalost, nemate dopuštenje za pristup ovoj stranici." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Dodaci" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Galerija Tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Nekoliko pamtljivih riječi koje će motivirati vaše čitaoce da komentiraju." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Podesite formu komentara s pametnim pozdravom i shemom boja." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Shema Boja" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Tekst dobrodošlice" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Tamno" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Svijetla" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparentno" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Zalazak Sunca" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Trešnjin cvijet" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Svježi snijeg" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Sumrak" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Kontrast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Klasično svjetla" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Klasično plava" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Pregled" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Postavke" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Konfiguracija" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Kupnje" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-pošta" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domene" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Sve web stranice" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Otkaži odgovor" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Odgovori na %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Komentiraj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Spremi moje ime, e-poštu i web-stranicu u ovom internet pregledniku za sljedeći put kada budem komentirao." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Pretplati se" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Upišite adresu vaše e-pošte" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Nastavi čitati" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opcionalno" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Web-stranica" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Odustani" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Pošalji mi email o novim komentarima" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Pošalji mi nove objave emailom" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Obavijesti me o novih objavama" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Tjedno" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Komentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Odgovori" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Dnevno" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Odmah" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Odjava" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Websajt (opcionalno)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Započnite" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Postavljanje web-stranice" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Omogućite dijeljenje objave" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Odaberi temu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Spojite račune društvenih mreža" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Dodajte novu stranicu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Dajte ime svojoj web-stranici" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Minijatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Imenujte svoj blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Dodaj poveznice" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Odaberite dizajn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Naslov:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Da" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ne" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1300,8 +632,6 @@ msgid "Edit" msgstr "Uredi" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1429,31 +759,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Pritisni za više informacija" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Prebroji elemente u podkategorijama prema ukupnom." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Maksimalni postotak fonta:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Minimalni postotak font:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Izostavi:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1471,24 +801,14 @@ msgstr "" msgid "Category Cloud" msgstr "Oblak kategorija" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Odbaci" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Trenutno koristite %1$s od %2$s prijenosnog limita (%3$s%%)." @@ -1625,47 +945,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Slika" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1682,19 +1002,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Prikaži about.me profil sa mini-prikazom" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Nije moguće dohvatiti tražene podatke." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Napravi besplatnu web stranicu ili blog na WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Izradi besplatnu stranicu na WordPress.com" @@ -1704,8 +1019,8 @@ msgstr "Pogoni WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog pokreće Wordpress.com" @@ -1782,10 +1097,6 @@ msgstr "Snimi" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1899,8 +1210,7 @@ msgstr "Telefon" msgid "Email" msgstr "E-pošta" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Naziv" @@ -1914,27 +1224,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Pozadinska boja teksta:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Pozadinska boja avatara:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Nema avatara" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(najviše 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Broj komentara za prikazati:" @@ -1956,37 +1266,37 @@ msgid "Recent Comments" msgstr "Najnoviji komentari" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "dana" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Mreža" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Popis" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Prikaži kao:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Broj objava za prikazati (1 do 15):" @@ -2020,62 +1330,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Tekst koji se prikazuje iza Gravatara. Ovo je opcionalno i tu možeš opisati sebe ili svoj blog." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Veličina:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Odaberite korisnika ili \"prilagođeno\" i unesite željenu adresu e-pošte." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centar" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Desno" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Lijevo" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Nijedno" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Ekstra veliko (256 pixela)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Veliko (128 pixela)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Srednje (96 pixela)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Malo (64 pixela)" @@ -2092,7 +1402,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Unesite Gravatar sliku" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2104,28 +1414,28 @@ msgstr "Svježe otiskano" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Veličina avatara (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Prikaži sve autore (uključujući one koji nisu napisali nijedan post)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Naslov:" @@ -2141,12 +1451,12 @@ msgstr "Prikaži mrežu avatar slika autora." msgid "Author Grid" msgstr "Mreža Autora" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-hu_HU.mo b/projects/plugins/wpcomsh/languages/wpcomsh-hu_HU.mo index 99b1c7b440a085b43c3b0801a0e92016f4d6de4f..2024987566db58199aaf457a93bdc7cd1e5d9b62 100644 GIT binary patch delta 4504 zcmZA3d32Q38OQO4#@x^lbM*Agv~lsz!I%2 zy)1%dD@z3pSOVuLatab?DJ{i6sM0Fd9@+}l+Jjh6;c#ldzs!Z&-jioO_uhHuz0Y0V z7mifd6-7RdYrfS`P7*zd^DT_Ijs6%uC__6K(;73eEsn-m%*Xy%h+S|Mrl3XsOg$fY z*nsV^Wk+M$U;;MB6l`To#Pp6<%pmN<7unbqC!&5(jQT+tCSU-&<63Nndr$-H$Ch~9 z`8F!iv#1GNcJ23(Ihq^Tm+{RlDj9TiWOOnzk7687LM1Q{HE=0Tz?G=QIfI(%uhD}a z;vl^5`qR0I5+8-SPmXgkDuF`GVSMu>l>*$3%Je2`1#TmMrfuiw50bDQ?Ov#XGf~&) zB7f#_J~UvF>o0NoQTM5K->*k))yo*s64kjcPGLIjGp>CLwWMDli)8+Z+Uu6_(HSM9 zX3`%uKnCjiTvQ^Hol{+ZA!=fCF%_%gS$_|eEp+GxCsA8)(Ovi+D#2T>|7+BZ|BX6~ z&DfWw*dEpHg!;ZGDv?ywR`o}%ST^>+37CdYC$RpS!5TVbEl$IYs6_sVO6*hTJ!iYb z=wbDswqzJ;g~mCjyZ(i!#41q}S%q4G^{A(9UxbP>`#CCs-=b!474?JPqXzh^`~E8& zNBbUXE5`7_Vwf37Ze|H`{>*c(f0Of|>p$iE4eF_heC#TJM5j{0g;~ zS5OJPkJIr_sOz(M8EC7};g_iEI?|~#k%nq#A&X%0k=#uY#_9QAt_r?{ zy5Vlr(j7&1!(2eE&~@a`+~Gq5b>u^dWT5skQ#RpzpjK*Ha`gQ$54BPysHdR7ruu&e1CB5Pf<&G+qJ(zy?EO27SU41p>Eh0mEc&^7S2N!!xW=tyb86# zTT%Dlk;3|G?+&?+qo|p@gG%HQYJjV#%x~gA{0ei>4& zQ7iTr)ZX7g-MjHoYAcGIA?JG3itIvd&B?}o_P>FOGQQ@%xQSYkuaQ@PY0C7qNJ0X zIyB#)5=%^vCX|USX+MEVd=|DsFSfuk)Jg{NFco8*F8V5iLrlSVTM-4O`wIXv|djaajwGfx$a@5w`KqdIEf$YC7(7z0gGeXTU z69?mDjKLbz(m#)}xCixgyn!0<4DQDB_z0Hp<0{;Xx_{@4=vJho?l%lI(VPs{UzOQ( zXa)gPW?|IIJd5pdopTH7y8YM|52LO>fjU&DotIG0{WaA6KXW$ab*t0g9ou8F-oH(# zyg=+HeoPb)Dvc|H6B}F6$4*tyymmmvmUUTgS zq(|p(%=aGjU@ozb@Dja<4ur}NqclDNKcIey$R_FuAJLnbN2n|$CK0a^j}s~fiA}@- zH7IZBL+hVPSD~JmYGMLWNR$!J5Gt|6a$+f=f54t4RAxmn zKSCYkNS*6Af{(iT609I9iI<4yi5H2T#5RJ%Y)%kABlOtKCRC0R@x)%DnD7uO#0=sj z@qJ<{QAE5<)M);DsJudSBlIXWCE61|B{~!1h|Pq`2I6>QE&4y8)vn&pxgFcNy3o7i zDPp7=lw(9bkw%OshH0bLQBf%+${TCZXEaFtb=Pi#JBZ<0#g?*JFd$vbSOu>?1z-Raj2kqRRg|@!ulCI^x70ZHE zr6E%gEG_YdxV(B{xGe0qostIH$w^rq3VkKMK-e=rSW$r?yOaLT$p?l!{NW5=*i-qx zKlYh#cj|UNdm(vmeND=kCibl76$*T^P1$?29iLQjF@k%p?de~ew-KR#xrx7=IRP#1347qYSGe!DI` zr~Yz!(vuxji=|-d-QFtH@x)I6t&WMCI M|DE-ik-?__0a!>a9{>OV literal 15018 zcmb7~3z!^LmB&j!k?;}`@r7Oj2{Sk|B;g?$0+>uDBqWoB%!HQ$TispLQ`6N|ZB_M5 zdQcGo7hPS6;uCztb#X_DZpa!}#0R#6D~k94*F`}QcM)B2U3F2{UHA9DRsEPr{QS1R zIsL19tLi?^J@?#mZ_gvoKI9z^pC^zPA*Dkd=VecGoZF95uH)Qztm8Zrz7Z~hZ-Xy{ z?}JCcPs1K~4?G_J0=@(u`W(kO3!VaxhF3y8A3_yJN^f%{DV=h^!0owJsZBxgDc@yxC5R7zXH{-Uqb$z-}9w*AN%~Qyrocj z=!0tCAmq=vkT12n1g%~mCge1ro_`BeJ8#MFe=z4PRQY%0_vfJO?p~;I{b`>66znDa zhdjL$V^Duy3N;=pAYFBap!Dzxh-w`#Prn*UA8&xF@6Ax}e*mfl%9SCPlQJ>sSF%|s%Hz-^988qCZYOuU7mjvRDJJ;vcLC1&ClDR z%KsER2;QCNe+laO`=Q$N0F>Up2i1?qA%D(Od@Y8@;tVt%XXQK}s$c7KZq7Ldw~&81 zRC_;~^A4zf+?n&foIiw`x4(iK->09D@mQ$#p9s~@KB)GsgzEn=v6dS;>8^$Dncd=9Go2cXJ(1nRlRpz3=9s-6DJr86P`r+7O3(*52g2epytK5q27NS${v0J_1r-inVvfgs=nt!m1m%y z8_2mD%5RTB7hVdbw>#l5{3%p>meGiV;2NlQ4nx_?cF2%BG1PN6LCyOQ<>|dp_B97_ z5zZq}_5U{K;U{P1y%bVK39Uq4phdtuc9OnyAdcJ>2W=9V} z+1q1K{r@eLz7JZO)pHb7KbOEwa644LJ_M!LJD}Qg57he)L+SHzcoqCLl)a9flHI=o zO26eiU5C1V4ODqILX~$bRDbruL*O@{{KA7!`uQb17#`k}jqA}+`a2$~{$+Xoxp{gR zN)Owh+UY{|y8>13>!A8|bDsZUC_Q`{N?&tO?|&ob51`(E5~{p|d-3J)NO&Gx3Dxc$ z@KE>~sPVo5GNjHs;WOc#@G#hfOj+kXxDoz4lpfALHPgcuNSB=e4#JzE`guQ8yS|^N ze+Jc`-$Lo*2paVaxCAm)oj!Ot+yrGOm%?pu3VQG>Z~&gxm-YKfsDAoTd)r=iBSDM1xi25q3*BD^EW}Y_hP7VpUU&! z1~FmhR;cpthU(wFQ1yQk%08ZeD*s?QBRw1mRnJnWaT$ObkJF*ryA~b=w?dVF6_kBl z4^_{N@ab?TJPN)m=WS4S^GT@jnalZeh$@}qm^>Pf)ll_shfE3Q3V1ZU9;)3pL$&L6 zsCMmvdhd%+{re77dme^Iz(=9l^CVQczlKM_KR~^I__Az0e-S)`^m$PIOrYMs2I{>x zL+R;esD8d5UIae^Ro?IN{AVuD?BJN3OLLwB)&8yUNH~#m3aY;AA)$qH6I4Gw1~r~{ zK-tsRq2Bvhp8q?jb{)4O)5i%=>BUg>oSJhD94CD_v~~cuk-it=+MN?l&+O-XsPt7( zc5!XaTcG;)NvL`EB`7<64641qhicz(C{OKP0o9+CQ0*Cp(*Fp27952eUVGAa-4yb4 z8EQSK!bx}?d=7jP>b-+smbL$AsOOG{>Tf@ME?f_pI?h#4&%Xs83*Q5!kKIuHzZdGg zZ$Z`nbEtm)CzL(?5lRn-ot@3=gGHcgOQ2M$JsvVzz z$HUL${5Dkoe+Jc_UqU_qJE(CzXfWe3P|q2t@mLD={Bo%Ft;~4=RQt9=)l<%S4b;4Q z7gV{oK$cP4_dX~aEFd36RKK-B_ydHYZGS$&)h0xJ*XLp6)yP_8C!){Ah>ygl2 z(I&V#zwU1K)$lzW)LFd*u6wK3~q@JO)34$QIs_=Y1`w@I0i6 zNGI~g(wWBj6^QKiLFBE7Y)l`G;fIk&5X}dDZbz0P7a_Q(_UB5j-q%iLcK0IES0M(O zMp~b@b8%NI0bh=2T>k>mxXE_)`51DGz2f{JXB`e8ry{e+8bqI?kp?n_d{KzG;hX` z_vh)q%qjdEau1@p_-RC+hmaDo6}b@!kPDFR&wV78=NX^ry0Mb$%aBu$A0v+=>yS4f z`g|T)VXs)r;oZoq^7JbBIb=tk9)Uwh4S5T)47nOP6gd;o=Vas=$fL-Gh>x^B|H#D$ zkQXAiAqnzLld<)rwM98O*Ymx6E`kae=8@WRXKCeVRiM$E9 z9C;0*&z20%_3%r`!N@-&e}%jec`5QNo!Jc((Q|K=~-QZNn%28%8O0aEqSI^ zF9d$E*XeOnQ;m|;EI+dsuWGjHddyD)ug|O)G;4yWY&N@9?~okEiPw8b81-lGs0csxqtFe^ z(C8@1$vWMz9U977l$h}-u9|5-ouDDb!0J^srG8j8ZdfwKD2U?zq&VSKJ^CF4W)uaX zxiAVF)u_%@t;Saz)AhhvT~8;Xm^6BDW1gMyOiyh`?_evZ;1(<8II6db9(2~YiD%YD zs7HfjzYK#pZ(y=q^zD_SxS>XyT2v~!2?nCB4Y^^_3v!s)s|5`b`O`xhN@s`x@M33Z z!VS@G29v5=HW7NkAQw?YW88MWO(s!TrkcP_62FKg)p?_pi2d?JO44&fXGp3tqgGWU zvLPRe!g0S`k6jG}xgnaZdoAcM z>!XRaZd`HJdgCq=szo!Vu4j5*>($⁢e3T)=#Q_l8CjyZE!mXqG_|Ho~E?EmFr>! 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 O|NN{3LdAtAz5fRq$?6aQ diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-hu_HU.po b/projects/plugins/wpcomsh/languages/wpcomsh-hu_HU.po index a42f9ebdbb34b..66af5a68827b1 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-hu_HU.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-hu_HU.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Értékesítés" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Elnézést, nincs megfelelő jogosultság ehhez az oldalhoz kapcsolódni." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Bővítmények" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Megjelenések" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Néhány kedves szó, amellyel a látogatóinkat hozzászólásra bíztatjuk" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Állítsunk be a hozzászólási űrlapon, egy okos köszönési formát, és egyedi színeket." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Színséma" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Üdvözlő Szöveg" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Sötét" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Világos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Átlátszó" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Domain hozzáadása" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Adj el a WooPayments-el" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Naplemente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Porhó" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Alkony" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Kontraszt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Klasszikus világos " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Klasszikus kék" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Áttekintés" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Beállítások" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Beállítások" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Vásárlások" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Hírlevelek" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domain nevek" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Csomagok" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Honlapok" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Hiba: a Facebook bejelentkezési idő lejárt." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Hozzászólás törlése" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Hozzászólás a(z) %s bejegyzéshez" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Hozzászólás" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "A nevem, email címem, és weboldalcímem mentése a böngészőben a következő hozzászólásomhoz." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Feliratkozás" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Adjuk meg az email címünket" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Olvasás folytatása" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opcionális" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Webhely" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Mégsem" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Emailek új hozzászólásokkor" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Heti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "hozzászólás" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Válasz" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Napi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Azonnal" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Nem lesz látható)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Kijelentkezés" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Weboldal (nem kötelező):" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Hozzászólás..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Kezdjük el" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Telepítsd a mobil appot" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Válassz egy sablont" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Új oldal létrehozás" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Bélyegkép" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Csomag frissítése" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Blog elnevezése" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Cím" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "Poadcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "iTunes kategória kiválasztása:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Poadcast kategória használata" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Poadcast kulcsszavak használata" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Poadcast kép használata" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Takarítás" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Igen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nem" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Poadcast szerzői jog használata" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Poadcast alcím használata" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Poadcast cím használata" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Podcast honlap kategória" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Podcast kategória 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Podcast kategória 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Podcast kategória 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Poadcast kulcsszavak" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Poadcast kép" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Poadcast szerzői jogok" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Poadcast alcím" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Poadcast cím" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Szerkesztés" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Otthoni kezelőfelület" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Legnagyobb betűméret (százalékban):" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Legkisebb betűméret (százalékban):" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Kizárás:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "Címkefelhő" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Bezárás" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Jelenleg %1$s tárhelyet használunk a %2$s feltöltési limitből ez (%3$s%%)-a a teljes felhasználható kapacitásunknak." @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Címsor" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Fénykép" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "about.me URL címünk" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Widget címe" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Megjeleníti az about.me adatlapot bélyegképpel együtt." #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Nem tudjuk lekérdezni a kért információt." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "WordPress.com ingyenes honlap vagy saját honlap létrehozása" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "WordPress.com ingyenes honlap létrehozása" @@ -1703,8 +1018,8 @@ msgstr "Üzemelteti a WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Működteti a WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Mentés" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Telefon" msgid "Email" msgstr "E-mail" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Név" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Szöveg háttérszíne:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Avatar háttérszíne:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Nincs avatar" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(max. 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Mutatott hozzászólások száma:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Legutóbbi hozzászólások" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr " - " #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s - %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Rács" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Megjelenítés módja:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Megjeleníteni kívánt bejegyzések száma (1 - 15)" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "A szöveg a Gravatar után fog megjelenni. Nem kötelező, továbbá használhatjuk saját magunk illetve a blogunk bemutatására." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar elrendezése:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Méret:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Válassz egy felhasználót vagy az \"Egyedi\" opciót és adj meg egy email címet." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Közép" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Jobb" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Bal" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Nincs" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Óriási (256 pixel)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Nagy (128 pixel)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Közepes (96 pixel)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Kicsi (64 pixel)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Gravatar kép beszúrása" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "Friss írások" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Avatar méret (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Minden író megjelenítése (beleértve azokat is, akik nem írtak semmit)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Cím:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Ez a honlap magánjellegű." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-hy.mo b/projects/plugins/wpcomsh/languages/wpcomsh-hy.mo index aa4ce6e1a9ac825c7a51d5bf71842d3913e6bd2e..a959e3d2925278b1dfc54baa9d6f85d8cb95db01 100644 GIT binary patch delta 1452 zcmZ9MS!|6#6vt0X+gq33qSn%0wAQMnwg-{ef~X~;9ter>(HriqBEg>Nh9-8=sL~IXU#EV#BiTM4$jzpY%XMXdana<2PXKvq=wGGI;>e2bQ zVN>t{_{%J_MetN78ti#zvr_m1#^8521Lo)8uo~vUWlpbxEU{XsEs`)7Zg$)OwLSw` zm$ChH`0Nl(1RjMw;7K=r4Qj(CH{a&;J;#S|1oMxb{t9*APsnH42$E9gcwkoDFlxV|O?o>Ow1FZ!FNy> z`UNuubaGKeuou)D7zvrPIZy{LhJ|n`R74)^3pcs(1F%23!RcnFA3&{p>&AaTl{U&I zI=7??^;c&!0~K&8)PjWLPRM76X>_p$r&}EFIX;1k>^W45KS7dY-(WTT4Ry}^XvhA` zVHG+VCI5=_3Ow8B z2Ht@mU{R)9M`XI577TOk1`q}AbiyfVsf<8fV3 zMlwQEpn8AC9jpx3qv?aIW<&5%xT1{Xit?{A;ZmF=*=Ss*2RR|^@s6O%rpKx5 z>2VLo|FKmz3`LNksTBX4{xOx{lW~ z@=|GUi_NTEom%hNEN|WFZ5z}6;k<+S>(W+Tw?3Xo`O_m4ix=0{r97ie*Vz(p4SyA% zS(i-0t^V~$JU@~4;!6|hjh_EGGOck|{-kXGSae}keQ+VT8Qi745wr$(EbzfqO2d)F~penmkv64Zw?cl`wg_5PQFQolSl!B53J|9z~l NUs>4D__}a+)*l^0t*`(9 delta 2420 zcmZ9MTWpj?6vwC7R?03{3szd_%EfZ87O@HnN>}cLhD!+O%eH)M7q`1)cU!12S*q0( zO_b!52ZIk*AcB?<3xxt{Nlc6hM$?#`Mjs>?^P6*K&Y3fF zX7@_ft$F#I(~6H9+E%0r=^AHD9R68MN9!&%rWziFli^vo7G8m6@IS}WM~&e#Q|M%` zfC@1OJ_2hXOU+^!hIONQ-mGyG>)gav$Y=J_O@U2NfwIni*zt&Cx0^o(OIUXtj)y1U zG6E}PP^I}D>L7o?ybOOcP=NbxK`}-pFbQhD-08ES9OpSMhDxjs@|l%%s&y3B!VU0M zcod#-T^0}`>-5-4)tg+Lvl9- zs04n6dON?tx$v&jXK+2bi5jQ`>cZUrYz7-K)W8;~K*wMO`~=FO4{F0fsK7tLneevL z?>T+)#8JORQ0p3?9^p=?#N&?ba0&XmdAFd?@mr`3e}+2QZMYc9TlOVTC8&4$YNu~> zdLz`$y#`g%HaGt!+=AW-b@Cq}Ih*_)27Kl&oiZ(=K+3!vE{F4>PQC}~W>Rkc5PSx` z8_Msh;}38a`Yosf+;jFyf-13PQ1Lg=af5lYhk-K9L1oqf`OGmo1@3XY2$k`7P;a6D zbrUz?E_et20ax+Tv~dm2nvX)J%x0*!@jB$G1#{!rKWNHK!JivdO(oR3Xh0SrdgW?s zkX6VFNIkL)sYO(x&4`-H^l*FL8I-u%OUOE8tM-2u(G85XIb#FI$DmH2zuonSPN9-L zg{Y|vDiKd5C>by-5ItbEjYu8xB%(L)G(uI(Y9z1UxnBM}5qnr-b~raj>uGL0?il&3zIHjT-)I8n`ZubEUL zE+y$C?;j|Q%=L047tb1&T!zM}NtlF_r-K8b-Me*db$ma4zsKTwtfSS=M8Rv}d4Q#KnIrR5j5Qh=lPJ)4hJx z#L6-Slfy|rT{g3tKs{rLd}P0J?)~;G0m=D7cUf&wxNwEt`eY$SN2q#^v7NY`V|}M7 z=rEmQQLm45nL%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Խրվակներ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Գունավորում" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Մուգ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Բաց" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Մայրամուտ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Ակնարկ" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Կայանքներ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Տիրույթներ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Բոլոր կայքերը" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Չեղարկել պատասխանը" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Թողնել մեկնաբանություն" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Բաժանորդագրվել" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Կարդալ ամբողջությամբ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Հայեցողական" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Կայքէջ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Չեղարկել" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Մեկնաբանություն" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Պատասխանել" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Ելք" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Մանրապատկեր" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Վերնագիր" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Այո" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ոչ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Խմբագրել" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Բացառել՝" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Փակել" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Կենսագրություն" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Լուսանկար" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Ձեր about.me հղումը" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Պահպանել" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Հեռախոս" msgid "Email" msgstr "Էլ-փոստի հասցե" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Անուն" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Ցուցադրելու մեկնաբանությունների քանակը՝" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Վերջին մեկնաբանությունները" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "off" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Ցանցավոր" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Մեջտեղով" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Աջից" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Ձախից" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Չկա" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Վերնագիր՝" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-id_ID.mo b/projects/plugins/wpcomsh/languages/wpcomsh-id_ID.mo index a810ae965d2827e9d4756316082e602d823d3537..511deb1866260bf28ff0b2ee510cb7eec2d97fce 100644 GIT binary patch delta 8713 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 literal 49167 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" msgstr "%1$s di %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Anda bisa mengubah Gravatar dari halaman profil." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Pemasaran" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Maaf, Anda tak diizinkan mengakses laman ini." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Gunakan dasbor lama WordPress.com untuk mengelola situs Anda." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Gaya default" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Gunakan WP-Admin untuk mengelola situs Anda." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Gaya klasik" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Gaya Antarmuka Admin" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Pelajari plugin" @@ -72,424 +42,10 @@ msgstr "Akses berbagai plugin gratis dan berbayar yang dapat meningkatkan fungsi msgid "Flex your site's features with plugins" msgstr "Tunjukkan kehebatan fitur situs Anda dengan plugin" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Etalase Tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Jelajahi tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Telusuri lebih dalam dunia tema WordPress.com. Temukan desain responsif dan memukau yang akan menghidupkan situs Anda." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Temukan tema ideal untuk situs Anda." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Tambahkan sejumlah ucapan menarik untuk memancing komentar pembaca Anda." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Aktifkan blok pada komentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Izinkan pengunjung menggunakan akun WordPress.com atau Facebook untuk berkomentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Sesuaikan formulir Comments Anda dengan salam dan skema warna yang cerdas." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Skema Warna" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Teks Sambutan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Izinkan Blok" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Gelap" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Terang" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Luncurkan toko Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Tambah domain" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Kembangkan bisnis Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Pungut pajak penjualan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Terima pembayaran dengan WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Tambahkan produk Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Sesuaikan toko Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Matahari Tenggelam" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Serbuk Salju" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Malam Hari" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Kontras" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Gelap Klasik" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Terang Klasik" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Biru Klasik" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Akuatik" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Ikhtisar" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Bagikan “%s” melalui Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Untuk mengakses pengaturan paket, domain, email, dll., klik \"Hosting\" pada bilah sisi." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Pengaturan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Monetisasi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Monitoring" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Konfigurasi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Pembelian" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domain" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Add-on" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Paket" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Hosting" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Semua Situs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Error: silakan coba berkomentar lagi." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Error: login Facebook Anda sudah kedaluwarsa." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Batalkan balasan" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Tinggalkan Balasan ke %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Tinggalkan komentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Simpan nama, email, dan situs web saya pada peramban ini untuk komentar saya berikutnya." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Komentar berhasil dikirim" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Berlangganan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Masukkan alamat email Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Ingin mendapatkan pembaruan pos blog? Cukup klik tombol di bawah untuk terus mendapat pembaruan!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Jangan sampai kelewatan!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Lanjutkan membaca" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Langganan sekarang agar bisa terus membaca dan mendapatkan akses ke semua arsip." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "Jelajahi %s lebih lanjut" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Memuat komentar Anda..." - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Kami akan terus mengirimkan pembaruan!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opsional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Situs web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Tulis balasan..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Batal" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Kirimkan komentar baru melalui e-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Kirimkan pos baru melalui e-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Beri tahu saya ketika ada pos baru" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Mingguan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Komentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Balas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Harian" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Secara langsung" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Alamat takkan pernah dipublikasikan)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Keluar" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Login melalui %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Login untuk berkomentar." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Login untuk meninggalkan balasan." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Kirim komentar. (tidak harus login)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Kirim balasan. (login opsional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Situs (opsional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "Email (alamat tidak akan pernah dipublikasikan)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Terima pemberitahuan web dan seluler untuk pos di situs ini." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Login atau masukkan nama dan email untuk berkomentar." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Login atau masukkan nama dan email untuk membalas." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Tulis Komentar..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Ayo mulai" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Gunakan pengimpor berpemandu milik WordPress.com untuk mengimpor pos dan komentar dari Medium, Substack, Squarespace, Wix, dan lain-lain." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Kunjungi %1$sPengaturan Jetpack%2$s untuk pengaturan penulisan lebih lengkap yang didukung oleh Jetpack." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Pembaruan Terjadwal" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Verifikasikan alamat email untuk domain Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Pengaturan situs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Selesaikan penyiapan Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Selesaikan pengaturan toko" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Perbarui desain situs Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Aktifkan berbagi pos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Instal aplikasi seluler" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "Tidak ada berkas yang dipulihkan." @@ -563,134 +119,6 @@ msgstr "Impor telah berjalan." msgid "The backup import has been cancelled." msgstr "Impor cadangan dibatalkan." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Langkah selanjutnya untuk situs Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Tambahkan Blok Langganan ke situs Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Impor pelanggan yang Anda punya" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Lihat metrik situs " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "Siapkan SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Instal plugin khusus" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Pilih tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Siapkan penawaran untuk pendukung Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Hubungkan akun Stripe untuk menerima pembayaran" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Tambahkan halaman Tentang Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Kelola paket Buletin berbayar Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Sambungkan akun media sosial Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Kelola pelanggan Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Tulis 3 pos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Dapatkan 10 pelanggan pertama Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Aktifkan pop-up pelanggan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Sesuaikan pesan sambutan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Raih keuntungan lewat buletin Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Perbarui halaman Tentang Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Migrasikan konten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "Verifikasi alamat email" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Mencegah pembuatan pos dan halaman baru, mencegah pengeditan pos dan halaman yang sudah ada, serta menutup kolom komentar di seluruh situs." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Aktifkan Mode Terkunci" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Mode Terkunci" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Untuk mengalihkan kepemilikan situs, kami meminta orang yang Anda tunjuk untuk menghubungi kami melalui %s dan menunjukkan salinan akta kematian." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Tentukan seseorang untuk menjaga situs Anda jika Anda meninggal dunia." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Kontak Pewaris" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Kepemilikan Menyeluruh" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "Pilihan \"Siapa pun dapat mendaftar\" sedang aktif. Peran asal saat ini adalah %1$s. %4$sPertimbangkan untuk menonaktifkan pilihan ini jika pendaftaran terbuka tidak diperlukan." @@ -720,149 +148,37 @@ msgstr "Berkas tidak ada" msgid "Could not determine importer type." msgstr "Tidak dapat menentukan jenis pengimpor" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Bagikan situs Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Edit satu halaman" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Situs Anda memuat gaya premium. Upgrade sekarang untuk memublikasikannya dan mengakses berbagai fitur lainnya." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Buat nama domain Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Tambah halaman baru" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Tingkatkan kunjungan ke situs Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Beri nama untuk situs Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Klaim domain gratis Anda untuk satu tahun" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Hadiahkan" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Gambar Miniatur" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Bagikan “%s” dengan Publikasikan" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Bagi" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Upgrade Paket" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Buat Buletin berbayar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Siapkan metode pembayaran" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Pilih domain" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Luncurkan blog Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Edit desain situs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Lakukan pengaturan situs Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Beri Nama Blog Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Sesuaikan situs Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Unggah video pertama Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Siapkan situs video Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Luncurkan situs Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Tambahkan tautan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Atur Tautan di Bio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Pilih desain" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Mulai menulis" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Tuliskan pos pertama Anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Tambah pelanggan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Pilih paket" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Atur Buletin" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "Tidak dapat memuat kelas %1$s. Harap tambahkan paket yang berisi situs menggunakan composer dan pastikan Anda mengharuskan Jetpack autoloader" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Alias textdomain harus didaftarkan sebelum hook %1$s. Peringatan berikut dipicu oleh domain %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "Skrip \"%s\" bergantung pada wp-i18n tetapi tidak menentukan \"textdomain\"" @@ -1063,27 +379,27 @@ msgstr "Beruntunglah Anda! Desainer tema Anda memilih font khusus untuk Anda yan msgid "Uncheck to disable" msgstr "Hapus centang untuk menonaktifkan" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "ID Feed Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "ID Feed Apple Podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Judul:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Feed RSS Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Dengarkan di Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Dengarkan di Apple Podcast" @@ -1095,98 +411,114 @@ msgstr "Tampikan informasi tentang Podcast Anda dan izinkan pengunjung untuk men msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Pilih kategori iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Atur kategori podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Atur kata kunci podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Atur gambar podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Bersih" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ya" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Tidak" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Atur podcast untuk dewasa" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Atur hak cipta podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Atur rangkuman podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Atur penyusun podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Atur subtitel podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Atur judul podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Ini adalah URL yang Anda kirimkan ke iTunes atau layanan podcast." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Feed podcast Anda: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Pilih kategori podcast:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Kategori blog untuk podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Kategori podcast 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Kategori podcast 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Kategori podcast 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Kata kunci podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Gambar podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Tandai untuk dewasa" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Hak cipta podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Rangkuman podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Nama penyiar podcast" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Subtitel podcast" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Judul podcast" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Sunting" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Beranda Saya" @@ -1428,31 +758,31 @@ msgstr "Kuota ruang disk" msgid "Disk space used" msgstr "Ruang disk digunakan" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Klik untuk informasi lengkap." -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Menghitung item di subkategori terhadap total induk." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Persentase huruf maksimum:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Persentase huruf minimum:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "ID Kategori, dipisahkan dengan koma" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Eksklusikan:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Jumlah kategori maksimal yang ditampilkan:" @@ -1470,24 +800,14 @@ msgstr "Kategori yang paling sering digunakan dalam format cloud." msgid "Category Cloud" msgstr "Awan Kategori" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack terputus & situs bersifat pribadi. Hubungkan kembali Jetpack untuk mengelola pengaturan visibilitas situs." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Perbarui visibilitas" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Luncurkan situs" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Selesai" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Saat ini, Anda telah mempergunakan %1$s dari batas unggah %2$s (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Tampilkan foto Instagram terbaru Anda." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografi" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Tajuk Berita" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Jangan Tampilkan Nama" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Tampilkan Kecil" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Tampilkan Medium" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Tampilkan Besar" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Tampilkan Ekstra Besar" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "URL tentang.saya milik Anda" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Judul widget" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "Widget tentang.saya tidak akan tersedia lagi setelah 1 Juli 2016. Setelah tanggal tersebut, widget akan menampilkan tautan teks sederhana ke profil tentang.saya milik Anda. Silakan hapus widget ini." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Tampilkan profil tentang.saya dengan gambar mini" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Tidak bisa mengambil data yang diminta." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Buat situs web atau blog gratis di WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Buat situs web gratis di WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Didukung oleh WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog di WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Simpan" msgid "Activate & Save" msgstr "Aktifkan & Simpan" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Kelola pengaturan visibilitas situs Anda" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "Plugin ini telah diinstal oleh WordPress.com dan memberikan fitur yang ditawarkan di paket langganan Anda." @@ -1898,8 +1209,7 @@ msgstr "Telepon" msgid "Email" msgstr "E-mail" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nama" @@ -1913,27 +1223,27 @@ msgstr "Permintaan Reservasi" msgid "Reservations" msgstr "Reservasi" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Tampilkan komentar dari:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Warna latar teks:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Warna latar dari Avatar: " -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Tanpa avatar" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(paling banyak 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Jumlah komentar yang ditunjukkan:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Komentar Terbaru" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Anda belum menyukai pos apa pun baru-baru ini. Setelah melakukannya, widget Posts I Like ini akan menampilkannya" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "pada" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s di %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Hal yang disukai penulis untuk ditampilkan:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Kolom" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Daftar" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Tampilkan sebagai:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Jumlah pos untuk ditampilkan (1 sampai 15):" @@ -2019,62 +1329,62 @@ msgstr "Saya Memberikan Suara" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Tunjukkan kepada pembaca bahwa Anda memberikan suara dengan stiker \"Saya Memberikan Suara\"." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Teks yang ditampilkan setelah Gravatar. Tindakan ini bersifat opsional dan dapat digunakan untuk menjelaskan diri Anda atau tema blog Anda." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Link Gravatar. Ini adalah URL opsional yang akan digunakan saat ada yang mengklik Gravatar Anda:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Penyejajaran Gravatar:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Ukuran:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Alamat Email Tersesuai:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Pilih satu pengguna atau pilih \"tersuai\" dan masukkan sebuah alamat email tersuai." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Tengah" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Kanan" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Kiri" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "None" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Ekstra Besar (256 pixel)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Besar (128 pixel)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Medium (96 piksel)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Kecil (64 pixel)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Masukkan gambar Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Pilih gambar untuk ditampilkan di sidebar:" @@ -2103,28 +1413,28 @@ msgstr "Terbitan Terkini" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Pasang lencana Freshly Pressed di sidebar Anda" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Ukuran Avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Tampilkan semua penulis (termasuk yang belum menulis pos sama sekali)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Judul:" @@ -2140,12 +1450,12 @@ msgstr "Menampilkan petak gambar avatar penulis." msgid "Author Grid" msgstr "Petak Penulis" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Situs Pribadi" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Situs ini bersifat pribadi." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-is_IS.mo b/projects/plugins/wpcomsh/languages/wpcomsh-is_IS.mo index aab609dd1031a382946b5a7daf9a714c5b369f03..2c2fd2ece9beb4e0e906c5c8332976a49559e615 100644 GIT binary patch delta 3672 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-is_IS.po b/projects/plugins/wpcomsh/languages/wpcomsh-is_IS.po index 38a8fc9a80062..3d6180b6ea435 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-is_IS.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-is_IS.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Markaðsetning" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Því miður, þú hefur ekki leyfi til þess að skoða þessa síðu." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Viðbætur" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Litasamsetning" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Dökkt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Ljóst" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Gegnsætt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Sólsetur" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Birtuskil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Yfirlit" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Stillingar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Stillingar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Keypt þjónusta" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Tölvupóstar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Lén" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Áskriftarleiðir" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Allir vefir" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Hætta við svar" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Skildu eftir svar við %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Skrifa athugasemd" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Vistaðu nafnið mitt, netfangið og vefsíðu í þessum vafra fyrir næsta skipti sem ég rita athugasemd." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Gerast áskrifandi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Halda áfram að lesa" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Valfrjálst" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Vefsíða" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Cancel" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Vikulega" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Athugasemd" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Svara þessu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Daglega" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "Póstfang verður ekki birt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Útskrá" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Skrifa athugasemd..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Byrjum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Smámynd" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titill" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Skilgreina flokk hlaðvarps" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Skilgreina lykilorð hlaðvarps" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Skilgreina mynd hlaðvarps" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Stílhreint" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Já" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nei" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Skilgreina hlaðvarp bannað börnum" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Skilgreina höfundarrétt hlaðvarps" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Skilgreina samantekt hlaðvarps" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Skilgreina höfund hlaðvarps" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Skilgreina undirtitil hlaðvarps" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Skilgreina titil hlaðvarps" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Þetta er vefslóðin sem þú sendir til iTunes eða hlaðvarpsþjónustu." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Hlaðvarpsslóðin: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Velja flokk hlaðvarps:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Bloggfærsluflokkur fyrir hlaðvörp" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Lykilorð hlaðvarps" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Mynd hlaðvarps" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Merkja sem bannað börnum" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Höfundarréttur hlaðvarps" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Samantekt hlaðvarps" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Undirtitill hlaðvarps" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Titill hlaðvarps" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Leiðrétta" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Hæsta prósenta leturstærðar:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Lægsta prósenta leturstærðar:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Undanskilja:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "Flokkaský" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Loka" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Fyrirsögn" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Ljósmynd" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Titill síðuhlutar" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Stofnaðu ókeypis vef eða blogg á WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Stofnaðu ókeypis vef á WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Knúið af WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Bloggaðu hjá WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Vista" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Sími" msgid "Email" msgstr "Netfang" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nafn" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Bakgrunnslitur texta:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Bakgrunnslitur gengils:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Engir genglar" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(mest 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Fjöldi athugasemda til að sýna:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Nýlegar athugasemdir" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "á" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s um %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Hnit" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Listi" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Sýna sem:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Stærð:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Miðja" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Hægri" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Vinstri" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Ekkert" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Stór (128 dílar)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "Ferskar færslur" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Stærð gengils (px)" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Heiti:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-it_IT.mo b/projects/plugins/wpcomsh/languages/wpcomsh-it_IT.mo index c7e0d3b99edd3dc9e05d6728ab799b658bc1961e..4c7194e1c168cf61997b80834e3dbee5e9e2ee1e 100644 GIT binary patch delta 8731 zcmZwL2Yggj+Q;!bkN}~Ck^rFy10j?ULZ~K$9zqd90-*^~CdrUY3^O4!p~C>uq$wWM zRf?2F7haUrQBXw1jtDk%kyWv-!s>#e*kG6U_s_lfVc*Yt^x=EXx$WHNoO2UczP9>j zk5mhvZ4`B{MVacdtdPl!8iqDaXWG^>rsrsH?awRfKm7z z_QoHuCU$gN7Vl!EVRP(@>Ys=WaXKdOd}}rp-EghrX4DP0qXx1Yb%SSc5WbJqu}K?y zV9k;Ltxo)*42;AYSm;=a%G7LBCYNAmT&;edZ$+p?<5ARuUPF!ibJPw0g>5mKKa|Rj z*dC`~DlSK*`f=2CAE5^R4eE{mjg2rm(SFec$F>-5z=0Ghnv;I03v;j@7NSx=+i5RF zowpIY;&vQ@Z=oI>$HEwmtx@Os(Tz(m1s}pBJb_v>m)enkjjRQ|x*!#!us>=_vK(_T zn)XE0fTtqUZ23`ZXQSgT>`(h3=HX>j%7>CJ-9Hx-aJti;*Pi?<R`XgD%6|oM?L5R)PT<7RJ??Gp*&8~@$rt+@I39}FqKnO#xQ{z zKvJ@OK{{%+_d~tu6x1SG=p0{zn)3}#`w-ToeFXL9uV4*q%t}+nTB6oc7gT1m@n#I? zQc=oQBkRn14SV1@)P8Nr#3>WKQ3LFYx^XVn!3j>g0QIImM?Y$SK~&1Op|;&Y)b+>k znD+nMR5Zdrb+J#}iyFvF$n;rXp&M(n)HQ(4s5kA8y75q~+Ru)&Q3JmN>*6-l`TI}< zd;WjV^Jwf#dsWw`ru4K-KYZfCUa4lSc3I&Eoz_-Vhel} z*@4y@PXBkPj9!yG--=EnomdAux_AJt#TDHwYZBIHJ~nc^q^JERzo0U94fUV~y=)U5 zd!sTk0_))v)cHQg1z4Z-Dm|W z<(pCWdkl5`OQ<(}+v)!RHL&xj3|{F?{&k|3q6Sb8bwLXph;1ATuqo}`r~y6ewBJW% z;5*b5UBkv0pKd=W8P(s{aSUpJGo9lL(#bzt)LKtRJA4w=KI61q8TJM3Q6ukzu{g?c z3MvDon28HeFK`f*$sV9Z-Jo$F`%RKiizywoPlupVHQH(CBOAh+ zicN4Gmg6o=!8k^tsTqi8aX-F+>-t*O%Q&8;|2#Hh&!5Ebhg8^y*24q%5sZO>mh~$3 z8AO^`pt3Gw=!IWvsXn_K(k8ETp{s zmC3^xjW1vg?f+M))TZMEj=|HY3p$OoS8)%lNqZn_s)nQHa1v_KmSQ5#!!@`SwJ4KD z+24nB)cFI@jbl)YumVSE|F5E=3r=BO{MzwHr{Bu4tlQ|1!|GU$r!j;c95vcb>0?ON zt@*k3;(7tKHZG$2XXG(>d>EDKix}3(#_`(8I1`)VCai{gQE$8-wb+h0$4{YB{w?Zz z;2LYEx)tiYzD_$IThX444e@SlfV)u7iHs%x2~^&6PWTGd{u!HL{d_w!ogDk3QkRQb zOoiA2m!JmvAZh^nP!D(!HPADtfnG%YRINMCe!=8%)PUc`F8D3>#by)iMLPkNiF;53eH@qJi(x7nK-NU|D2_#q z^ek$XUO^pqO|rLF1Jq*dj*YPoYE9%}3XVhlP+Eq%ZVk4@`&WoHK%7#Q}P-1!kZJri?q z59)qDq6Tyo^@8jeP4)>rkaR4=-V|W*Sh#j%SLppI2>On7I z6MPeW_yuYTMitmEFwSub#=H3YUjg~Q$_aA|?R_2Mv!olXL2a{5j)zd0_ynWyA}X~% zp)wQewFlf7htY10x=%4`;N{pFm!e*52M)x2-mv|v*SBGgS8Si3fSqW!MrCjW>iPobcqN{vy(mnj1(lg4_Ud1b?P%}8 zmUtXn;Wwx`tU+G&22HUIwn5!E%W(qgIv;9at56x+?Dzok$+5Ph?iapHr5cqQrS=6e zm`uAV_Q1iYRL^m|8*9?u=lBF_0EbZ-Iq9@NMqPIiHPD#b?J4ezwP+7O1{Su4QyET2 z4o+iH+=rX+av2K@SNr*{bNu^&{or-w_Q(y!(f?=1ryWnA*2-tt0573-P4(IK`OQ%M zT`*qzzdsd?JRkLD1*nmiqPEKltczPQ5%(gW0P7^`M#&ZS)McX1pN2Yr4(d(sK<$e4 zsI{;gqwxsV=lRx4R5Zf(Py;xJ1Mqv~=Z}>ZwAaW=)ZFewt%>KI_9v(T|LzzcvLBR+ zH_<-~wZ^nm?R34|&7SCf0)~&SXz6r+Bz6CYFX&8?o)SKRkdZV2<2oIxP z;3{g{Ma{8)nT<#FyRi{=#5ByDL;iJQ868UHBGjtg;J5|#!)7nm!AG$dK7)Fri?{&m z%(cH4tB_|~`|)RNJCDybHk;441Fzs|Ji|rb;NuI)zfO2yk!4-Lg^Ni)mM&q>V?M`^ zW8zW<#$vpHHSy{)dsRo>VcQ;CbKY=#3QO=Pwpw9->pw*uue;K|J_R*3J;ST)xf_eT zj8%r(uU}#hJcnFswOnnliJdr*_UFjPu-dM%r)U#SqP++E;(ss^Gw-ygbUN0g?Q@*% z7@ki>DPM+MW8H;Hb;4TPc36vc8aBoZ)EdY|O<56k#7f+N+fj=&Wu1N92y9AwEVjo| zr@aYFwEy=~X~Ka<>+OBp$uSf4z#Qc3Y!za4d;^;>1t+nP_E$XhCmg=f{>P_&ciD?^ zJ?^CcEu4>|e%DaxNyk>yoV<(rB3{H8yo3$$s$=Xub_U$2H|^y( z7Il6Ab^d(Eb*R*DLrv`-tc&|3&$kXy(Ffrb)KnaI{1A2F*NzvQ{-05qi88j$QRk&$ zeN1;8j+&}TsDaLMT#I_aM=%^qWgnFq_zY^59z`--RT8Ms{IBxWf3>(d=Zq#kr~lg< zj`^rhroT7#L=|S+x|h&eXy79MO2se45a)!!_zi89;Wkx&%Na{O&pGD@>Kf>c<*zif zQzAqy=R7y{zY!#?sx+hjMW-$ryU4%hB#i@_yL0Njp>(01!m%^Bn`lV=emp|#A^uEM z5M_kQVWKVPoUdx}`yTZnPW_}~Id&$}h-;dEm9GgtPSy*=V?=8%WPw|65?b{tY?rFP z%O6#PQlE2J%vFCazk>QeEyNFq+llL?1^wEBBT)aoq@Sk6#B3tGk3SwDu9sR=60bKf zhYLq!KDxlv=;k z1L{Y(zCYIM#K&q-W)K%tp*%#)B?{D_q!9YXt9(Xu<3^`3hxiw9nK(;~AigA2yu^a4 z8e5L@`GHtf?%>ahMAiF$LggwE!wKDq8_TaWhSE0``LtWxiSa}#aSQP@5hDIg+*tNH zjm6l8XhO7e?me3NEF#%?e%0SvXjgsDk6~M45Rp&x=b{O?oOqVFg?2vi7wR{boiw`A zuTmF#Id!{-7oc5-MknHBqBe0r?>~S8ZC(upyN2|KM~)nlX4%? zvZ`kP%}D<`GKzSHzTx;1?jrURH_?tF22jr>HV`VA#CKIS%lgeWY<)`Q5;2pAm{1{lQcSB@4z3O`e6J0?Vo-LbPgrz zaKS`k5|KfB3O$$`kM&edFIQA)A7loD?mbQxU77xD%Co-%hL!FsE+*dy{#EWtBxph{~l)3fYauUf&FUD4^)P%QQn#6+MsDs#cr+~l64}s;&!(u==O3; zUm+t{HDrhBojt+q$Zl>v&K_Zg4_#}{4-M7HD+&0$7Jr5UkynRZh%(QPnxAmHcmCW! zMN!bo3ltT4f+2UXvLNIOm6_z6T(dGK!L%8@*<2l+Vp4N+%<|l}t|AkiH`2_=`=sR` zm*#sz?(+Y0dDk&1=Gd5|#1ap0**-D7d-t@=q+nI0Tc&%C&*RRkEYNrtculLZoz1Od zUo*-11$BAD3in)Zfl?OvEq`QeB)?!(HB;`L8TrDS=rX;F6KjV8?!lEopWhoaPnHy# z@xHd^E?;q^e`!WkMGTZ#Ra*ugx)!LfFDtyIdK2M}__0DRh)!N18;Mxpx&-w(DvOdQAwC)EpbwgId zh*{+xR+(o3JHu-Y;6RJh!j=THY3oL_VOvjgeA^7uZF_Rfd{5aNGHT9kA04^n zp+>GwY{LKNR=g7__PB$8+%jNB?igh1?@UYKJ&JsDd__KY+oWJyH}5oy)uaVyueb#s z>yJ~+y*sa&hj*34W>t7SZax5^O65JWVfVBKk*kphtC_Wjc1JRv&T*M{o@s4dhZD?$ e&n`DBjx;dKk2Es-k1UR?d@dlHbFDp&} literal 50434 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 z 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-it_IT.po b/projects/plugins/wpcomsh/languages/wpcomsh-it_IT.po index 35196149ee3d0..32f460e8f9904 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-it_IT.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-it_IT.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "%1$s su %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Puoi modificare il tuo Gravatar dalla pagina del tuo profilo." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Non hai il permesso di accedere a questa pagina." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Usa la bacheca legacy di WordPress.com per gestire il tuo sito." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Stile predefinito" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Usa WP-Admin per gestire il tuo sito." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Stile classico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Stile dell'interfaccia admin" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Esplora i plugin" @@ -72,424 +42,10 @@ msgstr "Accedi a una varietà di plugin gratuiti e a pagamento che possono migli msgid "Flex your site's features with plugins" msgstr "Migliora le caratteristiche del tuo sito con i plugin" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Vetrina dei temi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Esplora i temi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Immergiti nel mondo dei temi di WordPress.com. Scopri i design reattivi e straordinari che ti aspettano per dare vita al tuo sito." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Trova il tema perfetto per il tuo sito." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Alcune parole per fare presa sui tuoi lettori ed incoraggiarli a lasciare un commento" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Attiva i blocchi nei commenti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Consenti ai visitatori di utilizzare un account WordPress.com o Facebook per commentare" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Imposta il modulo dei Commenti con un saluto e uno schema di colori accattivanti." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Schema dei colori" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Scrivi un Saluto" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Consenti i blocchi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Scuro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Chiaro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Trasparente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Lancia il tuo negozio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Aggiungi un dominio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Fai crescere la tua attività" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Raccogli imposta sulle vendite" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Ottieni pagamenti con WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Aggiungi i tuoi prodotti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Personalizza il tuo negozio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Tramonto" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Neve farinosa" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Crepuscolo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Contrasto" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Scuro classico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Chiaro classico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Blu classico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Acquatico" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Panoramica" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Condividi “%s” tramite Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Per accedere alle impostazioni per piani, domini, e-mail, ecc., fai clic su \"Hosting\" nella barra laterale." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Impostazioni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Monetizza" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Monitoraggio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Configurazione" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Acquisti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domini" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Add-on" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Piani" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Hosting" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Tutti i siti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Errore: prova a commentare di nuovo." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Errore: il tuo login Facebook è scaduto." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cancella risposta" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Scrivi una risposta a %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Lascia un commento" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Do il mio consenso affinché un cookie salvi i miei dati (nome, email, sito web) per il prossimo commento." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Commento inviato correttamente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Abbonati" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Inserisci il tuo indirizzo e-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Ti interessa ricevere aggiornamenti sugli articoli del blog? Basta fare clic sul pulsante di seguito per essere sempre al corrente delle novità." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Non perdere mai un colpo." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Continua a leggere" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Abbonati ora per continuare a leggere e avere accesso all'archivio completo." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "Scopri di più da %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Caricamento del commento in corso..." - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Ti terremo al corrente delle novità." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "facoltativo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Sito web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Scrivi una risposta..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Cancella" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Notifiche via e-mail per i nuovi commenti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Ricevi i nuovi articoli via e-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Notifiche per i nuovi articoli" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Settimanalmente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Commento" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Rispondi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Giornalmente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Immediata" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(L'indirizzo non verrà pubblicato)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Esci" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Accesso effettuato tramite %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Effettua il login per lasciare un commento." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Accedi per lasciare una risposta." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Lascia un commento (accesso opzionale)." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Rispondi (accesso opzionale)." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Sito web (facoltativo)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "E-mail (l'indirizzo non verrà pubblicato)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Ricevi notifiche tramite web e dispositivi mobili quando vengono pubblicati articoli su questo sito." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Accedi o fornisci il tuo nome o indirizzo e-mail per lasciare un commento." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Accedi o fornisci il tuo nome o indirizzo e-mail per rispondere." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Scrivi un Commento..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Comincia ora" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Usa il programma di importazione guidata di WordPress.com per importare articoli e commenti da Medium, Substack, Squarespace, Wix e altre piattaforme." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Visita %1$sImpostazioni Jetpack%2$s per visualizzare altre impostazioni di scrittura offerte da Jetpack." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Aggiornamenti programmati" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Verifica l'indirizzo e-mail per i tuoi domini" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Configura il sito" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Completa la configurazione di Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Completa la configurazione del negozio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Modifica il design del tuo sito" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Abilita la condivisione dell'articolo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Installa l'app per dispositivi mobili" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "Nessun file ripristinato." @@ -563,134 +119,6 @@ msgstr "È già in corso un'importazione." msgid "The backup import has been cancelled." msgstr "L'importazione di backup è stata annullata." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "I prossimi passi per il tuo sito" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Aggiungi il blocco Abbonamento al tuo sito" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Importa abbonati esistenti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Visualizza le metriche del sito" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "Configura SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Installa un plugin personalizzato" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Scegli un tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Imposta un'offerta per i tuoi sostenitori" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Collega un account Stripe per ricevere i pagamenti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Aggiungi la tua pagina Informazioni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Gestisci il piano Newsletter a pagamento" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Collega i tuoi account di social media" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Gestisci gli abbonati" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Scrivi 3 articoli" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Ottieni i primi 10 abbonati" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Attiva la finestra modale per l'abbonato" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Personalizza il messaggio di benvenuto" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Guadagna grazie alla newsletter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Aggiorna la tua pagina delle Informazioni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Migrazione di contenuti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "Verifica dell'indirizzo e-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Impedisce la creazione di nuovi articoli e pagine nonché la modifica di articoli e pagine esistenti e chiude i commenti in tutto il sito." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Abilita la modalità bloccata" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Modalità bloccata" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Per assumere la proprietà del sito, chiediamo che la persona da te designata ci contatti su %s con una copia del certificato di morte." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Scegli qualcuno che si occupi del tuo sito quando verrai a mancare." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Contatto legacy" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Proprietà migliorata" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "L'opzione \"Chiunque può registrarsi\" è attualmente attiva. Il ruolo predefinito attuale è %1$s. %4$s Considera di disabilitare questa opzione se la registrazione aperta non è necessaria." @@ -720,149 +148,37 @@ msgstr "Il file non esiste" msgid "Could not determine importer type." msgstr "Impossibile determinare il tipo di importatore" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Condividi il tuo sito" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Modifica una pagina" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Il tuo sito contiene stili premium. Aggiorna ora per pubblicarli e sbloccare tantissime funzionalità." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Personalizza il tuo dominio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Aggiungi nuova pagina" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Genera traffico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Dai un nome al tuo sito" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Scegli il tuo dominio gratuito di un anno" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Regala" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Condividi \"%s\" tramite Pubblicizza" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Condividi" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Aggiorna il piano" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Crea la newsletter a pagamento" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Imposta il metodo di pagamento" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Scegli un dominio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Lancia il blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Modificare il design del sito" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Configura il tuo sito" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Dai un nome al tuo blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personalizza il tuo sito" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Carica un video" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Configura il tuo sito" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Lancia il tuo sito" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Aggiungi link" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personalizza Link in Bio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Seleziona un design" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Inizia a scrivere" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Scrivi il tuo primo articolo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Aggiungi abbonati" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Scegli un piano" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personalizza la Newsletter" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "Impossibile caricare la classe %1$s. Aggiungi il pacchetto che lo contiene usando il composer e assicurati di richiedere l'autoloader Jetpack" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Gli alias Textdomain devono essere registrati prima dell'hook %1$s. Questo avviso è stato attivato dal dominio %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "Lo script \"%s\" dipende da wp-i18n ma non specifica \"textdomain\"" @@ -1063,27 +379,27 @@ msgstr "Sei fortunato! I designer del tuo tema hanno scelto caratteri specifici msgid "Uncheck to disable" msgstr "Deseleziona per disabilitare" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "ID feed Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "ID feed Apple Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titolo:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Feed RSS podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Ascolta su Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Ascolta su Apple Podcast" @@ -1095,98 +411,114 @@ msgstr "Mostra le informazioni sul podcast e consenti ai visitatori di seguire t msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Seleziona categoria iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Imposta categoria podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Imposta parole chiave podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Imposta immagine podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Annulla" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Sì" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "No" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Imposta podcast come esplicito" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Imposta copyright podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Imposta sommario podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Imposta l'autore del podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Imposta sottotitolo podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Imposta titolo podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Questo è l'URL che invii a iTunes o al servizio di podcasting." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Il tuo feed del podcast: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Seleziona categoria podcast:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Categoria blog per i podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Podcast categoria 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Podcast categoria 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Podcast categoria 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Parole chiave podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Immagine podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Contrassegna come esplicito" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Copyright podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Sommario podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Nome talento podcast" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Sottotitoli podcast" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Titolo podcast" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Modifica" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Home" @@ -1428,31 +758,31 @@ msgstr "Quota dello spazio su disco" msgid "Disk space used" msgstr "Spazio su disco utilizzato" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Fai clic per maggiori informazioni" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Includi gli elementi nelle sottocategorie nel conteggio totale della categoria madre." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Percentuale massima dei caratteri:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Percentuale minima dei caratteri:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Inserisci le categorie separate da virgole." -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Escludi:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Numero massimo di categorie:" @@ -1470,24 +800,14 @@ msgstr "Mostra le tue categorie più usate in formato cloud." msgid "Category Cloud" msgstr "Cloud delle categorie" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack è disconnesso e il sito è privato. Riconnetti Jetpack per gestire le impostazioni della visibilità del sito." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Aggiorna la visibilità" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Lancia il sito" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Annulla" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Stai utilizzando %1$s di %2$s del limite di caricamento (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Mostra le tue ultime foto su Instagram." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografia" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Titolo" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Non mostrare nome" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Mostra dimensione piccola" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Mostra dimensione media" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Mostra dimensione grande" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Mostra dimensione molto grande" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Il tuo URL about.me" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Titolo del widget" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "Il widget about.me non è più disponibile a partire dal 1° luglio 2016. A partire da quella data, il widget presenta un semplice link di testo al tuo profilo about.me. Rimuovi questo widget." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Mostra l'anteprima del profilo about.me" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Impossibile recuperare i dati richiesti." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Crea un sito o un blog gratuitamente presso WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Crea un sito gratuitamente presso WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Creato su WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog su WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Salva" msgid "Activate & Save" msgstr "Attiva e salva" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Gestisci le impostazioni di visibilità del sito" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "Questo plugin è stato installato da WordPress.com e fornisce funzionalità offerte nell'abbonamento al piano." @@ -1898,8 +1209,7 @@ msgstr "Telefono" msgid "Email" msgstr "E-mail" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nome" @@ -1913,27 +1223,27 @@ msgstr "Domanda di prenotazione" msgid "Reservations" msgstr "Prenotazioni" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Mostra commenti da:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Colore di sfondo del testo:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Colore di sfondo dell'avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Nessun avatar" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(Massimo: 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Commenti da visualizzare:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Commenti recenti" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Di recente non ti è piaciuto nessun articolo. Dopo avere messo \"Mi piace\" su un articolo, questo widget Articoli che mi piacciono li mostrerà." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "su" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s il %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Preferiti dell'autore da mostrare:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Griglia" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Elenco" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Mostra come:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Articoli da mostrare (da 1 a 15):" @@ -2019,62 +1329,62 @@ msgstr "Ho votato" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Mostra ai tuoi lettori di aver votato con un adesivo \"Ho votato\"." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Testo visualizzato dopo il Gravatar. È un testo facoltativo e può contenere una descrizione di te stesso o del tuo blog." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Il link Gravatar è un indirizzo URL facoltativo che viene usato quando qualcuno clicca sul tuo Gravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Allineamento Gravatar:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Dimensione:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Indirizzo e-mail personalizzato:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Seleziona un utente oppure scegli \"Altro\" e inserisci un indirizzo e-mail personale." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Al centro" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "A destra" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "A sinistra" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Nessuno" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Grandissima (256 pixel)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Grande (128 pixel)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Media (96 pixel)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Piccola (64 pixel)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Inserisci un'immagine Gravatar." -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Scegli un'immagine da mostrare nella barra laterale:" @@ -2103,28 +1413,28 @@ msgstr "Freshly Pressed" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Mostra un riconoscimento Freshly Pressed nella barra laterale" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Dimensioni avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Mostra tutti gli autori (include chi non ha scritto articoli)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titolo:" @@ -2140,12 +1450,12 @@ msgstr "Mostra una griglia di immagini avatar degli autori." msgid "Author Grid" msgstr "Griglia autore" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Sito privato" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Il sito è privato." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ja.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ja.mo index e4681d7547e4dc5bf246fabf4bff5f41b0baf79d..57f948f1fe77835ae624d2cb4ac847c2ec9828c5 100644 GIT binary patch delta 8644 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 UQ7Ql2;Oza;&)&}O&TX*#4<YP(`Z+v|5 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 X&dU9@>`%3$s" msgstr "%3$s に対する %1$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "プロフィールページから Gravatar を編集できます。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "マーケティング" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "このページにアクセスする権限がありません。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "プラグイン" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "WordPress.com の従来のダッシュボードを使用してサイトを管理します。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "デフォルトスタイル" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "WP-Admin を使用してサイトを管理します。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "クラシックスタイル" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "管理インターフェースのスタイル" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "プラグインの内容を見る" @@ -72,424 +42,10 @@ msgstr "サイトの機能を強化できるさまざまな無料および有料 msgid "Flex your site's features with plugins" msgstr "プラグインを使用してサイトの機能を拡張しましょう" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "テーマショーケース" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "テーマを確認する" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "WordPress.com テーマの詳細を確認します。 サイトに生命を吹き込むレスポンシブなすばらしいデザインを見つけられます。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "サイトにぴったりなテーマを見つけましょう" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "読者にコメントを促すメッセージ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "コメント内のブロックを有効化する" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "訪問者が WordPress.com または Facebook のアカウントを使ってコメントできるようにします" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "コメントフォームのメッセージと配色設定ができます。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "配色" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "グリーティングメッセージ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "ブロックを許可" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "ダーク" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "ライト" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "透明" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "ストアを公開" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "ドメインを追加" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "ビジネスを成長させる" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "消費税を徴収" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "WooPayments で支払いを受け取る" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "商品を追加" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "ストアをカスタマイズ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "サンセット" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Powder Snow" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Nightfall" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "コントラスト" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "クラシックダーク" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "クラシックブライト" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "クラシックブルー" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "アクア" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "概要" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Jetpack ソーシャル経由で「%s」を共有" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "プラン、ドメイン、メールなどの設定にアクセスするには、サイドバーの「ホスティング」をクリックします。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "セッティング" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "収益化" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "モニタリング" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "設定" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "購入" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "メール" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "ドメイン" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "アドオン" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "プラン" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "ホスティング" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "すべてのサイト" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "エラー: もう一度コメントしてみてください。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "エラー: Facebook ログインの有効期限が切れています。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "返信をキャンセル" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "%s への返信" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "コメントを残す" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "次回のコメントで使用するためブラウザーに自分の名前、メールアドレス、サイトを保存する。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "コメントは正常に送信されました" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "購読!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "メールアドレスを入力" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "ブログ投稿の更新の取得にご関心をお持ちですか ? 下のボタンをクリックするだけで、最新情報を常に取得できます !" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "情報を逃すことはありません。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "続きを読む" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "今すぐ購読し、続きを読んで、すべてのアーカイブにアクセスしましょう。" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "%sをもっと見る" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "コメントを読み込み中…" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "最新情報をお届けします !" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "任意" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "サイト" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "コメントする..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "取消" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "新規コメント通知メールを受け取る" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "新しい投稿をメールで通知" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "新しい投稿を通知" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "毎週" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "コメント" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "返信" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "毎日" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "即時" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(アドレスが公開されることはありません)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "ログアウト" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "%s からログイン済み" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "ログインしてコメントを残します。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "ログインして返信を残してください。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "コメントを残します (ログインは任意です)。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "返信を残します (ログインは任意です)。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "ウェブサイト (オプション)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "メール (アドレスが公開されることはありません)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "このサイトの投稿のウェブ通知とモバイル通知を受け取ります。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "ログインするか、名前とメールアドレスを入力してコメントを残します。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "ログインするか、名前とメールアドレスを入力して返信を残します。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "コメントをどうぞ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "始めてみよう" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "WordPress.com のガイド付きインポーターを使用して、Medium、Substack、Squarespace、Wix などから投稿やコメントをインポートします。" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Jetpack のその他の投稿設定は、%1$s「Jetpack 設定」%2$sにアクセスしてください。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "更新を予約しました" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "ドメインのメールアドレスを確認" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "サイトのセットアップ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Sensei の設定を行う" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "ストアの設定を完了" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "サイトのデザインを更新する" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "投稿のシェアを有効化" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "モバイルアプリをインストール" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "復元されたファイルはありません。" @@ -563,134 +119,6 @@ msgstr "インポートはすでに実行中です。" msgid "The backup import has been cancelled." msgstr "バックアップインポートがキャンセルされました。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "サイトの次のステップ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "購読ブロックをサイトに追加" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "既存の購読者をインポート" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "サイトメトリクスを表示" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "SSH を設定" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "カスタムプラグインをインストールする" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "テーマを選択" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "サポーターへのオファーを設定する" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Stripe アカウントを接続して支払いを受け取る" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "「サイトについて」固定ページを追加" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "有料ニュースレタープランを管理する" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "ソーシャルメディアアカウントを接続する" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "購読者を管理" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "投稿を3件作成" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "最初の購読者10人を獲得する" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "購読者モーダルを有効にする" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "ウェルカムメッセージをカスタマイズ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "ニュースレターで収入を得る" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "About ページを更新" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "コンテンツを移行" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "メールアドレスを確認" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "新しい投稿とページの作成に加えて、既存の投稿に対する編集を防止し、コメント機能をサイト全体で停止します。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "ロックモードを有効化" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "ロックモード" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "サイトの所有権を取得するには、指名された人物が %s から当社に問い合わせ、死亡証明書のコピーを提出する必要があります。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "自分が死亡した場合にサイトの管理を行う人を指名してください。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "レガシーの連絡先" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "所有権の強化" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "現在、「誰でも登録可能」オプションが有効になっています。 現在のデフォルト権限グループは%1$sです。 %4$s 登録を公開する必要がない場合はこのオプションを無効にすることをご検討ください。" @@ -720,149 +148,37 @@ msgstr "ファイルが存在しません" msgid "Could not determine importer type." msgstr "インポーターのタイプを特定できませんでした" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "サイトを共有" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "ページを編集" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "サイトにはプレミアムスタイルが含まれています。 今すぐアップグレードして、そのスタイルで公開し、他のさまざまな機能を活用しましょう。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "ドメインをカスタマイズ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "新規固定ページを追加" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "サイトのトラフィックを増やす" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "サイトに名前を付けてください。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "1年間無料のドメインを取得する" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "おくる" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "サムネイル" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "パブリサイズ経由で「%s」を共有" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "共有" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "プランをアップグレード" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "有料ニュースレターを作成" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "支払い方法を設定" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "ドメインを選択" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "ブログを開始" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "サイトの設計を編集" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "サイトを設定" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "ブログのタイトルを選択" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "サイトをカスタマイズする" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "最初の動画をアップロード" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "動画サイトを設定" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "サイトを公開" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "リンクを追加" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "プロフィールのリンクをカスタマイズ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "デザインを選択" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "執筆を開始" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "最初の投稿を書く" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "購読者を追加" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "プランを選択" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "ニュースレターをカスタマイズ" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "クラス %1$s を読み込めません。Composer を使用してそれを含むパッケージを追加し、Jetpack autoloader が必要であることを確認してください" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "textdomain のエイリアスは %1$s フックの前に登録する必要があります。この通知は %2$s ドメインによってトリガーされました。" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "スクリプト \"%s\" には wp-i18n が必要ですが、\"textdomain\" を指定しません" @@ -1063,27 +379,27 @@ msgstr "お使いのテーマのデザイナーが、他のテーマでは使用 msgid "Uncheck to disable" msgstr "チェックを外して無効化" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "Spotify フィード ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "Apple Podcasts フィード ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "タイトル:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "ポッドキャスト RSS フィード" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Spotify で視聴する" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Apple Podcasts で聴く" @@ -1095,98 +411,114 @@ msgstr "ポッドキャストについての情報を表示し、訪問者が iT msgid "Podcast" msgstr "ポッドキャスト" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "iTunes カテゴリーを選択:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "ポッドキャスト用のカテゴリーを設定" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "ポッドキャストのキーワードを設定" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "ポッドキャストの画像を設定" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "クリーン" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "はい" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "いいえ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "ポッドキャストを成人向けとして設定" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "ポッドキャストの著作権表示を設定" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "ポッドキャストの概要文を設定" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "ポッドキャスト作者を設定" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "ポッドキャストのサブタイトルを設定" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "ポッドキャストのタイトルを設定" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "これは iTunes またはポッドキャストサービスに送信する URL です。" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Podcast フィード: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "ポッドキャストカテゴリーを選択:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "ポッドキャスト用ブログカテゴリー" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "ポッドキャストカテゴリー 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "ポッドキャストカテゴリー 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "ポッドキャストカテゴリー 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "ポッドキャストキーワード" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "ポッドキャスト画像" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "露骨な表現を含むとしてマーク" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "ポッドキャスト著作権" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "ポッドキャストの概要" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "ポッドキャスト出演者名" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "ポッドキャストサブタイトル" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "ポッドキャストタイトル" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "編集する" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "ホーム" @@ -1427,31 +757,31 @@ msgstr "ディスク領域クォータ" msgid "Disk space used" msgstr "使用済みディスク領域" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "クリックして詳細を表示" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "サブカテゴリー内の項目を親項目の合計としてカウントします。" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "最大のフォントサイズの割合: " -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "最小フォントサイズの割合:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "コンマ区切りのカテゴリー ID" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "除外ページ:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "表示するカテゴリーの上限数:" @@ -1469,24 +799,14 @@ msgstr "よく使うカテゴリーをクラウド形式で表示" msgid "Category Cloud" msgstr "カテゴリークラウド" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack の連携が解除されており、サイトが非公開です。Jetpack を再度連携すると、サイトの公開方法を管理できます。" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "公開状態を更新" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "サイトの立ち上げ" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "非表示" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "現在 %1$s (容量上限 %2$s の %3$s%%) を利用中です。" @@ -1623,47 +943,47 @@ msgstr "最新の Instagram の写真を表示" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "バイオグラフィー" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "ヘッドライン" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "写真" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "名前を表示しない" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "小サイズで表示" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "中サイズで表示" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "大サイズで表示" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "特大サイズで表示" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "about.me URL" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "ウィジェット名" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "about.me ウィジェットは2016年7月1日から利用できなくなります。同日以降は、ウィジェットにはご自分の about.me プロフィールへのシンプルなテキストリンクが表示されます。このウィジェットを削除してください。" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "about.me プロフィールをサムネイル付きで表示" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "リクエストされたデータを取得できませんでした。" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "WordPress.com で無料サイトやブログを作成" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "WordPress.com で無料サイトを作成" @@ -1702,8 +1017,8 @@ msgstr "WordPress.com ホスティング" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "WordPress.com Blog" @@ -1780,10 +1095,6 @@ msgstr "保存" msgid "Activate & Save" msgstr "有効化して保存" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "サイトの公開方法を管理する" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "このプラグインは、WordPress.com によってインストールされました。ご利用のサブスクリプションプランに付帯した機能を提供します。" @@ -1897,8 +1208,7 @@ msgstr "電話" msgid "Email" msgstr "メール" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "名前" @@ -1912,27 +1222,27 @@ msgstr "予約お問合せ" msgid "Reservations" msgstr "予約" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "以下のコメントを表示:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "テキスト背景色:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "アバターの背景色" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "アバター画像なし" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(最大 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "表示するコメント数:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "最近のコメント" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "最近「いいね」を付けた投稿はありません。「いいね」を付けると、「いいね」した投稿ウィジェットにそれらが表示されるようになります。" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr ": " #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s (%2$s)" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "表示する投稿者の「いいね」:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "グリッド" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "リスト" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "表示形式:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "表示する投稿数 (1〜15):" @@ -2018,62 +1328,62 @@ msgstr "投票済み" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "「投票済み」ステッカーで、あなたが投票済みであることを読者に示しましょう。" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Gravatar の後に表示するテキスト。入力は必須ではありませんが、あなた自身やブログについて説明するのに使えます。" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar リンク。あなたの Gravatar をクリックしたときに表示されるリンク先です (オプション)。" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar 配置:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "サイズ:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "カスタムメールアドレス:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "ユーザーを選択するか、「カスタム」を選んでメールアドレスを入力します。" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "中央" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "右" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "左" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "なし" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "特大 (256ピクセル)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "大 (128ピクセル)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "中 (96ピクセル)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "小 (64ピクセル)" @@ -2090,7 +1400,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Gravatar 画像を挿入" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "サイドバーに表示する画像を選択:" @@ -2102,28 +1412,28 @@ msgstr "注目の記事" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Freshly Pressed バッジをサイドバーに表示" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "アバター画像サイズ (ピクセル):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "すべての投稿者を表示 (まだ投稿がない人も含む)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "タイトル:" @@ -2139,12 +1449,12 @@ msgstr "投稿者アバター画像一覧を表示" msgid "Author Grid" msgstr "投稿者グリッド" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "非公開サイト" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "このサイトはプライベート設定です。" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-jv_ID.mo b/projects/plugins/wpcomsh/languages/wpcomsh-jv_ID.mo index 65fc0d9345056f4331b03c485492e0f899aa4f83..7167f2203ab0be2d757f64fa25d49c6090d95edc 100644 GIT binary patch delta 1182 zcmYk*O-PhM9LMq5bk|(pwbHEYvCOgz^H5!SL2V(FM2w0;qxGd_X`knbc9-%{Ce)=< z@etBI=*13|kf#oT2cbg}B6ul_paQ)Z)J^*Sbc}}i&*zzEX6Nmh{Z;w9V)#>e?n6V` zPi!Ubgp4_g3+pII^Et+B$1m85pqg-{S9j1dDIWT+xA84l5PKknrPX+kI-3rC_rABV%&liSb|L$ zW`1+rc8H-?+`iIa%sEuYUW}rPO?U&f^QWkRU)%Zw4p4uGWK++o)vpm%KZM%I5o;Uf zFu!T%p^Rhi!~@hXu?_v;0ct^`NRxStnsCh4U!wX=pceQR$!3azqczj0_Bqr-KH~=b zY1@}^SOezKdoLEECOT|Ah8iGd>m8_py6yWO`@Rpk9wuqqU2LX)9c%CzYTPO72P~pK zyPoss*?gm@!bL2=2(ui-a?}Z&MD;s^+UZ4%V-mH2_qKf+HPIZhIWv!B^MgVQTtW`o zY$KGa^!=4|^L07a(rzB~?HdW*{7NS&3=%Q-_ z^~6fj{Lbp*zj6mp+Ley3l&B>1-E;y<+F>10L6i~I#71H#q0hL7&}Y+*b<7QfX>s~f zes;j|FFQki_L}4R>5P+22c_YjBG31RTtAyOttmedjE3u?v4Ld9#N2o?70iVFpd->; z(mmKe=w+NX-*qt^j76MaCbBU8G4DdCpoJll?&|N)=GPW?4rRSe(o5Jeg8W-Sb@WtC rSKLd)Q-f~b*W1s@lOx{bh|`tz5?A8sxEDN$){oCd!=c>slOyIYsR)G+ delta 1639 zcmYk+e~1)i9LMqRb$jl5{XDhw%pYU<^X|;Nva<-IJ0;BW4iCCQiRQdv8=9Rtc4qH5 z5Vxr4kEs5b690$<|BwPf@S>0;G!L|(KqLPN?jI3?LB9JsIzG_0HLqN9bwcn7}h#(VKW#;>6YIN*F2mEc3X7Z0H>c+7bmmG2~K z2flXmGpIa2pw9al+qu47p|c6EqqcMf*_B{DYP=E0un%>iPu=`cH$IM>YA2nikdK|= zpz|-Fp5`U&;PGC@M;ZS{HF{ju$tqR467R$wRKl&OLY_gb+m2fIy!(E{&A*E6%#R_t zEpgvZqVD)0>iqZI{0GR#KAz9>Uqt6KMp`(Hy5MQ-!n3GCt~qa_68-JQx++~OqR#I? zeZLfSo`<^gb*OdSxEZ&g)|a*ay5n&sbix5#fp4P{9d+}cJ5S)<%zuSSFys6YmoUDJ z%69{|;BC~7ZDvyIw;@yZ9QwGYPDgkArCV?cRmgX!t^6KU`9*R${JgprgX-O0M@??E#{PP=#u%n>2o{`hU>dv6fiu=Jg|5LwJOW znQPjir9`KjphkO)(2mZvC+YB`uQy&Xz1P}4-FX+Wj#y5pJw)6`^by*TM+mjYn^*^G zYxU=)N2lMD+CpL#v0ek(6HOYAMLXVX`E2V%cNBTUVHTwJY@EbXm86zhf0UGMz>oI_ zk;AJ7#^p5M*LJ;QBp6Mp%tn&x*ibb{ z)9Ib__O^8G@<)T$RWp^U=CIN%xZlsXR^#YZM*S#A^Ap8Y%XUV7Tn=sbR4rEO|Cj9L zv&Dn0F9uouQfYYk;CR|BcR0wZ{v>Dlv8&jI@;6J1@^4G+ZT*eJ=SypgEIao_%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Pangapurané, Sampéyan ora oléh ngakses kācā iki." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Setrawangan" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Setélan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Email " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Kabeh Situs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Batal mbales" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opsional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Situs web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Batal" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Bales" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Metu log" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatur" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Judhul" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Yā" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ora" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Nyunting" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Kejābā:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Ilangi" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Simpen" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "Email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Jeneng" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Cacahé pangalemb‪‪ānā kanggo ditontonaké:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Pangalemb‪‪ānā Pungkasan" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Urutan" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Tengah" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Tengen" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Kiwā" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Ora ānā" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Judhul:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ka_GE.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ka_GE.mo index 6bea78a147ab57686e1e255cf6cf74e35a52de5b..73c20ffb411273867e9c7267e4756fb805f3e313 100644 GIT binary patch delta 1729 zcmZY9e@N7K9LMp`nVa5ucBki=TF%SgX=STywbk5AMMbodC@=_1tBX?u9c(K&83fT- z|9pszhz11>VpQx#`)Bk|`QOISKPGIIQAr{FfQX_X>iPQK$A9X>y+4od=kxu3et*Ar zVf}c0@>YK4NkeKQmJnST#`NQnOfsbpjj076mSG(>V<#@eAJC7dF$>S5nqI^Om_mN$ z59d`3Ql3DbPnsz%)Zjn-0B0~8XE7fiyLul_>$xn{{h%vHoh7)8`Z8DUK$@CvRKMF@ zxzF9-%Yh8H_Hc;Mx+Tu8>!%S>#%Wi6fI6aAsCK!`KIk*16u+cgmt)K! zOdyY#n^=zbQ9Bn1a{fhJRI@+opb0g@9@GSSQ3J$L4Ub?Y{*3D2I_kOGsF(9O_F`df zy8a-l{W$7*>*_B#Cvw^Uo!t1JijQzDue2uAi}Ym@sD|I5?w>@h zQhtqku9{V8f~#;TwxM?B0IJ=EBo`~WxP}_wDXKvp`}_&kpeC@}c^Eq>|A;!8JE#F) zq9#<%Iem+bSdW)c^*2yE^aTIG5S3bBa)t{%@Q_Rczd>~zjid)&j(UmOaR>HbfHVFD z)$X@~bVn1Y0j97DpQ8FJBGXQ+M3vW*X(zgowIwe|;?2mrL&j(6{lPS%zEiz$pA+w< zPpQyXGoPBdC?#~hI#O0=DhN)-OWMWF#3o{qSHo^FzG)(K_HBgT{t`lG9wU@KBZ|GN z^ww%S=M(R(_qVO1P+FD7%k}>7rFm&1`39nn(EGBQSV8z3$n@v2&dz3SwXNAb_DuF- z`*(Ipe#_v#{;v{argb1rHq;+a*m{4Z?ep(ixNppK#Yf3T_Q&GG_O8Dry5+#g@Sxc? zxOZ@PEVg-MXb4B`u0W}8z)l9nZC}pWR46!=VPl~NI}+-!{&1H)7p}6e!mDj_-tp8- zUesqRB4u`aBxX-U{u^QE2@ugiD~kcO-O literal 7210 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 v!-};s+%N&Ru*zX!qJG0ZvXwrN#dN))$B# diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ka_GE.po b/projects/plugins/wpcomsh/languages/wpcomsh-ka_GE.po index 88e1e5b3c9f84..dfccd22d71dae 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-ka_GE.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-ka_GE.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "უკაცრავად, არ გაქვთ ამ გვერდზე წვდომის უფლება." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "პლაგინები" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "მუქი" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "ნათელი" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "მიმოხილვა" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "პარამეტრები" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "კონფიგურაცია" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "ელფოსტა" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "დომენები" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "ყველა საიტი" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "კომენტარის გაუქმება" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "დატოვე კომენტარი" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "ჩემი სახელის. ელფოსტისა და ვებ-გვერდის მისამართის შენახვა ამ ბრაუზერში შემდგომში კომენტარებში გამოსაყენებლად." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "გამოწერა" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "დამატებით" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "ვებ-საიტი" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "გაუქმება" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "კომენტარი" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "პასუხი" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "გამოსვლა" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "დაიწყე" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "ახალი გვერდის დამატება" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "ესკიზი" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "გაზიარება" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "სათაური" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "კი" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "არა" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "ჩასწორება" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "გამორიცხვა:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1469,24 +799,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "გაუქმება" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1623,47 +943,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1702,8 +1017,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1780,10 +1095,6 @@ msgstr "შენახვა" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "ტელეფონი" msgid "Email" msgstr "ელფოსტა" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "სახელი" @@ -1912,27 +1222,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "კომენტარების რაოდენობა:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "ბოლო კომენტარები" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s კომენტარი %2$s ჩანაწერზე" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "ცხრილი" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "სია" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "არვიატი" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "მარჯვნიდან" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "მარცხნიდან" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "არაფერი" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2090,7 +1400,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2102,28 +1412,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "სათაური:" @@ -2139,12 +1449,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-kab.mo b/projects/plugins/wpcomsh/languages/wpcomsh-kab.mo index 4c94c77ae33bfe4c8fa421bfda81b34b9da4c80e..58cfbc47d49fb2cbe872a6bd5aea3d20b36b3eb7 100644 GIT binary patch delta 4327 zcmYk;32>Ih9mnx~AqOFVA>@ESk~bkIIZR>#SVSO+1tf$!QMrssfM5;?L6qwS3$~!( zv3Mat0znaoMqUMUpq*h_DYaHAbm)OFj#w>2r$a|7&=&jsz3(!0hyU~0eU82N4cD8_ z%<)}_4tdd#J|Kn=mqLyCHy(`SLVD#6V|wAM*c*3a8g^kH{0y`3BF1B{C}Wb*i`h69 zi*PXx!gl0Ua|8z%<1;78#B$>=Sc+G%9~SpFCIZVa1SjKgoQ~nR3Dw8vUAZ0kXZCU# zh(}Q0pGJNEXH+{Eu_s=`Fxoda0vYZ^2S*f+8gUHfV4}M}5fdm^p&DL_8Mp@Xu@g1o zGw%6+Q4K~gOm#RJ)uBvhAx6=@8AV1@Qi1wl4)(=X=Q{U%E0%MAC#nNqy8HjYT*}{L zI_Aa%mt;E92eS%Q|5nsY>_l~B5BikpBEzzqBdC!dM@`{Js0uE+=l?`?>^iE#FnX)^ zhxrDz z*>0c)&_6CXfWfGSQc&*~J4c~9R_Yv&s=p$R`PYk&aU%uSpelGBwPuG<9sAIgPogUN z6i4G()TxN3H$5;BRraC=mVOeo#NRm(^FGjsL33VFgx^gqB1M5)VSyVlHP)qa%4)7TBK5B+fB{BaR=^w~w zjXy`d7|Pbw2x5?TO$rv^7|g~cuDl&J)gPleatk#>cX)%lKM^(6qfrf(q1v0`toE}0 zKjOxGcVjzhWV>DYJ=BPgInSV$=rXF}Z;=CFZlb0(nlr5Daj2#7q6U=d%EM6|9*yeg zk`!NXYS(f@J=})Fa2JlikFgMYrUol2LH4C7NB#26Lyc%5s^cxl>Y4S(WSE`E!7)Ea zHFyrSL|>tn=(>+g37KB(C{=hb>cM!_ajQmkXf7FIosKy8{-)MhM224gBw=f4eA!Dd(P zMD3LiQ8VxxREJKZj^jC0N4|0QZ{m+BdpN^-e**e)$W)S1&sU;GvK3WvyR!@V@iNCz zAN~ooh8Hm$|Bl*B*H9hQu*X6I>UhpZ)w>MUu_v(?+F{JUD%#;*+>hEMCvZMqLp3mq zUaF&WxoAY2P#t^?Rp9|t$Bv<9-~?(wr%*HdIjWw2p}xO`>R41R^REtM@t1_fo2y7ypL6@jD-xNHRUx zA+jH8b0wg9oQ&#FCTcV0yXQryB^iMpR60Vm5SqE$X*e0pfYLako6s+AIx(GK{Kh;( zXf#cP*6%$+>8&7vACCLTKS#`V_cRKn{lr#+l?tR$Tx$u<=EH>2dZK|COY9?xiPs5I zpnbD}+`EL1Up1j)R!(>cHm!Mt*hsV!TKDCI(lp|J;%OB~6N3bEBNNNn!^v!rh;N54yaTu#{+XWpRL*>B_<3 z27lmKx#0LK+{4H41!5Ml&D~>r1b)>Pqb0N_lyrPv4djBCDR9)4=isBn9^w#j57A6$ zL%&3fCVoaJ`G#`YMLae)bs3KMnlL@5>L{uQhpI3aJc$?5^$RLzf5eEag z|6g7s+nact$Z@wPx&0UT4`=~5Hxq9X^N2WNH*q(yiC9XkB$O5qv4LFhC-qsEUyF@| z-0mS%e(uG2mgKgQn?pX9M82adDT20dsG4{Eow z6BgRvCS-dS*gk_t+Es(UwoeRci=4WsrMcd4ZELXu6Q|i_iMe)f;zWB-Qn}rflx>~%(v}12kp$ZVHvG=t+F)kZtZ1xR&}Prx*=WZX6xfXgRd!TiWoRj%Ecfp#%<%Xx U7j5v^mBrg_Zb^#2x}?MNKicie$N&HU delta 6490 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-kab.po b/projects/plugins/wpcomsh/languages/wpcomsh-kab.po index d00db8934d741..7e0f381f20420 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-kab.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-kab.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Talzuzit" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Surfaɣ, ur turigeḍ ara iwakken ad tkecmeḍ ɣer usebter-agi." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Iseɣzaf" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Azenziɣ n yini" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Aberkan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Afaw" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparent" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Rnu taɣult" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Ɣelluy n yiṭij" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Contraste" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Tamuɣli s umata" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Iɣewwaren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Tiɣin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Imaylen:" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Tiɣula" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Izegrar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Iɣawasen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Tanezduɣt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Isemlen merra" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Semmet tiririt" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Eǧǧ-d awennit" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Sekles deg iminig-agi isem-iw, imayl-iw akked usmel-iw i tikkelt-nniḍen mi ara aruɣ awennit." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "S'abonner" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Sekcem tansa email inek(m)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Kemmel taɣuri" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "D axetṛan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Asmel n web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Semmet" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Aznet-iyi-d iwenniten imaynuten s yimayl" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Aznet-iyi-d tisuffaɣ timaynutin s yimayl" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Lɣut-iyi-d s tsuffaɣ timaynutin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Yal imalass" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Awennit" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Efk-d tiririt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Yal ass" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Imir imir" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Senser" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Aha bdu tura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Bḍu asmel-ik" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Rnu asebter amaynut" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Tugna taqmaḍt" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Bḍu" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Fren taɣult" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Fren aɣawas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Azwel" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ih" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ala" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Ẓreg" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Agejdan" @@ -1428,31 +758,31 @@ msgstr "Tallunt yellan ɣef uḍebsi" msgid "Disk space used" msgstr "Tallunt n uḍebsi tettwaseqdec" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Sit i wugar n telɣut" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Kkes:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Ttu" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Akka tura aql-ak tseqdaceḍ %1$s beṛṛa %2$s talast n usali (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Sken tawleft-inek taneggarut deg Instagram" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Tameddurt" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Azwel" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Tawlaft" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Ur d-skanay ara isem" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Askan ameẓẓyan" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Askan meqqren" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Askan X-meqqren" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "URL inek about.me" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Azwel n yiwiǧit" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Sken amaɣun-inek about.me s tenfult" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "D awezɣi ad d-tawiḍ isefka tesriḍ." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Xleq-d asmel n web neɣ ablug baṭel deg WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Xleq-d asmel n web batel deg WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Ittusumer-d sɣur WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Ablug deg WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Sekles" msgid "Activate & Save" msgstr "Rmed & ḥrez" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Sefrek iɣewwaren n ubani n usmel-inek" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Tiliγri" msgid "Email" msgstr "Email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Isem" @@ -1913,27 +1223,27 @@ msgstr "Asuter n uḥeṛṛi" msgid "Reservations" msgstr "Iḥeṛṛiyen" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Sken iwenniten seg:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Ini n ugilal n uḍris:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Ini n ugilal n avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Ulac ivataṛen" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(ma aṭas 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Amḍan n iwenniten ara yettwabeqqeḍen :" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Iwenniten n melmi kan" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "ɣef" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s di %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Iẓiki" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Liste" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Sken am:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Amḍan n tsuffeɣ ara yettwaskanen (1 ar 15):" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Areyyec n Gravatar" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Teɣzi:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Tansa n yimayl tudmawant:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Fren aseqdac neɣ fren \"udmawan\" syen sekcem tansa n yimayl tudmawant." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Talemmast" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Ayfus" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Azelmaḍ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Ulac" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Meqqer aṭas (256 ipiksilen)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Meqqer (128 ipiksilen)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "D alemmas (96 ipiksilen)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Mecṭuḥ (64 ipiksilen)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Senni tugna Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Fren tugna ara d-tsekneḍ deg ugalis-inek adisan:" @@ -2103,28 +1413,28 @@ msgstr "Asiti aneggaru" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Teɣzi n avatar (pks):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Sken akk imeskar (seddu-d ula d wid ur d-nuri acemma)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Azwel:" @@ -2140,12 +1450,12 @@ msgstr "Sken iẓiki n tugniwin n avatar n yimeskar" msgid "Author Grid" msgstr "Iẓiki n umeskar" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Asmel uslig" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Asmel-agi d uslig" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-kir.mo b/projects/plugins/wpcomsh/languages/wpcomsh-kir.mo index 4ccb02d4266be6989f934d7087bd82c90992ae72..d3058912929d469ca22e8edc54427faf1cbaa195 100644 GIT binary patch delta 1556 zcmX}sTWnNC9LMoltZZ+~wgsVdds!55s}``JTtuQ22qXg0zF-0mrEKe(UJ|w?p#c^l zToPzwGQo%tl5!6hODJfO(rBU&5*}u&2@o1gsw8MM26%vwlJNa4Qzz#?pP4yxX6DSC z-JO;F<*7SGS^EuX0Z~ef1dOT0p%=(Vu@{Z0z)D<%%W)j;!yG(_K|GFGcnVMt05BmBLGPW5;F7ubK z-$xzIV_bqGn9Aq87qO4;)3A!!w54C5w)_BUVe--Z}10dA%FY!r{4TLW0uk$LG@dQT42K0 zJ5US%9C^fac@KDxq5AjavH#lIA8625{xfR8yWW3L3wnqj;21`I6&Is+>NC_tNix0h zHq^kUa5`SbLcE7B;S=OC1tDWT!m<|1_17#!=F|`u;L!qe+#<6P20L^Njg36R`oAGt=8lB;F*H z^q-+`VG8j&Q9@J^vxs+zR|tK~O8So(P5Q-5@bjBFzEx+Xw|kk;ZtxwMVq!GuXq2WC zZxMP^9oyT4jzwwyb27Uz$(O5ft}ko1W)traGqp6Gzkb&`zj?$PM2r|s(|n;EqxRpi zF*`N5%5Dip?Ac&RaB;k$uDz+v{uivV3$xcm8rsZHoXR>YIZy2iL!S=Su5 z!`XAfAIIzCEp5@7*5+nR+GROqf%W!k&T3nld%E{#?pJ|G{iY3xrlv%_abLTE^q%w% z*Pq_)&PQu%YwflCDmx=I-<}M`?A_35duZI5if%XHuDD(|VB8Vc=e~3O?vkGEOK%(O w8SJr#!o~J>IAwPiOtU{0EDU$M^X~ifcJeFkVtTI~D(ve$QB)qVH^zVS3?G%o?*IS* literal 5253 zcmZ{mdyE}b9mfv{0xO81$V0>fDi6DNyDhE4mI`J2*g{`+7m>fr?7h?7v2*WSXYTE? z36XXeDM>?1C7{8A0^ucS7uu!U*VY7s8V$~E2_e2PQ4{qK0~-0m#K-4*=G<+&gxP!M zGru{n-}B7={`}J(GFID$GB;o-+1{Co`3Q0--g=%U!MPi zQvIwmjp1j`<#s;22 zcMg;u*Fx#n>$wt2ueDHqAAqZ2;QMz&tuqNVf7-u)4N9Naz5EuOi~MIOeJ-GrM{_CE z`d4~+4y+(Agwo>?|Ni@4{sGkd2`IhydHIN!UxixtHK@FK6E1_lg=e3Fy#((j**lP<8)n zsP+Htc?yH2*O_n$ywJ;cK(`;1{u%r%ycd2Hz5u1ikD>JZIh6n2fK%|lke}Iio-rST zKZ9NHcaWbsn?)6e%b?~jfM0@3p!y$#iq}(6>%0Or{&jdC{2O$BKp7s*T~O=nfS6`> zLFMBMQ1SiiOTa`A+sOqUpM>fXh8Ss&+7a=DOZLT@F7_)3-sFV%NSt;~y5nb+lV)`qnI^ zDc7#1$>%rGRAcSy3p{*|raV;4bj_nFUN=hM>Y*wAIt$j)RQspX+Si3VoJw0o>($F8 zwj3wTicL1y(WIH$YLYc?_35^f4=!BCJ!opw_cHfljN%))C+z`R4Qq`sHNC?@4aExB#&B3gNa7^5 z{besys|+C8*PvjM!>W8?~5O z&Fo0hj4SfCjiZgBZ6vl5W%W21z0veFF=b^HPiJOTkRq%K7}zkY!eCQKAj(N$%&Kq$ zFQcJh-BEW{GGwEggNCmTvrOSygZJI72=1W#xhA|*Du?yVtV#IQ7?GsaAU127)j^CT z75p}tl*@*bksh4Xjit?>vF4AOn=yD zIG6XMs`8crO$A4Ck5P8nfv6Fq3TDQpKS|TkP8We7W#yz{d7X?X=@T22%XqI)LOIVa z%^JyW23WXP#iFN-+nq@*sgCxT0n~H5x=I?M65N`DVLPxaoJC}?3}M4!Q>M5DqEMR! z#H3lTCn-kGTCOq_HoCM4u^bpCMm42oVUW9{!AR6lG2B+Kke=rD!k6auB(1DVvBum% zLft{e4J#I|yj`_t^#HBD-b@-nmt7Z!L59v@9OAGIQH)}PA^vAZJx*L&cbRo-OY6f; zQAP!qmaowL8*ITY5qJOd**fbbT6FK&DF7bR zHtVsqx)Za-^A_3SadG#ej<1wfgtagY8cEt?SHwxfd1CJTt_5A)r68^k2OX<8I+}#I z$8H?`>a8m})}_hU!g8auvT|JQ86S306t?8fD%%&v^)T%)`6I`k%a7RnKt7!x%=dCX z+#2U;Pd zd|$rj*mLxZ9o>C&w_(l6{E+;BIe2My@6p|@EvVf3W-*MXZN~ZW5VPE>&a|m~zYH&Y zb1;9I{SP~@vC+2H4vb(2IZtZgU>>Ji+u0Ns$?AhlIHE{Q;7+-H8qJRG&iA3JSG4fq zjOVA1KItOKK!TI+lcfr)&5!pKUk6N_!Y-*xj1}FJ+|yGiUL=7$Kh@fCl77YbBUnA* zg29dtXqZb7az;TqQSBmd56BqVMo)xo?WjD8GJBkA+?^7IKWyuM_EA)dM&w8| z7qcyGcjSkU?pF3qIGvPF1Sa2iqsgC<{U(2$z-`v()|h6_yx+xy17!MGu_gIEJB}wN zb^bV^P@OoN<+cOL81GK$Jk{D<A zymd?F`&r;HucrzV_oDM5*7Hsz%N276QcfGu&1fdi@)DWumVd96@-RX4<*t&X09-1# zf-Z{J1%**A9lysErLRW{N)ER4oxRqU<UJ=Cd@*6>Rb%2RL?Piqd&Zg|0l&y!R}vd{+SPZ*5g($`h2ED}$nBiVr2{ zw3fs^|DiBspL{r_+HGx@r*t099CjxODyjBAJ?(F(qO9}82kC_We)7lY;TxeoBEm_o zqmsRfyw&GZ@y}nPgZ%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Кечиресиз, бул баракты көрүүгө укугуңуз жок." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Плагиндер" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Түс схемасы" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Каралжын" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Ачык" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Күн батуу" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Кароо" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Ырастоолор" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Бардык сайттар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Жоопту жокко чыгаруу" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Комментарий кошуу" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Менин атымды, e-mail жана сайттын дарегин менин кийинки комментарийлерим үчүн ушул браузерде сактаңыз." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Кошумча" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Сайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Токтотуу" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "комментарий" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Жооп берүү" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Чыгуу" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Баштоо" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Жаңы баракты кошуу" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Миниатюра" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Блогуңузга ат коюңуз" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Аталыш" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ооба" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Жок" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "Түзөтүү" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Тизмеден чыгаруу:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1469,24 +799,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Алып таштоо" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1623,47 +943,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1702,8 +1017,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1780,10 +1095,6 @@ msgstr "Сактоо" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "" msgid "Email" msgstr "Email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Ат" @@ -1912,27 +1222,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Көрсөтүүгө комментарийлердин саны:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "Жаңы комментарийлер" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Тор" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Тизме" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Центр" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Оңго" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Солго" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Жок" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2090,7 +1400,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2102,28 +1412,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Аталышы:" @@ -2139,12 +1449,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-kk.mo b/projects/plugins/wpcomsh/languages/wpcomsh-kk.mo index bd437c4f65578a19587b953f4c4559bf18c9b14b..b3f553819bcf10da195c870bc7d3674ec43324e6 100644 GIT binary patch delta 1580 zcmYk+e@vBC9LMnkQCxoA%a5SaluHE4kCYItG?N5>u-c%UgTGu%EFEM$D5dfzhe^K!Cag} zb&>O!G5pLE&gGa+UWCcUL`@|X-MAjr(I(_xQ-?mR$82nJ`Pb?)0eON+1fc(rU z4w-ls)!+B7{VM9d>+?p9nRX{`Au}?+xC{QkRPw)(MKSkXdmC7V;U?1YTviblo;o z{swBIjjnx{%iB>~6UOKkDm_&6gkNJ;f-&FV^W<0P?IYBz^aO*r0*|1!WD2>|#8L0a zG^*pfsCVPO)1SuvlP^PU$y(>uH1_`~8X9TH!gnwa_hS%`q6U~i4R{_kksGK1Zeun6 zh3dG9lR?~qI^T+F??vWf`kh0leuvXpe|7vh4O*(Rs6Cx>`Ly#VRENLf8ocB3ayC@g zZ$Nd}h@3KSVIg*55e}gyGL9Aa9r82(Mmeg3WO~;`3UMc{LoMmYs2jgTE#V}7iq}vB z_VUK*zCF$%4ek!)t8;$Lc?Ta1o#%)#LJv$b-oHF8l>rKS1H)_Ai%(Fjd z4rHA4#=Hq{EcPL1Chdi+eEUyUbH-@=Sgg+*<;G14(6VI0BAA8 Ae*gdg literal 5693 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 U6yxL!K7Az}a*kw_EF3cb1vAiqO#lD@ diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-kk.po b/projects/plugins/wpcomsh/languages/wpcomsh-kk.po index 69134c68e8c68..f791cf4c62eea 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-kk.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-kk.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Маркейтинг" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Ғафу етерсіз, бұл бетті ашуға сізге рұқсат жоқ." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Плагины" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Келбеттерді көрсету" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Қара" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Жарық" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Кешкі сәрі" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Обзор" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Настройки" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Баптаулар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Ұсыныстар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Барлық сайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Отменить ответ" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Пікір қалдыру" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Сохранить моё имя, email и адрес сайта в этом браузере для последующих моих комментариев." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Әрі қарай оқу" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Міндетті еместер" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Сайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Отмена" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Пікір" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Ответить" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Выйти" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Баста" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Миниатюра" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Заголовок" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Да" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Нет" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Изменить" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Алып тастау:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Қабылдамау" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "WordPress.com-дағы блог" @@ -1781,10 +1096,6 @@ msgstr "Сақтау" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Телефон" msgid "Email" msgstr "Э-поштасы" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Аты" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Көрсетілетін пікірлер саны:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Соңғы пікірлер" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Тізім" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Орталық" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Оңға" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Солға" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Жоқ" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Аталымы:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-km.mo b/projects/plugins/wpcomsh/languages/wpcomsh-km.mo index f30d2ebe84ccd662287dfab374a449f9b3407fe1..9e0a0a00a0cc3d8d3416f02cd04c5f5cee5a9691 100644 GIT binary patch delta 2299 zcmXxle@vBC9LMo9?$qbuXE0Q&U1b~4;SnA zSH-W4P3bkHMq-j;lrbGLjSHzb-IySj;1ryPS!{~!cx=&*JB07FpT}E2fmN|nU9=bVJhVTticONU#2J{Igluh zrMv=lUpT_N@^EmwaW)$n7aPxBf2@ti9UxZf|KcI_w3!(r4w{4A?X zM{RKkwURS1t{)bVQ3p$qKeLQWCayvK9z!+Q>dHG&19{1n_c-^V_WpH@Vn4DA<|69( zS6z7sb1452Wc|03Nu#$-xD(akkEn(}yYh9^%xg0^d^^PYYosAsSK=bn(snw#Fz7R;8)s4f#u#I|@N3jStLaT|MJ=j> zcFe~v)cyUq8ZRJ^Fw?oI21Ol!)`7Gco^s4S=^7ePt%}K{ToR0N(Cui1y zQz>`jJ$MpnV$S0=9Cr2J@$Su~{5LMfS**VX8gC&pk4z8h5PpdZnek=Rh$m91_qNno zh8j>Ew&Am=B_2j~{2MMqGa*^O9A{FjMosWV)N>CfjhmBX)bI>Gj^E+~7@3$n18eaK z${SG)PoY-eb5zG8Sc-q520Dq+>3OqJ&#OenWO`9&>K$yv54?Kze**7>9y}YVGv%l+ zTm#;ZM^PP~$NTU$vN&euWMl5drKt8hP#x?>?fqU%;AzxSw{X#YJ?L#UuAqN&mP`*z zp3X_SPWfOYIfD-F;wN(uHM94S#WCNY1~P>IVGajiG-gj@5}1ctk!mc#7f|hwV+21$ z-avB+;|Iw6N~Q~+FEr*~)Jf7zZaY&svOd+5s)=Gkui+>{sgh6!T9p;VT0%*kXp6L( zdY-m{F1+*zSKa{4KY1eSQKMa_3erlVjL@m((0em#L?wMplxhima_^+&E~8~;F}+u9 zuB%&vI#){CHl3-E`e*gb5<;g``>*#kmCzn4`3WuSQWZ!#-3tjm0p9k2sUq}0MCXM! z&f6v(!aHfc%dEl$gg#C+M3&|sAhdsv5=v~VmmYR%ua(v(@xBicmlqAhW3K$Plb69u z8@SfFyx=T)Z^eVIZtg>5IMC)PVv(zyjuk|d;AnW?hbQq)+GsatblO`P>uqD8#2yPo z(>8C3J@-tz{UuOm%YzZy96V&RGJg+kX*X5PZCqNnMw(mf;!v$U7AgzWY-?@VY`C_! z+RSj&mWNAxo9q|i?TLyppZXGoW3T#cbliw-&gr!Uxd-egx%sxKFxzI0AFwyZHzl@A zxZ+DR=KbK$e08wzwZS8Y2K#mo9_h4a@{8G{S{{!m*^9BF_ delta 4228 zcmZ{leQ;FO8HW!cKtd9P@RbmRixf%-f}n^66bz{#1_%U2qTk z^Z90FPB3Jtxa}=H(#D~^A*qCA%gX3X4tcLsH5cqpo2tN*a z1?uQ^I1J_&8B+#F!F)Iaj)Zr?fyQLaQaUoQ5=!BQV8OJ8Oo!{+pcFp^hr)euIy?fU z__yKuxsV^i8s;y;Ti{fT==@x${nfA#`)0B2-~b%J!a9g&CIahVGc16wLq+lqEQNo7 z+J70!z*UGXlV1|-9}3qqE{8JM5zc=v9CwM>H+$$*!tQY4btnf;!_n{;P=-E)GW_Ro z{a;Xq{{x4^64EC_6QK4_4#(4=^v#6Iz&%ibEQA>;TpKR5gbQgXMNdQi%yWFWPICn2 z!DHe0IMlv3pbY#RR={6EW$Z%8OHdA74S6jj-e;^w0|`ULHv}r8Dn2?eFXa7Dh89Dz zY-%Avo3(Hmj6&^y70U1_$e%eA&c6p0!299&V#rIkkbhO_XH3k1{i!Tf^PNx;-5ZW; zpd45pj_ctl#_Qo0n1+q;B9tRbQ7S!kP~*p-^lgH2Bnnr;WQLCJ>@KdP$qe;_zI2BgGDAc?M zC+PkEn9iL{{2D5<>rmA>kkapl$`SHeqr|BZCCp>B*Zvtc`20FOaM`U$)n7GYfuRP#Zn*#PI0!VW0IuTa4R zZO(*zA8P-nFa?Wm4IJx)%D^u80QSwnaKVSu7=H{E;Yh42^>g4n*Z^fH8}j9lr=b-7 zCZrEnFun@!f;HTuGP@P7fBoSOxep_Py_GEpeUw!`c2r*IHFPC9476HuA`8y}X;$P8~n z3Kl@6>|t04o1xx!5<0LG>J=P;`{2uP7hFKWT!X)YI`S5Nz1CF63OOXrDmzq}3_|*nh?9K8EmH zW`8s0>HRAzHLmEU_AoQe$SOon=(~urH5gH=L*^h$5j|mD!A9hZ?Oq0ykNp+oC4S!Y ze`1;5KRuuol@t;l#}J+cCM6j_3(%|IHE1;`de ztsS`!Ng~$1OJ@x7IHI-?8KMqN?{p~AhAc)NLZXP8eq6qVR3pQY2yzEfi+r(lFsKhF zz718NwoQq6RRupNXlZfkV`(?#9W7WlEWX)oF^eLClXSPVZ1w(IFl}_AwbhNM&7wp+ z9gDZQtV9}P@u*i>ICFR;`M9ZZn<8y3X;TwRwZ>8@Z&TqTgK843kyt$Cy;?Y70KJx! z_g-PPz)d@;bR?Pf;)Aa&jI_H>#MvBbuXTg5HS44k&ZLy7b(_+rHWqExH^nCrbz*Ug zL>o$qR+mItU1w{eE$KA0B%sBX@zG;ptkEc12c%#$dHl#=oW}S3%EafyL6CEix=`x~bHS-gNTP+cV@s-ju_BZo8lD@v}KU`ve)d`Qb36U)4nO;% zmU4T&)UdxV>+y3t{M;_PpUz&Ro}IGC(4tw}@3iU;+Wt;I_neUb-jz~s$#&a6;ODy7cgQ;C1s>Ynd#vIEfipP$LTFBbb=e(V zax#0!%MSl*3A^9)vnXTL^PU{h)O&8kXZ^->S@T3g_|IDfeQLewH6x78g+(AWPNA>zri)=NSrrcRVPGMUvPKJ~3B9X9?RmO0U-s`Rr#x`K<@!FWH8 z%IpB8@D1-+`Q(z%Jw$z%ceecBQ}H%5Wj%Sy`bm_!FSHX_a0Q)?H)B{ue>QnQzkRVzBGv9)TMbx#+GIL>{o+((a#b7Nox*YQFw@u zDG_|fm#>z%;teWZmmL(>Za;g|hyPe2E4{ybL@g>oyO% zkf5O0KtHhhr3%t!`vCe@_0(?i$rd|hprSieW_=H`XWwaHBiG}-JGQDkv}BV^D7=Pe z?0xQ~_RD%pZ{5&uHcsLU7ZTJ2UfJ5u?KIYVqGF27QJU%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "សូមទោស, អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យចូលដំណើរការក្នុងទំព័រនេះទេ។" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "កម្មវិធី​បន្ថែម" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "ខ្មៅ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "ពន្លឺ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "សុរិយាលិច" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "ទិដ្ឋភាព​ទូទៅ" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "ការ​កំណត់" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "អ៊ីមែល" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "ដូមេន" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "គម្រោង" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "វេបសាយ​ទាំងអស់" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "បោះ​បង់​ការ​ឆ្លើយ​តប" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "ទំលាក់ មួយចំលើយតប ទៅ %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "បញ្ចេញ​មតិ​មួយ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "សូមរក្សាទុកឈ្មោះ អ៊ីម៊ែល និងវេបសាយរបស់ខ្ញុំក្នុងកម្មវិធីរុករកនេះសម្រាប់ការបញ្ចេញមតិរបស់ខ្ញុំនាពេលបន្ទាប់។" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "ជាវប្រចាំ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "អាន​បន្ត" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "ស្រេចចិត្ត" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "វេបសាយ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "បោះបង់" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "មតិ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "ឆ្លើយ​តប" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "ផ្ដាច់" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "ចាប់ផ្ដើម" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "រូបភាព​តូច" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "ដាក់​ឈ្មោះ ប្លក របស់​អ្នក​" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "ចំណងជើង" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "ព្រម" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "ទេ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "កែ" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "ភាគរយអតិបរិមា​ នៃក្រមអក្សរ៖" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "ភាគរយអប្បបរិមា​ នៃក្រមអក្សរ៖" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "មិន​រាប់​ចូល:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1469,24 +799,14 @@ msgstr "" msgid "Category Cloud" msgstr "ពពក ចំណាត់ក្រុម" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "បំភ្លេច​ចោល" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "អ្នក​បាន​ប្រើអស់ %1$s នៃ​ចំណុះ​សរុប %2$s (%3$s%%)។" @@ -1623,47 +943,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "រូប" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "បង្កើត​វេបសាយ​ឬ​ប្លក់​មិន​គិត​ប្រាក់​មួយ​នៅ WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1702,8 +1017,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "ប្លក់​នៅ WordPress.com" @@ -1780,10 +1095,6 @@ msgstr "រក្សា​ទុក" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "ទូរស័ព្ទ" msgid "Email" msgstr "អ៊ីមែល" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "ឈ្មោះ" @@ -1912,27 +1222,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "ពណ៌ផ្ទៃខាងក្រោយនៃអត្ថបទ៖" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "ពណ៌ផ្ទៃខាងក្រោយ នៃអាវើថរ(avatar)៖" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "គ្មានអាវើថរ (avatar)" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(ច្រើនបំផុត គឺ ១៥)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "ចំនួន​មតិ​ដែល​ត្រូវ​បង្ហាញ:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "មតិថ្មីៗ" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "​នៅ" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "ក្រិត" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "បញ្ជី" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "បង្ហាញចេញ អត្ថបទ បន្ទាប់ក្រាវើថរ។ នេះជាជំរើស និងអាចត្រូវបានប្រើប្រាស់ ដើម្បីពិពណ៌នាផ្ទាល់ខ្លួន ឬ ពិពណ៌នាអ្វី ដែលប្លក របស់អ្នក នឹងសំដៅនិយាយ។" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "តំណភ្ជាប់ ក្រាវើថរ។ នេះជា មួយអាសយដ្ឋានជំរើស URL ដែលនឹងត្រូវបានប្រើប្រាស់ ពេលអ្នកណាម្នាក់ ចុចលើ ក្រាវើថរ របស់អ្នក ៖" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "ទំហំ៖" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "កណ្ដាល" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "ស្ដាំ" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "ឆ្វេង" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "មិន​មាន" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "មហាធំ (256 ធាតុរូបភាព) " -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "ធំ (128 ធាតុរូបភាព) " -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "មធ្យម (96 ធាតុរូបភាព) " -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "តូច (64 ធាតុរូបភាព) " @@ -2090,7 +1400,7 @@ msgstr "ក្រាវើថរ" msgid "Insert a Gravatar image" msgstr "បញ្ចូល មួយរូបភាពក្រាវើថរ" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2102,28 +1412,28 @@ msgstr "ទើប​ចុះផ្សាយ​ថ្មីៗ" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "ទំហំអាវើថរ(avatar) (px)៖" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "បង្ហាញចេញ គ្រប់អ្នកនិពន្ធ (រួមទាំង អ្នកមិនបានសរសេរប្រកាស ណាមួយ សោះ)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "ចំណង​ជើង:" @@ -2139,12 +1449,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-kmr.mo b/projects/plugins/wpcomsh/languages/wpcomsh-kmr.mo index 4ebee2995b09e1bf4d93cf6852b323c5fc19d79f..5f39df87242079d70e8e5e0bc158b37591c81803 100644 GIT binary patch delta 1284 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-kmr.po b/projects/plugins/wpcomsh/languages/wpcomsh-kmr.po index 95817cf2d6664..00c05a457663d 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-kmr.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-kmr.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Pêvek" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Tarî" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Ronîkirî" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Dîtina giştî" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Sazkarî" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Hemû Malper" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Bersivê betalke" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Navnîşana epeyamê, navnîşana malperê û navê min bo şiroveyek din veşêre mêjiyê vê gerokê." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Keyfî" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Malpel" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Betalke" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Şirove" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Bersiv" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Derkeve" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Hadê destpêke" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Wêneyê piçûk" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Sernav" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Erê" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Na" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Serrastke" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Jê Biveqetêne" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Veşêre" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Tomar bike" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "Epeyam" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nav" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Hejmara şiroveyên ku tên xuyakirin:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Şiroveyên Dawî" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lîste" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Navîn" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Rast" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Çep" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Nîn e" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Sernav:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-kn.mo b/projects/plugins/wpcomsh/languages/wpcomsh-kn.mo index fa8889d5315bbcd8e0c979b2de59f74ed2bbddb1..98f19cc669c8789b0b4d9023684a80cb895bd274 100644 GIT binary patch delta 1358 zcmZA1Ur19?9Ki9jT${Shxs}-;|7^4QXZa^h(+3MmZ4{LtK^6!~UjI;2%JmY#3?Hfo zdpX!cAu03_L=hPUp+;1Y;6u?rFp+}j!H1xTK%e^l<{3nX{r0)PbI&>V-ru>~+lptQ z#FF1Wrf9o~JYwFa)Iq$M#ushEu2dmT;(mONS!iFcR0eK9C*~ukR2Ur?F;=6Sya8og z3(B}7$S0xN_)e#z9sSs~c0$EX{{@r@BgQLOMm}otCny)3Mn39=$>&h!y)k|;{R<}l zikVzredk~u1Am$mzfl%k!EGps7xIuURgSW74a$?%oBn2$afeKP5;Ms=O@11y$j_ow zZW8TWU)?nw53rm3DawTksh124qvTb{DOG1|MA@Y#Y{4k{*uGIbL4J#}a;R2Nw$R36 zQsJPn785yiL^+Ty>igKe)5}99u9k>VU@g~Z8 z?@-oTF#XF|Kpyf?|0oChJiN(x6)SNZWx_m;;35`dC$GNzN-pCTyp5TZd=^<#%`r(T z@e$?0exZzWWv^8xj502Y%Xloo0rOQYk!o^bc_F3kB6bo|Rw=nWWrQdpDhXL!E|h8& z9OM(_gj7a;S=Gc=!bh-UDnM|*$t_CAQ>Pl+lYB~fyJg>H@BVG_5>kj{lk(*fH3ZL) z+@?B|?U9!*)pnQz*#`5MlB`e}Ih80*{v?V>m#-6W0aKO5N^k&+3V*!~H{i4fY252lS$|(c5O7Vt$}$ zFc!lh9Zk=-b?fQ$)v4DRk8S#qE23@gMt#G5K)XF5-R!wP<;yCv*{^+hIH@mrBYM{R YNq@_3(B-~XZTSnQCj5>x{W<5)U;I~#EC2ui delta 2752 zcmZ9MYit!o6o9ADQrc2^Dz5@tC>2U6w6!XN0;K|tMUa{RJ`yhNw!Ps#$lWcqf4sCN zh!2Qi(?}2{6~s!g=w1+vKuI)46C_dehbUx22u2bOF(FZ+!SBpY@iDn)zCCAW&TD4x z!1S-@rZ11l?oo_-qzGvqqErMP$!22AAEwkaSPAcfPrzEZ(dY+Y9=dOM3g)7J4#mZJ z$WL8h8UZgF{il#=^{aVt6UxRROtLW_iayeCys=M%IoM0!a99S%z-nV(4hzs5%=`6F z{6!2~;B55GT2Cw0!vnF^UMP-xjs7kiiQW&z!5Q=ZQ=@+gW#4(oPkm?Xmta2n6-YDH zFUEcY%KDpdGW-(`C%&3M8B$3x6E;-_C2$p#glY{}LP_LtD6MRStKdfSz8~^a$CzaQ zX=DEiNN--c32pW#s`iGKw7sWVJN z;TP~xcn*%v;+V){19}PPQv;tbP-(sK7zVjyr{Hw>Ba}0}Z8(N(A~-Awnu-B1F&XY8loO!RY5 zHv9&q!rM?BPaCDwv#1$+yRh1XyOyamOY3!1+WyJhVnmh6-pvmv?-snpA4mdQnD7m)sRl5)oLDO zVH=c;yCJ^SL8G65vhjO(9bSX@)88;q4p5gAoiUh$yOrbTfPDrlE5Tn3i0)j zvy?C35o8`R3z49bn2hBJN2=}@g+VuU_43SDq%WCNKOdQc$dDqqzq-4k%e^X>2gWjF zDNpgp01`A~Ncb`;aQ+VPpaF5R!w`cyDIU%8ytHyTjTNX|=tx*-uu- zVpe0+wH>uIkxX>PlkGgUyKTvoqiSQxR<$gWXtHAlR?6NI>-1*l6csH?#^ZLvRdtcn zW>sgmMA~C0Q70aC9Iqj#qF{yXT8O*m?;-9%{1q#(LvHD}nA^;W#o zN<`vzxn;*A(O9_^Ni_9llC@o%|pQODYpN_IGQ%4$ibFxd3tIoEQdaoegN%&$T< zl5ewWv|TrvXmz~$VYf!F3;n2d$yD>2lWd3S*!ZA-mlm7Qz#80M7Zy; zu6O|J5!s&EF0tjc|qa0 zC$V>e3@P~p;6z?wId8(yIH5k=%28d}hO5EG?;WwQ@TI{POIy8fMyyR!0H=$yL*Xu5 zl5<$K6hN6MIFl3aF|Cq<*s`AxSpR9A_9FFS-GLm@$zmW4I>!UKCeT51X_dZsVb;Am_rYrs=9t;(Eg$vA-=sej7ytkO diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-kn.po b/projects/plugins/wpcomsh/languages/wpcomsh-kn.po index 805cf52754948..5c096cc356ce8 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-kn.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-kn.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "ಕ್ಷಮಿಸಿ, ಈ ಪುಟವನ್ನು ಪ್ರವೇಶಿಸಲು ನಿಮಗೆ ಅನುಮತಿ ಇಲ್ಲ." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "ಪ್ಲಗಿನ್‌ಗಳು" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "ಗಾಡ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "ತಿಳಿ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "ಸ್ಥೂಲ ನೋಟ" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "ಆದ್ಯತೆಗಳು" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "ಎಲ್ಲಾ ತಾಣಗಳು" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "ಪ್ರತ್ಯುತ್ತರವನ್ನು ರದ್ದುಮಾಡಿ" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "ನಿಮ್ಮ ಟಿಪ್ಪಣಿ ಬರೆಯಿರಿ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "ಮುಂದಿನ ಬಾರಿ ನಾನು ಕಾಮೆಂಟ್ ಮಾಡಿದರೆ ಈ ಬ್ರೌಸರ್ನಲ್ಲಿ ನನ್ನ ಹೆಸರು, ಇಮೇಲ್ ಮತ್ತು ವೆಬ್ಸೈಟ್ ಉಳಿಸಿ." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "ಐಚ್ಛಿಕ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "ಜಾಲತಾಣ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "ರದ್ದು" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "ವರ್ಡ್ಪ್ರೆಸ್" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "ಪ್ರತಿಕ್ರಿಯೆ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "ಉತ್ತರ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "ಲಾಗೌಟ್" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "ಪ್ರಾರಂಭಿಸಿ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "ಹೊಸ ಪುಟವನ್ನು ಸೇರಿಸಿ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "ಕಿರುಚಿತ್ರ" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "ಶೀರ್ಷಿಕೆ" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "ಹೌದು" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "ಇಲ್ಲ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "ಸಂಪಾದಿಸಿ" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "ಹೊರತುಪಡಿಸಿ:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "ವಜಾಮಾಡಿ" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "ಉಳಿಸಿ" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "ಮಿಂಚೆ" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "ಹೆಸರು" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "ಪ್ರದರ್ಶಿಸಬಹುದಾದ ಟಿಪ್ಪಣಿಗಳ ಸಂಖ್ಯೆ:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "ಇತ್ತೀಚಿನ ಟಿಪ್ಪಣಿಗಳು" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "ಪಟ್ಟಿ" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "ಮಧ್ಯೆ" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "ಬಲ" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "ಎಡ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "ಯಾವುದೂ ಇಲ್ಲ" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "ಶೀರ್ಷಿಕೆ:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ko_KR.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ko_KR.mo index fbaa28552e2145dbe7aaaadf6b4f3f5ea869face..54e52e65f082ab8a0e270376aaa9cafaf5ed5eec 100644 GIT binary patch delta 8654 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 A-v9sr literal 51987 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" msgstr "%1$s이(가) %3$s에 댓글 남김" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "프로필 페이지에서 그라바타를 변경할 수 있습니다." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "마케팅" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "죄송합니다. 이 페이지에 접근할 권한이 없습니다." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "플러그인" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "WordPress.com의 이전 알림판을 사용하여 사이트를 관리합니다." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "기본 스타일" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "WP-Admin을 사용하여 사이트를 관리합니다." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "클래식 스타일" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "관리자 인터페이스 스타일" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "플러그인 둘러보기" @@ -72,424 +42,10 @@ msgstr "사이트의 기능을 향상시킬 수 있는 다양한 무료 및 유 msgid "Flex your site's features with plugins" msgstr "플러그인으로 사이트 기능을 향상시키세요." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "테마 쇼케이스" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "테마 탐색" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "워드프레스닷컴 테마에 대해 자세히 알아보세요. 사이트에 활기를 불어넣을 멋진 반응형 디자인에 대해 알아보세요." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "사이트에 적합한 테마 찾기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "방문자가 댓글을 달 수 있도록 독려하는 몇개의 단어" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "댓글에서 블록 활성화" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "방문자가 워드프레스닷컴 또는 Facebook 계정을 사용하여 댓글을 달 수 있도록 허용" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "재치있는 인사와 색상 구조가 있는 댓글 폼을 조정하세요." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "색상표" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "인사 글" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "블록 허용" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "다크" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "라이트" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "투명" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "스토어 시작" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "도메인 추가" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "비즈니스 성장" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "판매세 징수" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "WooPayments로 지불 받기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "상품 추가" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "스토어 사용자 정의" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "일몰" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "벚꽃" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "눈꽃" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "해질녘" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "대비" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "클래식 다크" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "클래식 브라이트" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "클래식 블루" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "아쿠아" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "개요" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "젯팩 소셜을 통해 “%s” 공유" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "요금제, 도메인, 이메일 등에 대한 설정에 접근하려면 사이드바에서 \"호스팅\"을 클릭하세요." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "설정" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "수익 창출" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "모니터링" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "설정" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "구매" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "이메일" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "도메인" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "애드온" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "요금제" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "호스팅" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "모든 사이트" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "오류: 다시 댓글을 달아보세요." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "오류: Facebook 로그인이 만료되었습니다." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "댓글 취소" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "%s님에게 덧글 달기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "댓글 남기기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "나중을 위해 이름, 이메일주소, 웹사이트 주소를 이 브라우저에 저장." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "댓글 발송됨" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "구독" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "이메일 주소 입력" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "블로그 글 업데이트를 받아보시겠어요? 아래 버튼을 클릭하기만 하면 늘 최신 소식을 받아보실 수 있어요!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "하나도 놓치지 마세요!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "계속 읽기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "계속 읽고 전체 아카이브에 접근하려면 지금 구독하세요." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "%s에서 더 알아보기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "댓글을 로드하는 중..." - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "계속 소식을 전해드릴게요." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "선택사항" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "웹사이트" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "답글 작성..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "취소" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "새 댓글을 이메일로 받기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "새 글 이메일로 받기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "새 글 알림 받기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "매주" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "워드프레스" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "댓글" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "답글" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "매일" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "즉시" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(주소는 공개되지 않습니다)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "로그아웃" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "%s을(를) 통해 로그인됨" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "로그인하여 댓글을 남기세요." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "답글을 남기려면 로그인하세요." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "댓글을 남기세요(로그인은 선택 사항)." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "답글을 남기세요. (로그인은 선택 사항)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "웹사이트(선택 사항)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "이메일(주소는 공개되지 않음)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "이 사이트의 글에 대한 웹 및 모바일 알림을 받으세요." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "로그인하거나 이름과 이메일을 입력하고 댓글을 남기세요." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "로그인을 하거나 이름과 이메일을 입력하고 답글을 남기세요." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "댓글 달기..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "시작하기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "워드프레스닷컴의 안내식 가져오기 도구를 사용하여 Medium, Substack, Squarespace, Wix 등의 글과 댓글을 가져오세요." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "젯팩에서 지원되는 쓰기 설정에 대해 더 알아보려면 %1$s젯팩 설정%2$s을 참조하세요." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "예약된 업데이트" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "도메인의 이메일 주소 확인" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "사이트 설정" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Sensei 설정 마무리" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "스토어 설정 완료" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "사이트 디자인 업데이트" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "글 공유 활성화" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "모바일 앱 설치" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "파일을 복원할 수 없습니다." @@ -563,134 +119,6 @@ msgstr "가져오기가 이미 실행되고 있습니다." msgid "The backup import has been cancelled." msgstr "백업 가져오기가 취소되었습니다." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "사이트를 위한 다음 단계" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "사이트에 블록 구독 추가" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "기존 구독자를 가져오세요" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "사이트 지표 보기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "SSH 설정" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "맞춤 플러그인 설치" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "테마 선택" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "서포터를 위한 혜택 구성" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "결제를 받기 위해 Stripe 계정 연결" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "소개 페이지 추가" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "유료 뉴스레터 요금제 관리" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "소셜 미디어 계정 연결" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "구독자 관리" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "글 3개 작성하기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "첫 구독자 10명 모으기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "구독자 모달 활성화" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "환영 메시지 사용자 정의" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "뉴스레터로 수익 창출" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "소개 페이지 업데이트" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "콘텐츠 마이그레이션" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "이메일 주소 확인" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "전체 사이트에서 새 글 및 페이지 생성과 기존 글 및 페이지 편집을 차단하고 댓글을 닫습니다." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "잠금 모드 활성화" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "잠금 모드" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "사이트의 소유권을 획득하기 위해 지정된 사람에게 문의합니다. 사망 증명서 사본을 가지고 %s에 문의하세요." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "회원님의 사후에 사이트를 관리할 사람을 선택하세요." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "기존 연락처" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "향상된 소유권" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "\"누구나 등록 가능\" 옵션이 현재 활성 상태입니다. 현재 기본 역할은 %1$s입니다. %4$s 공개 등록이 필요하지 않으면 이 옵션을 비활성화하는 것을 고려해 주세요." @@ -720,149 +148,37 @@ msgstr "파일이 없음" msgid "Could not determine importer type." msgstr "가져오기 도구 유형을 결정할 수 없음" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "사이트 공유" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "페이지 편집" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "사이트에 프리미엄 스타일이 있습니다. 지금 업그레이드하여 공개하고 수많은 기타 기능을 사용하세요." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "도메인 사용자 정의" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "새 페이지 추가" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "사이트로 트래픽 유도하기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "사이트 이름 정하기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "무료 1년 도메인 신청" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "선물하기" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "섬네일" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "배포 기능을 통해 \"%s\" 공유" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "공유" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "요금제 업그레이드" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "유료 뉴스레터 생성" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "결제 수단 설정" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "도메인을 선택하세요" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "블로그 시작" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "사이트 디자인 편집" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "사이트 설정" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "블로그 이름 지정" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "사이트 설정" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "첫 번째 비디오 업로드" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "동영상 사이트를 설정하세요" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "사이트 시작" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "링크 추가" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "프로필 링크 맞춤 설정" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "디자인 선택" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "글쓰기 시작" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "첫 번째 글쓰기" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "구독자 추가" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "요금제를 선택하세요" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "뉴스레터 맞춤 설정" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "%1$s 클래스를 로드할 수 없습니다. 작성 도구를 사용하여 이 클래스가 포함된 패키지를 추가하고 젯팩 오토로더가 필요한지 확인하세요." #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Textdomain은 %1$s 훅 전에 등록해야 합니다. 이 공지는 %2$s 도메인에 의해 트리거되었습니다." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "\"%s\" 스크립트는 wp-i18n에 따라 다르지만 이를 통해 \"textdomain\"이 지정되지는 않습니다." @@ -1063,27 +379,27 @@ msgstr "운이 좋았습니다! 귀하가 고를 수 없었을 특수한 글꼴 msgid "Uncheck to disable" msgstr "사용하지 않으려면 취소" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "Spotify 피드 ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "Apple 팟캐스트 피드 ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "타이틀:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "팟캐스트 RSS 피드" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Spotify에서 듣기" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Apple 팟캐스트에서 듣기" @@ -1095,98 +411,114 @@ msgstr "팟캐스트에 관한 정보를 표시하고 방문자에게 iTunes를 msgid "Podcast" msgstr "팟캐스트" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "iTunes 카테고리 선택:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "팟캐스트 카테고리 설정" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "팟캐스트 키워드 설정" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "팟캐스트 이미지 설정" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "유해성 콘텐츠 제외" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "예" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "아니요" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "팟캐스트를 유해성으로 설정" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "팟캐스트 저작권 설정" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "팟캐스트 요약 설정" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "팟캐스트 제작자 설정" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "팟캐스트 자막 설정" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "팟캐스트 제목 설정" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "이 URL을 iTunes 또는 팟캐스트 서비스에 제출합니다." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "회원님의 팟캐스트 피드: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "팟캐스트 카테고리 선택:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "팟캐스트의 블로그 카테고리" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "팟캐스트 카테고리 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "팟캐스트 카테고리 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "팟캐스트 카테고리 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "팟캐스트 키워드" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "팟캐스트 이미지" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "유행성으로 지정" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "팟캐스트 저작권" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "팟캐스트 요약" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "팟캐스트 출연자 이름" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "팟캐스트 자막" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "팟캐스트 제목" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "편집" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "내 홈" @@ -1427,31 +757,31 @@ msgstr "디스크 공간 할당량" msgid "Disk space used" msgstr "사용된 디스크 공간" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "자세한 정보를 원하시면 클릭하세요" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "상위 합계에 대한 하위 카테고리의 항목 수를 계산합니다." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "최대 글꼴 퍼센트:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "최소 글꼴 퍼센트:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "쉼표로 분리된 카테고리 ID" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "제외:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "표시할 최대 카테고리 수:" @@ -1469,24 +799,14 @@ msgstr "클라우드 형식에서 가장 많이 사용된 카테고리입니다. msgid "Category Cloud" msgstr "카테고리 클라우드" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "젯팩의 연결이 끊어졌으며 사이트가 비공개입니다. 사이트 가시성 설정을 관리하려면 젯팩을 다시 연결하세요." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "가시성 업데이트" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "사이트 시작" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "무시" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "현재 업로드 한도 %2$s회 중 %1$s회를 사용 중입니다(%3$s%%)." @@ -1623,47 +943,47 @@ msgstr "최신 Instagram 사진을 표시합니다." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "인물 소개" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "헤드라인" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "사진" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "이름 표시 안 함" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "작게 표시" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "보통으로 표시" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "크게 표시" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "매우 크게 표시" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "내 about.me URL" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "위젯 제목" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "2016년 7월 1일 이후에는 about.me 위젯을 더 이상 사용할 수 없습니다. 이후 이 위젯에는 about.me 프로필로 연결되는 간단한 텍스트 링크가 표시됩니다. 이 위젯을 제거하세요." @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "about.me 프로필을 썸네일과 함께 표시" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "요청한 데이터를 가져올 수 없습니다." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "WordPress.com에서 무료 웹사이트 또는 블로그 만들기" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "WordPress.com에서 무료 웹사이트 만들기" @@ -1702,8 +1017,8 @@ msgstr "Powered by 워드프레스닷컴" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "WordPress.com 제공" @@ -1780,10 +1095,6 @@ msgstr "저장하기" msgid "Activate & Save" msgstr "활성화 및 저장" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "사이트 공개 설정 관리" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "이 플러그인은 워드프레스닷컴에서 설치되었으며 요금제 구독에 포함된 기능을 제공합니다." @@ -1897,8 +1208,7 @@ msgstr "전화" msgid "Email" msgstr "이메일" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "이름" @@ -1912,27 +1222,27 @@ msgstr "예약 문의" msgid "Reservations" msgstr "예약" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "댓글 보기:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "텍스트 배경 색깔:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "아바타 배경 색깔:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "아바타 없음" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(최대 15개)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "보여줄 댓글의 수:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "최근 댓글" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "최근에 어떤 글도 좋아요를 표시하지 않았습니다. 좋아요를 표시하면 좋아하는 블로그 위젯에 표시됩니다." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "/" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%2$s의 %1$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "표시할 작성자의 좋아요 수:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "그리드" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "목록" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "다음으로 표시하기:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "표시할 글 수(1~15개):" @@ -2018,62 +1328,62 @@ msgstr "투표 완료" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "\"투표 완료” 스티커로 투표했다는 것을 독자에게 보여 주세요." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Gravatar 다음에 표시되는 텍스트. 이것은 선택사항이며 자기소개 또는 블로그 소개에 사용할 수 있습니다." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar 링크. 이것은 다른 사람이 Gravatar를 클릭할 때 사용되는 선택적인 URL입니다:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar 정렬:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "크기:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "사용자 정의 이메일 주소:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "사용자를 선택하거나 \"custom\"을 선택하고 사용자 정의 이메일 주소를 입력하세요." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "중앙" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "오른쪽" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "왼쪽" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "없음" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "특대(256픽셀)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Large(128픽셀)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Medium(96픽셀)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "작음 (64 픽셀)" @@ -2090,7 +1400,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Gravatar 이미지 삽입" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "사이드바에 표시할 이미지 선택:" @@ -2102,28 +1412,28 @@ msgstr "최근 등록된 글" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "사이트바에 최근에 등록된 글 뱃지 표시" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "아바타 크기(px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "모든 작성자 표시(글을 쓰지 않은 사람 포함)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "타이틀:" @@ -2139,12 +1449,12 @@ msgstr "작성자 아바타 이미지의 그리드를 표시합니다." msgid "Author Grid" msgstr "작성자 그리드" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "비공개 사이트" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "이 사이트는 비공개 상태입니다." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-lo.mo b/projects/plugins/wpcomsh/languages/wpcomsh-lo.mo index c9fc9350e2e3f406918fa9c30759d89b2c8af88b..a7abdea7f137029c4ce1a1ad334fb58c298ed0e3 100644 GIT binary patch delta 1104 zcmZA0&r4KM6u|K_IX@idm)bNnnl;l{sTi1$E`pM*O%z0J+z1UePLe-jW?ZzWfgq%y zHg8m-g2JLA?U&KwX(-gDP5(d_aX& zRkbVwblMphL|t$S^~D<|uOOG)GTt@g4@^FfbEeKW;pYUF1d754?}Mu~pRf*Ub1& zWC>{qQU4!wnnTrr7~9r~B?z(OZ z5he6kw7KW6od#l;c1%m7mMB9+2>oHj2|bPuLYwYT|1sKhmsD4F677Umv!3|BCCosR z(bq{QN$6ip+vX~=4fV&w5xW&gVa!_d7UH?_Qm!EVXS3t^oE**#XD3HXR>fC{4wvNE zNRit_J~c9Kb^G_lPUePqJk>ujHikuO#-FlQ{PT+!1M42^X)u+z=h!bDyW-f>j{V%R zXWaDWVy3Ro6SrsGY|62(IZIdF{&nkF=ztXqKe0Xp6IM+mZS_Wqi>r~_9_vc%??1AZ Bg{%Mo delta 1869 zcmZvcU1(fY5P)afjWKItll~Y}e{$2tpP1BClhi7x)ugpxWQ(Awgd*GIX1jK?8+SL+ zAhL->TB~`GZHx_An}SqL)zlD`yV_C&Mes%RL8!=~R#5Yx&Kn1TndRq;px>(j9154XbSpkBdgs3$lFuZ3Sb|Ig0; z%h`1tM?2B%*a_ER_rUw%Ua0Y2hni;r#^L#h(Ho^T+Uzl>7bL)%n z7W|(>-M0d%MQW&a3#^A~?}S=d6z+vjLOsYQQ1g6KP5-r(mvC%@D{f&^O=&}y<8G*( z>4*AFyaKhbx1o0MEYw6lx%JCX3s`ft$Yt07ZGmi3)U56Xj{Q&*q?|nk zf5V=IT&2C1cBtbvWHZu+v?4k*`0Z9JO)WrAu7_EGtld1^Q=o15$_R)oEMxTeua`(OH7jJ8pNB2fTq~dUViB4|(J1!bhuP_r_8K zep0$Eyo^7R9G7lCmGd*weIS;K`_i2r9>yU(vCKi~@rPogNsL5xIFZd3TEm&P*qHCd zyaBhZ*B{DBZz6s`=PXk??j=$d>Cs$aA>7p-9myrqsaR5?V}52V;XfmLlB4lNDl3or z1Elg?O0}t{@O#*+^mDmHDxNLWRJ>o;=kL!Za=!GXGlP3Fem1)lRIG%0rcF>Z!K5ip znBXlFETfAF{>Q7Ef)7n_%mgzgc+UiL)^i4>aI$jqV^bzLWjD;*SPLd#>6l!cc-aK+ z64)w7O|V4xdAkvVNQ)+TtrVCADp>qiDbq_ADtCkmKU8^bEY8|(hfHw96koFXG~ROT zBIO;n3x^8rRrl3WA&+%x*^`C-s?WBPkJFwir}((EhbYHwJdQ*K9An-!x3D2{Pwjt> y+Z!2Mhx1G+n+c{&@i6Z%or}B~YSu;)LHlBgH06lcY`B(9aMbF@m!7Cz75WF5e4E7p diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-lo.po b/projects/plugins/wpcomsh/languages/wpcomsh-lo.po index a6614ffa7d010..5904882532dca 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-lo.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-lo.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "​ສີ​ດຳ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "ສີ​ແຈ້ງ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "ພາບລວມ" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "ຕັ້ງຄ່າ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "ຍົກເລີກການຕອບກັບ" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "ໃຫ້ຄວາມເຫັນ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "ຕົວເລືອກ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "ເວັບໄຊ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "ຍົກເລີກ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "ເວີດເພດ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "ຄວາມເຫັນ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "ຕອບກັບ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "ອອກຈາກລະບົບ" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Thumbnail" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "ຫົວຂໍ້" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "ຕົກລົງ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "ບໍ່" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "ແກ້ໄຂ" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "ບໍ່ລວມ:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1469,24 +799,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "ລະເລີຍ" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1623,47 +943,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1702,8 +1017,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1780,10 +1095,6 @@ msgstr "ບັນທຶກ" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "" msgid "Email" msgstr "ອີເມວ" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "ຊື່" @@ -1912,27 +1222,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "ຈຳນວນທີ່ຈະໃຫ້ຄວາມເຫັນທີ່ສະແດງ:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "ຄວາມເຫັນໃຫມ່ລ່າສຸດ" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "ລາຍຊື່" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "ທາງກາງ" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "ທາງຂວາ" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "ທາງຊ້າຍ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "ບໍ່ມີ" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2090,7 +1400,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2102,28 +1412,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "ຫົວຂໍ້:" @@ -2139,12 +1449,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-lt_LT.mo b/projects/plugins/wpcomsh/languages/wpcomsh-lt_LT.mo index 10a92f2743de3ee355c94c6364afbd02b4908d3b..106019f8a3d0e62849367891f11e3fb5c38db026 100644 GIT binary patch delta 2229 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-lt_LT.po b/projects/plugins/wpcomsh/languages/wpcomsh-lt_LT.po index 666409b0be89d..f5f80add1d6e8 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-lt_LT.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-lt_LT.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketingas" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Deja, Jūs negalite peržiūrėti šio puslapio." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Įskiepiai" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Spalvų schema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Tamsi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Šviesi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Priimkite mokėjimus naudodami WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Saulėlydis" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Pudra" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Naktis" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Kontrastas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Klasikinė ryški" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Klasikinė mėlyna" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Apžvalga" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Nustatymai" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Nustatymai" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Pirkiniai" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "El.laiškai" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domenai" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Planai" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Visos svetainės" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Atšaukti atsakymą" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Palikti atsakymą: %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Įrašykite komentarą" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Noriu savo interneto naršyklėje išsaugoti vardą, el. pašto adresą ir interneto puslapį, kad jų nebereiktų įvesti iš naujo, kai kitą kartą vėl norėsiu parašyti komentarą." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Prenumeruoti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Įveskite el. pašto adresą" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Skaityti toliau" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Nebūtinas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Interneto puslapis" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Atšaukti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Gauti naujus komentarus el.paštu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Gauti naujus įrašus el.paštu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Pranešti man apie naujus įrašus" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Kas savaitę" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Komentaras" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Atsakyti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Kasdien" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Iškart" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Adresas niekada nerodomas viešai)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Atsijungti" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Pradėkite" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Pasirinkite temą" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Naujas puslapis" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatiūra" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Pavadinkite savo tinklaraštį" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Pavadinimas:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Taip" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ne" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1300,8 +632,6 @@ msgid "Edit" msgstr "Test!" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1429,31 +759,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Neįtraukti:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1471,24 +801,14 @@ msgstr "" msgid "Category Cloud" msgstr "Kategorijos debesėlis" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Paslėpti" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Šiuo metu jūs naudojate %1$s%2$s įkėlimo limitas (%3$s%%)." @@ -1625,47 +945,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Nuotrauka" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1682,19 +1002,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Sukurkite svetainę nemokamai su Wordpress.com" @@ -1704,8 +1019,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blogą talpina WordPress.com" @@ -1782,10 +1097,6 @@ msgstr "Išsaugoti" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1899,8 +1210,7 @@ msgstr "Telefonas" msgid "Email" msgstr "El.paštas" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Pavadinimas" @@ -1914,27 +1224,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Pseudonuotraukos fono spalva : " -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Nėra pseudoportreto" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(daugiausia 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Rodomų komentarų skaičius" @@ -1956,37 +1266,37 @@ msgid "Recent Comments" msgstr "Naujausi komentarai" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "- " #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Tinklelis" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Sąrašas" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2020,62 +1330,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Dydis:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Per vidurį" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Dešinėje" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Kairėje" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Nė vienos" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2092,7 +1402,7 @@ msgstr "Gravataras" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2104,28 +1414,28 @@ msgstr "Ką tik paskelbta" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Avataro dydis (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Rodyti visus autorius (ir tuos, kurie neparašė jokių įrašų)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Pavadinimas:" @@ -2141,12 +1451,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Šis puslapis privatus." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-lv.mo b/projects/plugins/wpcomsh/languages/wpcomsh-lv.mo index 3b8c6ae25c9b8fe2568602c6785551586b92a364..daf8bcf46182bfb6ab15c2596a1f3d0670a233c3 100644 GIT binary patch delta 6330 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 X7xvGJjkIp_543js`-c;%Hb(p#7@}jo delta 9394 zcmZ|T4SW^VnaA-7B!qW)HN1%f1mq<|1ySTh2nk{UC72*uwJ^z@B$N9V@5~Jn)Z0|V zm)80+YO7Ydy0)mOt)@z=*wu2Q*4DaWTiR-=t*sVi(Ym(kR_OlzcTR-e&+dHsqI;SXJ8%9!A=~DkKl3m0`iEQwU2^2dJmiN6C8>g7|m!*;WFHc zg&R@l_u&A18+HE&rhXWUsh6HW;9xu*N16I697Mey$MJk?gE`TO!#VL~9D}!^9`FdN z!(FHW?ZztHi+yp_M9b=jV^9M*5jDUHoP-NenYk2oUDkL74(9pR)fANCn^A9gCl0{} zQ625VS@=Ba0UsLwY0eKO-)bL^B{&_K4Xe_$*P`C|0#rsCQT?}JZWx8jDQE!Kqvq;X zoQ6GEi3d@0Io^&sT8_%ZS{#Kfs0>|!dO#N{bJrU~)N}4Zz2Kv$>waXDe|7Xc4I0rK zs5gGs)IUYtP)Z(8#xktI6{t7*D(d_<(8dR_0)K*2@$aa`Ibm}2z~wlC`njkKZJeBo zI@m&k-ry^!k>6~*3zgFQQ3HJlHHXilK9CnsZ}vKB%^bwDuw)7=A8SyVy&W~s?WpS> zMGfSI90fh#x2O!fiMsF*>J5+JRvcI!z0pmmH+lj!p#7)^e1sa%VZ0QF^ZLb@Mx76g zSKBd!ebc_*w7-RV^Y>7h zTEu9Tp=#7u(16Nt0ypaW@1RgZ!#>nNeuuj815^e+Ms?7ar^!*M^HWioszANzB2+(B zroICCpS7Al`m8%p_g#mjcoUZE`~Nxxb-Wt~;LE5v+J~$k>jNZP)`*$WBAbsI=tZcG z5~%9~RHkk;?RTLDb{}d{@4&_QBo4%nZ~)J@{z;(^4wx047>r7N8LERbu#id|M7BXi!eJc4^Dz2nKsk;sb z;q9oD-fP;QLbi451&rgLP*YVmC+heMs2`U$)C+AzJ?I8hzuQgwPE;lzLuK{{bI89g zc!maz^d&qOe~s#B+FZ+8iWR5J8tz7P2TtOKYi7=Bvxt2qvJ z-4fJ&^*IV!9Ii1yrRr*2h#_hqub?vZOH+T-_%^DegUIYyM^G~W_Y9kuGD0+jrs16sS-lQ6pk(Ia> z*P-5Y2kNtY43)_rqB8UoRAyesDR=<;>H8nTN2v=&p^ei}Yhndzt{QLzwxT-TV$NS} zyczZ2dr%M9fx7+)yaZpwzBrX11_x*0OZXK$S>OK!OQKY7!{yXJ#&dA-(kPYNPy>7q zXX0VhRyw^Z+BcS>-n1Hz$9mNDZ8!|CKwW>MY5z8AG4H~hZuoZ!+JN4{!p|?xEwZdn zQExQ6I$FgGaT@g+RA%C+2jy@S-h%Ab)^~6QzJg@g`V{pwoL&=M|3%b*+H1(aI=GI8 zNAWImqLwsFpzfgN{3_Hyx1y%zZq&dYKn?gw)MwU%nu?#J*2u4s^=bVcwd%{xjxsd` zPozHg>|AtVJq>!JFQDcwg}R{&HRm^)^S5I?^#`#p9>#uHv?3Zve^ftZSdO!B8rGq% z+k~Zf73u}Hi*m=bHR&PN5fuJ2UBXJxoa@qf_l);aUAYPZMmPK9z1eoG&SRJ z0QHkh{Z!P8oQ0agwdQ;)^1?YQLqQ|D7B!+fOnpamf%PP6KtILv@H5n#ty&cg=pvj- z-9v3uH{q$c8)xGoEX4_{qyEcr67_jFRNw!43L0^9p@CIt%%N`l8qUN!P;dGiYH_}3 z{Ijvox%|fl?I+^Jn7~204mGvEK;3r$mAQVrO$pDpYzq1crlB%0A9Z6b{sq_J3_NR1 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-lv.po b/projects/plugins/wpcomsh/languages/wpcomsh-lv.po index 5dee73d811dea..3b23bfabb02b0 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-lv.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-lv.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Mārketings" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Atvainojiet, jums nav atļauts piekļūt šai lapai." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Spraudņi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Izpētīt spraudņus" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Krāsu palete" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Atļaut blokus" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Tumšs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Gaiša" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Pievienot domēnu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Pielāgojiet savu veikalu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Saulriets" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Pulverveida sniegs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Krēsla" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Kontrasts" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Klasisks tumšs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Klasisks spilgts" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Klasiski zils" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Ūdens" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Pārskats" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Uzstādījumi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Konfigurācija" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Pirkumi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Epasts" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domēni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Plāni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Hostings" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Visas vietnes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Atcelt atbildi" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Komentēt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Saglabājiet manu vārdu, e-pasta adresi un vietni šajā pārlūkprogrammā nākamajai reizei, kad vēlēšos pievienot komentāru." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Abonēt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Ievadiet savu e-pasta adresi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Turpināt lasīt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Papildus" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Tīmekļa vietne" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Atcelt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Sūtīt jaunus komentārus uz manu e-pastu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Komentārs" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Atbildēt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Atteikties" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Sākt darbu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Iespējot ziņu kopīgošanu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Izvēlieties tēmu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Pievienojiet jaunu lapu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Virziet datplūsmu uz savu vietni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Piešķiriet savai vietnei nosaukumu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Sīktēls" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Uzlabot plānu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Izvēlieties domēnu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Publicēt savu emuāru" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Piešķirt vārdu savam emuāram" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personalizējiet savu vietni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Palaidiet savu vietni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Sāciet rakstīt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Pievienojiet abonentus" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Izvēlieties plānu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Virsraksts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Klausieties Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Izvēlēties aplādes kategoriju" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Iestatiet aplādes attēlu" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Dzēst" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Jā" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nē" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Iestatiet aplādes autortiesības" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Iestatiet aplādes kopsavilkumu" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Iestatīt aplādes apakšvirsrakstu" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Iestatiet aplādes nosaukumu" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Šis ir URL, ko iesniedzat iTunes vai aplādes pakalpojumam." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Jūsu aplādes plūsma: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Izvēlieties aplādes kategoriju:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "3. aplādes kategorija" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "2. aplādes kategorija" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "1. aplādes kategorija" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Podcast atslēgvārdi" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Aplādes attēls" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Atzīmēt kā nepiemērotu jauniešiem" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Aplādes autortiesības" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Aplādes kopsavilkums" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Aplādes talanta vārds" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Aplādes apakšvirsraksts" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Aplādes nosaukums" @@ -1300,8 +632,6 @@ msgid "Edit" msgstr "Rediģēt" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Manas mājas" @@ -1429,31 +759,31 @@ msgstr "Diska vietas kvota" msgid "Disk space used" msgstr "Izmantotā diska vieta" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Klikšķiniet, lai iegūtu vairāk informācijas" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Uzskaitīt apakškategorijās esošos vienumus attiecībā pret pamata kopsummu." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Maksimālais fontu lielums procentos:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Minimālais fontu lielums procentos:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Kategoriju ID, atdalīti ar komatiem" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Neiekļaut:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Maksimālais parādāmo kategoriju skaits:" @@ -1471,24 +801,14 @@ msgstr "Jūsu visbiežāk izmantotās kategorijas mākoņa formātā." msgid "Category Cloud" msgstr "Kategoriju mākonis" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack ir atvienots, un vietne ir privāta. Atkārtoti pievienojiet Jetpack, lai pārvaldītu vietnes redzamības iestatījumus." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Atjaunināt redzamību" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Palaist vietni" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Nerādīt" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Jūs pašlaik izmantojat %1$s no %2$s augšupielādes ierobežojuma (%3$s%%)." @@ -1625,47 +945,47 @@ msgstr "Parādiet savus jaunākos Instagram fotoattēlus." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biogrāfija" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Virsraksts" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Nerādīt vārdu" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr " Mazs displejs" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Vidējs displejs" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Liels displejs" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Ļoti liels displejs" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Jūsu par.mani URL " -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Logrīka nosaukums" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "Logrīks about.me vairs nebūs pieejams pēc 2016. gada 1. jūlija. Pēc šī datuma logrīks parādīs vienkāršu teksta saiti uz jūsu about.me profilu. Lūdzu, noņemiet šo logrīku." @@ -1682,19 +1002,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Parādiet savu about.me profilu ar sīktēlu" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Nevar ienest pieprasītos datus." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Veidojiet bezmaksas vietni vai emuāru vietnē WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Veidojiet bezmaksas vietni vietnē WordPress.com" @@ -1704,8 +1019,8 @@ msgstr "Darbojas ar WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "WordPress.com blogs" @@ -1782,10 +1097,6 @@ msgstr "Saglabāt" msgid "Activate & Save" msgstr "Aktivizēt un saglabāt" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Pārvaldiet savas vietnes redzamības iestatījumus" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "Šo spraudni instalēja WordPress.com, un tas nodrošina jūsu plāna abonementā piedāvātās funkcijas." @@ -1899,8 +1210,7 @@ msgstr "Tālruņa numurs" msgid "Email" msgstr "E-pasts" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Vārds" @@ -1914,27 +1224,27 @@ msgstr "Rezervācijas izmeklēšana" msgid "Reservations" msgstr "Rezervācijas" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Rādīt komentārus no:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Teksta fona krāsa:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Tēla fona krāsa:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Nav tēlu" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(ne vairāk kā 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Rādāmo rakstu skaits:" @@ -1956,37 +1266,37 @@ msgid "Recent Comments" msgstr "Jaunākie komentāri" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Pēdējā laikā jums nav patikusi neviena ziņa. Kad kādu atzīmēsiet, šis Ziņas, kas man patīk logrīks tās parādīs." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "uz" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$sieslēgt %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Parādāmās autora sirsniņas:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Režģis" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Saraksts" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Attēlot kā:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Parādāmo ziņu skaits (no 1 līdz 15):" @@ -2020,62 +1330,62 @@ msgstr "Es balsoju" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Parādiet lasītājiem, ka balsojāt ar uzlīmi \"Es balsoju \"." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Teksts, kas parādīts zem Gravatar. Tas nav obligāts, un to var izmantot, lai aprakstītu sevi vai savu emuāru." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar saite. Šis ir neobligāts URL, kas tiks izmantots, kad kāds noklikšķinās uz jūsu Gravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar izlīdzināšana:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Lielums:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Pielāgota e-pasta adrese:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Atlasiet lietotāju vai izvēlieties \"custom \" un ievadiet pielāgotu e-pasta adresi." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centrs" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Pa labi" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Pa kreisi" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Neviens" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Īpaši liels (256 pikseļi)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Liels (128 pikseļi)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Vidējs (96 pikseļi)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Mazs (64 pikseļi)" @@ -2092,7 +1402,7 @@ msgstr "Tēls" msgid "Insert a Gravatar image" msgstr "Ievietojiet tēla attēlu" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Izvēlieties attēlu, ko parādīt sānjoslā:" @@ -2104,28 +1414,28 @@ msgstr "Svaigi nospiests" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Parādiet sānjoslā emblēmu \"Svaigi nospiests\"" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Tēla lielums (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Parādīt visus autorus (iekļaujot tos, kas pagaidām nav neko publicējuši)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Nosaukums:" @@ -2141,12 +1451,12 @@ msgstr "Rādīt autora Tēla attēlu režģi." msgid "Author Grid" msgstr "Autora režģis" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Privāta vietne" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Šī vietne ir privāta." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-me_ME.mo b/projects/plugins/wpcomsh/languages/wpcomsh-me_ME.mo index 2dd46b4b257d9c2a59541aa9a03385bffa20c5a9..6a24f0ade7c095ba8b7bb8bb6dcebed9c34fe8cf 100644 GIT binary patch delta 1130 zcmX}rPe@cj9Ki8eTX)^v%(OBs%`LN(f+7-1LfCWz!-Hl){~#W|myP=7<=frJmIU^#`I39imGe>d>EySWvehEZQy-K}6Oyg1$c+8}|1;Z|3dHZ|1jeXB*~fr^x$M+G!Z9bN_FDR3NEy>%aq!W6PUusn84@O8BEfDgK>O^l{kl0_}PwswSLDA#(yE} zOsOVj$%Iyvg*#9d+G*{y<6X9&!!*wipzLwbjvvPL^p9Z;mQdE6w$HEPa{AZo_$^G6 zU)|+KPWBM_s3*4n3}t~?+kb2O?@>1T$vTf5Mt#E__yhCU!sO#r(?hAmOD5IgYm@_g z#1#3}7dxt$!Zf-COT^ldBe=k_5{9{t-$ zg3)7($wD1ECQt)m;OkM(Xf;%HjO&ChgGWNo)i!V6WNFgZUD5s2V0FJP6dk7MQRkc! iHKzB}4Y8&(bH|Lz>XO}wE~mFum>}xToQNJ|Zu|w!MUOcE literal 3143 zcmYk7U5r~t6~~7*ly(cHAJCEl;gq&%mae__cGILz-H`5XlT|m_C3gA+0*!rV?Xl<1 z+|1m29b1ur3aL`0sFe^%eE|jWQc(#co_Og~_8qBGC3q-2RO0igLPC8({Ll65rX!#E z&D{AqA2Y`v-hb$40_7RV*B~E#Mu=_j-P=*2{QZy+&x8K}?*f-TJLl8j9q4}>{5*Iz z_Pdea1wV)HJrGO9DE3|CB!2%Ph@bcgsyo4J;N9R)L0Zp=_#nvZ4})I?kASRCD{>9w^;_T(>GC6W>S0 z<3o`3xD4|61jLr&_4xf-0g{wwlhkmr8_ z^1R!y8J~A2h)?2PknMdKycawIavYaI_U8(C7(4;uC%%J<*MBcE0oh&y@;N^S`J8L9 z{}#ypc^kY6{s!c8kHL8y-xZMkcsll91li74V*dvq>tVoqz{_#`MkOv@K zSPw4jKQ3Q@oTyqtJPxvdI97GYgOIO7ST`Z z*e_p!JPO$_kD$SRT7|Gb_DgfW0djo!ZE~LC*l=MV666U8m#5|sE8xl4WU(t#T_<71ZJ(>uU2g;*2rW(YXrZjCFRJ zx*~`*Y5U4VkXMlE=}=4tV=%@>uOgP1|1zz9fH_MbS^ehsg2mU z(l^eu@wx!6*>sPtgSbwK3?q-_Nrz5rXr1$BiFR#^}i9DWv`inOOZxn1hdtq6Ql z7`jPIY-hQ4RvNKgDi4QE#EvNj+6Hk^^@-bts#{$3)* zzE~n@6Pl=AfU(e%@}UmY^KKHL&93wKpb$;yo9k53=DvFMYPUpmRGw=)z~;O`SLa5F zt{l*saYe$dfa;2~E}gbScc@@}cL-Z82O>`AMJ;hDOJuIZ%X3}C%g!e|ULkU?!o{z` z{fQ&%avHKpnerS}xP{#$`+ZED>z*Mb^=f`Ku?VUPo~Mw>zM{*8%VnK*jFLg&CK?5` zcePQlTESjLMP{5#U{hV}Y}YQTQu8sjbtu=OmBz|yt#Q28Tt&0hY_u9Do@}5joZmdZ zQF}>wp4*~ky|J+7a5rsU>rOK)%;Cai+!}39QGX~sUPk*;_l4TYTl2iMVOROuhV45( zzeOi|I$uDny)?BKoKHiGY*uwc`>9hjZ?=!w$D56IyGcin5;q%<>NLUgc)BqVa6AL07NNmtam~5o?-Qv$A+<;g#B1WtEq?^DR1STwaA@d8NKuZ`7p8 zhH_yGZ?1r|Ta>DW9q&e}pVu~%TTVELU>#SQYSn|LbIKrg3t~STh)$^~$WiV}T|IW4 zT1{i;b+CFYwvz%6)aruyadZaLOj5loYsB!O7D@6y(6X_Go zc}?aeHWrt>N_5Nxo3mn;>K4W_ck{Z%CC0@bdp#06=yProFFHJYyv1CWV@-SSDZ^Ji zk(7Bomgwi|wCHeh5HDeD?8N45V31O_pit@9!ja02tnz_`rg|hx35x*Ou8>A>s2Qn5 z-F&06UG_C{1b(R$&%?9u$J{1Kvv};Rg<;pjTbNbWtLnsgUeKZg2g)Ifkd^OyxbTAzk+2~Z~^Psta$5f~D sxJ{{}QU>1D^}OD@!8yn({J9_lx||!hTJU@ZgG!4(ki;c(H`K-d0gYAJzyJUM diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-me_ME.po b/projects/plugins/wpcomsh/languages/wpcomsh-me_ME.po index 02c5c6c3ec418..c183e348b30d0 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-me_ME.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-me_ME.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugini" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Tamna" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Svijetla" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Pregled" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Podešavanja" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Svi sajtovi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Odustani od odgovara" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Sačuvaj moje ime, adresu e-pošte i veb stranicu u ovom pregledaču za sljedeći put kada budem komentarisao/komentarisala." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Neobavezno" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Web sajt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Odustani" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "komentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Odgovori" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Odjavi se" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Započnite" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Umanjena slika" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Naslov" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Da" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ne" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1300,8 +632,6 @@ msgid "Edit" msgstr "Uredi" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1429,31 +759,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Izuzmi:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1471,24 +801,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Zatvori" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1625,47 +945,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1682,19 +1002,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1704,8 +1019,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1782,10 +1097,6 @@ msgstr "Sačuvaj" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1899,8 +1210,7 @@ msgstr "" msgid "Email" msgstr "Email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Ime" @@ -1914,27 +1224,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Broj komentara za prikaz:" @@ -1956,37 +1266,37 @@ msgid "Recent Comments" msgstr "Skorašnji komentari" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2020,62 +1330,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centrirano" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Desno" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Lijevo" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Nema" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2092,7 +1402,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2104,28 +1414,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Naslov:" @@ -2141,12 +1451,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-mhr.mo b/projects/plugins/wpcomsh/languages/wpcomsh-mhr.mo index 5203b82a9558362dbc2946569039b3be4c56cbdf..182b3b98862cf590910417005ba55ccb0161e97f 100644 GIT binary patch delta 991 zcmYk)J!q3b9LMpC<~`b)w2f_jY1AfK1()K>AilH_mqJUsDJVgnq>&^A8x`pgP;pTN zx$2+@RxF4Wd?^l6bSX}PeFT>x6kHvg93A}rk}G)Rp3mKLm;3+k?)i~^nQW}3f)5NO zOWjV*2aGv{l?^;7CpQ{1gr_iuw=jbDFpLkKPu%m z)E}2onSRAR_!Iju#OmFcMFl>NT{woCUqmH(9kqemu0Mqno-EW#p2>T~!j($h{tZ^zighzmp5`%C z%9Lw%HncxC?p(E!CG& zB9N3nLc}PbNC^ocnzV%?wB>j*KA7k%JQ!o5K4_vb8e`&%35nnD?zWslob2ppe>1sK|CUza1BVijUdlAgDlC*;7ru$6_9pzLg^v!4e$xD z52PPwLB=tZ$X|jpA%6?b0)J1|r{I#uAkPGOt^(x#a_|Lk6F4921gC>1!H2=~AoWY& zli(NNa_|>$1~?B+KL9QTd44U3Es;yscY@4MPr^Qs_q_`uG;t>3`GkYuQ&_(Y&IZ2* z>Gz-D0x*Tkn1`hx@2$s+@oom61=|vNFZeX%_rb@(D7L6d|Y5`G}XpMDx4wHjEaUk8%pwEnBd@RAoBbW=51>ViUUg2+Y9))Dk zZ^lADm{X2Ln9MU{7$26jg+XDybUmI@p*uY9#|vf~=@8L`H3o$kC_^u?NDkaIm>)R|63*$Jel3U;@s zQ%;~fQI|8F4khZ`d>#v;-t=~edev?gZ3vd1w|rkTWUU~2$$|-8in8GPSj(H1EgE)Z z>|$1>MWdBfqS4Ls)g|+$(=Dw)<$c-Z7VWI;c8k)sb|@LRGHdw-+w5K~Hso=oFPcmb zH#aG>Q%O^15^tJRdmx&ujvU{x*W`9c%ZcC?1F;FAi%l*b2Q22>lqcQx@zXx-_&K*L zEjAYd%XLg!G~2}v%kf2v${<>qL`|6~X^AXtfe(T&8Ry0qTT~EOP6s{^j%>98TZvY) zL)O`DG0QI>uU)R==DX9PH3vr=<|R?2dRlBPWX(W{ZK}=3C1RWFWt%;PAogOhQyh$}5uv{^w4x$#WfSm%0q zKP{a?B>JmrR?7Hul_Te^lGQ6yFB$8VqdYTky|i3!yFnDllA6le$|}RO3pq2@gr+K@ zuxXjkd9Su?O*MP&>nal%8?v{YpU6Qa>Mac!Ww%k;1?8p0c*6_*w!W%Mn3we!zl1)m zhr^z*FWisiPxXMIhxDi(&?7>B81_PG7-|FM!sW0xJRo%myF)nJEA%NG9l-^|dQ|A6 zdLZ17y#YPScer2Z5$un}S4B%buzp48{_sfT#6WmBxcjrWE$jQQm(dHW~I|qfd`X?A%fBC_`kZ|Eu+hp|9cgeY7F;d*N>QKN=o_Q&Hq; zq0iy`L~#8#2Ctuuqvh2yb_zLyH_R@B9}N$XGCYXg;fYL?^iZ6~k{*Q51NssIL2_3k zY<&e6Tq~=_k@%jdPDtKyh_~f5iYu~+EHN|Zc!=dY9oH&y4%t3&V~}2iJxF}GhqmK9 z4o9ht1*!;r2GT7HU_V2$p(B4=XLHF?2#*i+DhmoR_%m5|}eTdG$ eX1Ref0orHKF=K3b27H@uW&eA+AD3J}rTzgZj_f4> diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-mhr.po b/projects/plugins/wpcomsh/languages/wpcomsh-mhr.po index 693f383b48f5d..2f4fe78297c33 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-mhr.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-mhr.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Плагины-влак" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Тёмная" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Светлая" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Параметры" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Отменить ответ" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Комментарийым кодаш" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Дополнительно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Вотлаштык" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Отмена" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "комментарий" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Вашешташ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Лекташ" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Миниатюра" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Вуймут" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Туге" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Уке" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Редакторлаш" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Исключить:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Отмена" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Сохранить" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "Э-почто" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Лӱм" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Комментарий чот:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Пытартыш коммент-влак" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Лӱмер" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Покшел" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Пурла" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Шола" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Уке" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Вуймут:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-mk_MK.mo b/projects/plugins/wpcomsh/languages/wpcomsh-mk_MK.mo index 35afbb5d75a3e61f3e0f345cb517d052d8cbb626..891ee7e79bca1405bfc5b8b3be8daa7341f0bcfc 100644 GIT binary patch delta 1768 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 gxwCY+yMy5}NSL^Ay(iO1`fmYXATM diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-mk_MK.po b/projects/plugins/wpcomsh/languages/wpcomsh-mk_MK.po index e0c922ae0a5ea..4f805ec698900 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-mk_MK.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-mk_MK.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Маркетинг" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Извинете, не ви е дозволен пристап до оваа страна." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Додатоци" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Темно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Светла" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Преглед" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Подесувања" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "е-маил" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Сите сајтови" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Грешка: Вашата Facebook најава истече." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Откажи одговор" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Напиши одговор на %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Напиши коментар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Зачувај го моето име, е-маил и веб страна во овој пребарувач за следниот пат кога ќе коментирам." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Претплати се" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "повеќе" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Опционално" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Веб страница" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Откажи" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Неделно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Коментар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Одговори" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Дневно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Инстантно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Одјави ме" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Започни" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Одберете тема" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Додај нова страница" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Сликичка" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Именувајте го вашиот блог" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Наслов" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Да" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Не" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Уреди" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Отфрли:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Отфрли" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Фотографија" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Зачувај" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Телефон" msgid "Email" msgstr "Е-пошта" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Име" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(најмногу 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Број на коментари за приказ." @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Скорешни коментари" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "на" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Листа" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Прикажи како:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Средина" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Десно" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Лево" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Нема" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "Тазе написи" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Наслов:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ml_IN.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ml_IN.mo index 319dedf9804c1e24ddaa5cb5d30573b3d76ff02f..b803a30d0cebcb4f2d089a30f5f0ae325d88e75a 100644 GIT binary patch delta 1596 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ml_IN.po b/projects/plugins/wpcomsh/languages/wpcomsh-ml_IN.po index cdcb4c28864c0..e643ac8b3ee76 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-ml_IN.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-ml_IN.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "ക്ഷമിക്കണം, നിങ്ങളെ ഈ താള്‍ പരിശോധിക്കാന്‍ അനുവദിച്ചിട്ടില്ല." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "പ്ലഗിൻസ്" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "ഇരുണ്ടനിറം" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "ലളിതമായ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "അവലോകനം" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "ക്രമീകരണങ്ങൾ " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "ഡൊമൈനുകള്‍" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "മുഴുവന്‍ സൈറ്റുകളും" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "മറുപടി റദ്ദാക്കുക" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "ഒരു അഭിപ്രായം ഇടൂ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "അടുത്ത തവണ ഞാൻ അഭിപ്രായപ്പെടുമ്പോൾ ഈ ബ്രൗസറിൽ എന്റെ പേര്, ഇമെയിൽ, വെബ്സൈറ്റ് എന്നിവ സംരക്ഷിക്കുക." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "തുടര്‍ന്ന് വായിക്കൂ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "ഇച്ഛാനുസൃതമായ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "വെബ്‌സൈറ്റ്" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "വേണ്ടെന്നു വയ്ക്കുക" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "വേർഡ്പ്രസ്സ്" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "അഭിപ്രായം" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "മറുപടി" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "ലോഗ് ഔട്ട്‌ " - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "തുടങ്ങി" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "പുതിയ താള്‍ ചേര്‍ക്കുക" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "ചിത്രത്തിന്റെ ചെറുരൂപം" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "നിങ്ങളുടെ ബ്ലോഗിന് ഒരു പേരിടുക" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "തലക്കെട്ട്‌" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "അതെ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "ഇല്ല" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "മാറ്റം വരുത്തുക " #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "ഒഴിവാക്കുക:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "പിരിച്ചു വിടുക" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "സൂക്ഷിച്ചുവയ്ക്കൂ" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "ഫോണ്‍" msgid "Email" msgstr "ഇ-മെയ്ല്‍" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "പേര്" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(പരമാവധി 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "കാണിക്കേണ്ട അഭിപ്രായങ്ങളുടെ എണ്ണം:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "പുതിയ അഭിപ്രായങ്ങള്‍" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "ഗ്രിഡ്" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "പട്ടിക" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "നടുക്ക്" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "വലത്" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "ഇടത്" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "ഒന്നുമില്ല" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "തലക്കെട്ട്:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-mn.mo b/projects/plugins/wpcomsh/languages/wpcomsh-mn.mo index 60f80290699f5b4bb4972c90abefe40c246d165e..43a553fdfd92c61f58f106e194fd315e4822bc48 100644 GIT binary patch delta 2011 zcmX}te@spagr=lMS8 zd!7r+O>b94mihO#B8l(GRFZ^PWq%n*JS3!C%mi z_fYpGF{tqz4!XbC>zBp*5o2n+FY2(03mUwBC$`h?My>d3RH9k0{~g8`w+FJeB| z-9px2en&mvUtT|j)$6`2OeMd`<%FsmM*~>yT~LckT#o^4L@i)HD#1&rCmiv{PogG1 zi%R$&rsF5x_m@%EU-kOmVnhjVdIJl%nf?;;F)4hh3H_*k9(H3XY9Xh*@prubdDMbG z_MAYy^Dj~JUcp_sjC$Y-pNYgzDtYl432YkF3b(QRQrv_4@F-F}a~-qrCNhUvLcQys z(7``Y3(n)QmADACAP2QcE3p{2VlFfL{Z@d;1~ zV#uxL4sOJIs6-`vsmj%0HnySW>GZ~XQ1hHdRW9;ACz|Lp)C5u7j5kmh-bGFLr)Pj! zb=`Jk$n3>Rd=XWNG1TU~gj(1Q)OEjM0p7>em{0a+$ZtwGQHhVBo_rK@@El&ii>QQ+ zYgbCQ8`VF6s@xG&g4a+B9>)Xt0ltoRktxhkCe`;RFah<`Od@~0X~lYfTZw8yB`+b= zHW9i}O@HyIbi6(0sr^#xoeS*?Ra8xtQ}RZliqHe9JxR3bMEUi!Dv8=QLS@t|Xd=|~ zQ&D@I*b_fndGej!c>_L8s4D+8m0DF*qs;#|ZQ^=DKj%k@`19-iskIP=#BQR7(8f_| zw-bqkS~Kwk!D}=QpXfV|696IhiA0F&(9}Eo* z)gBJ_n|-0fp@Cs%XSlx~hiqC#O+vT*G^5I`N;YQtS?kvvOlWX6#2Xlh9Ew?>7otv0YsSMBxk87wCu%1=c6n+eQEU3%mLQ^8f$< literal 7646 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Маркетинг" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Уучлаарай, та энэ хуудсанд хандах эрхгүй." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Нэмэлт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Өнгөний Хослол" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Бараан" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Цайвар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Дэлгүүрээ нээх" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Ерөнхий" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Тохиргоо" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Худалдан Авалт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Имэйлүүд" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Домэйнууд" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Багцууд" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Бүх Сайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Хариулт болиулах" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Сэтгэгдэл бичих" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Save my name, email, and website in this browser for the next time I comment." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Бүртгүүлэх" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Үргэлжлүүлж унших" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Сонгомол" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Вэб сайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Цуцлах" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Шинэ сэтгэгдлүүдийг имэйлээр явуулаарай" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Шинэ нийтлэл гарвал над руу имэйлдэх" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Шинэ нийтлэл гарвал сонордуулга авах" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Долоо хоног бүр" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Сэтгэгдэл" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Хариулах" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Өдөр бүр" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Тэр Дороо" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Гарах" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Эхэлцгээя" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Вэб сайтын бүтцийн тохиргоо" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Шинэ хуудас нэмнэ үү" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Сайт руугаа уншигчдыг татаарай" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Өнгөц зураг" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Багц Ахиулах" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Өөрийн сайтыг тохируулах" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Гарчиг" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Тийм" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Үгүй" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Засах" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Миний Гэр" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Үсгийн дээд хувь хэмжээ:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Орхих:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Арилгах" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "WordPress.com -г Ашиглав" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Хадгалах" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Утас" msgid "Email" msgstr "Имэйл" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Нэр" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Аватаргүй" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(ихдээ 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Харуулах сэтгэгдлийн тоо:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Саяханы сэтгэгдэл" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "дээр" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Тор" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Жагсаалт" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Төв" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Баруун" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Зүүн" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "байхгүй" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "Граватар" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "Саяхан Нийтэлсэн" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Бүх зохиогчдыг харуулах (нийтлэл бичээгүйг оролцуулан)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Гарчиг:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-mr.mo b/projects/plugins/wpcomsh/languages/wpcomsh-mr.mo index 4adb8196e0a247a8c1e975199f1f72941e85aa45..fa099143934ac94a5af63c5be2bdd4b92ce191a3 100644 GIT binary patch delta 1690 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "क्षमस्व, आपल्याला या पेजवर प्रवेश करण्यास परवानगी नाही." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "प्लगिन्स" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "रंग-संगती " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "गडद" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "उजळ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "आढावा" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "सेटिंग्स" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "ई-मेल" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "डोमेन्स" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "सर्व साइटस्" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "उत्तर रद्द करा." - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "प्रतिक्रिया लिहा" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "पुढील वेळेच्या माझ्या टिप्पणी साठी माझे नाव, ईमेल आणि संकेतस्थळ ह्या ब्राउझरमध्ये जतन करा." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "देणगी घ्या (सबस्क्राइब करा)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "वाचन चालू ठेवा" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "पर्यायी" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "वेबसाईट" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "रद्द करा " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "वर्डप्रेस" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "टिप्पणी" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "उत्तर" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "लॉग आऊट" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "सुरु करूया" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "साइट सेटअप" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "एक नवीन पृष्ठ जोडा" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "थम्बनेल" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "शीर्षक" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "होय" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "नाही" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "संपादन" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "वगळा:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "घालवा" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "जतन करा" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "फोन" msgid "Email" msgstr "ईमेल" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "नाव" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "अवतारचा बॅकग्राउंड रंग: " -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "दर्शविण्यासाठी टिप्पण्या संख्या:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "अलीकडील टिप्पण्या" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "ग्रीड" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "सूची " -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "अवतार मांडणी:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "सेंटर" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "उजवा" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "डावं" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "नाही" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "अवतार" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "शीर्षक:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-mrj.po b/projects/plugins/wpcomsh/languages/wpcomsh-mrj.po index 044f123bdd1b3..09821031224aa 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-mrj.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-mrj.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ms_MY.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ms_MY.mo index b5d00fb9037ee0259500206ffa9cb3ce707a24fd..9017d729cd03fec39ea36aa64754fd114aa0a975 100644 GIT binary patch delta 1991 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Maaf, anda tidak dibenarkan mencapai halaman ini." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Pemalam" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Skema warna" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Gelap" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Cerah" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Gambaran Keseluruhan" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "wordpress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Tetapan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Emel" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domain" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Semua Laman" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Batal balasan" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Tinggalkan Jawapan kepada %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Tinggalkan komen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Simpan nama, emel, dan laman web saya dalam pelayar ini apabila saya mengulas pada masa hadapan." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Langgan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Masukkan alamat email anda" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Terus membaca" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Pilihan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Laman sesawang" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Batal" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Komen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Balas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Alamat emel tidak ditayangkan umum)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Log keluar" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Mulakan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Pilih tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Imej kecil" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Tajuk" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ya" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Tidak" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "Sunting" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Peratusan maksimum fon:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Peratusan minimum fon:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Kecualikan:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1469,24 +799,14 @@ msgstr "" msgid "Category Cloud" msgstr "Gugusan Kategori" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "OK" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1623,47 +943,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1702,8 +1017,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog di WordPress.com" @@ -1780,10 +1095,6 @@ msgstr "Simpan" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "Telepon" msgid "Email" msgstr "E-mel" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nama" @@ -1912,27 +1222,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Warna latar belakang teks:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Warna latar belakang avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Tiada Avatar" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(maksimum: 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Bilangan komen untuk ditunjukkan:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "Komen Terbaru" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "di" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Grid" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Senarai" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Pamer sebagai:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Pusat" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Kanan" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Kiri" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Tiada" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2090,7 +1400,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2102,28 +1412,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Saiz Avatar (piksel):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Paparkan semua pengarang (termasuk mereka yang tidak pernah menulis sebarang kiriman)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Tajuk:" @@ -2139,12 +1449,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-mwl.mo b/projects/plugins/wpcomsh/languages/wpcomsh-mwl.mo index 52b995ebf74ecfc44d311f51f723432afb0e8ace..58262f080bf7cf5569b8f7ed358d405f2aa3b6f4 100644 GIT binary patch delta 1007 zcmYk)KWGzS7{~Fanly>lL=*os*4Ef+=;EMQk>H}S2wF;Q3Ki7hw5JX961}F2Sc8hA zh@L`S3JzVI3dNxgqLa9YPHy5*bPyZ_L8PGHU-}9@-1~m+eed3TpFDYgW$$L1pR%#X zMigngXhUsg19)Q{9Wk=r>^Ppm6h6W&IFFsUh%tPN+wdK>fdWjjT_ZpSR2f8GF#4h}dJ-CYcUKd@S{jHZ9 zO&q0DsmiE@r`>oAH#0tu`egy;aMnG4;CzBw_Y~Q~o*}u|A}Z16$YsmUSJ>2oH{5K; z_wK=0=XcabKb5^AGC-fm2e|X71>Ht^wRidD|S1TkgA{!b+C0f|HV#j(zL8q*8ZD43{+Z$ zPPY!q|Dj()5p0K>RQ5%8U%Q|1%MBZ$Hc_eC)p}@u0ZU?MqyPW_ literal 2424 zcmZ9MO^6&t6vv;M7&CsX#zc)qtr(5@*xt;p34~b}oXk$LfladRO#DQ!rn`2gOm|hM zx_Xmc@E`~Q5%r>Y)Qia>qLPyrQ3n*kiw92;K}0+z2SE`L|8J%;No?x9-@NMTSFhfC zH9v1y^Dg0;f^31Dzk#R$K6w)qp1Czd2f)MNdhku~F7Q3@KJXlfL0>^_0>1%o27dx? z1Ah(n<-k9|J2C$+h(Tj(iPnJ|LAJMmywBFa-5>_-gW~toflq;Bu$#d?4r0&?!G0NJ zzbe=ncq42V>=NWSSHWAr*FX$<1B(5=6YLKHKLUCG^B|w=Gw^os3y{D69>ky@p*a4F zfxm(L-6ar%{s{aV@CB2xLDqI2`ZW03QJ7!H2*e zh$VCe+zh@2V$eA#uG^;|zyCVSe+Tk;e*oFnLb1OW17%&8I#zYXL#CO|&N6Ckgj2Dz_iK@55+unTe>PJ$e_2T=~% z1>uK#pZ#C^a2!`2&K=*e-4Mq)5UyMU=q`?{QxMsnl_`My%HQ>BG40#-KFXUFp z9tigt)ssXRbxIUvr%+z(=sKlNjEi{1=`_{xxJcBpG_ot59v916c_TAbsGVz!jfUS) z-B`1d*|MPevh>o4mR?n2M}B%|?aE9?#wWVYmL?IgO|7fZfz);fN=PrBwJuq3swgI6 zn^8lWSfv5NsXSewhB96`YV@S(Dr#8cwJ8-|%0!zk%}RHIX4R4`Q%}uA50%Iz7PBdG zTVO7eI;AN2%itgO5|r-tSY!RX?Fw6ZI*KFHQHx=iE|V!8%e}S+ zKNfmCyQpG#5RIXy0yamzIPlfNF2qU%ep|o(JWTf#8h=^ zZ&ckERribPRBf_ao1ENT#Zx(Q_((H)Mmb(v6O$9w3g;R}i`pwWKJ@Ce-;<|On`sgE zq(jfl9B&_t_FrA+q$!q^i<&03T%4NN-_gFZkd{uS(LtoIs0ot~%wlG0S`2^A7_oIm zOiovxiw-HHob+fDaVWKZ&>4HCCiYHLBbnwsS(!%{l&Eb@WT(=~g0ruv*hhzxtC5d# zz#Szbw4_&JPNlhW6-p%%kGAb!FgmkHZYE97qSHkx8q&$k8XNle=~AIx`PGs&Nmvty zHN!40)u4~jjfNduw=?z6EXh@F+(A#{ZlEzr^r9Sew6kd1tV|>pl-$x-AVu242d%io z+hb*>i^3XeYIHG{1&W3Khq{aPqlvolP9~C$ScYioRC&h-j3xUr34GSGT=mcLp87O) zDh+o&YAZFiYMm^#a_}(UEBj{$7XV+%R6Ddh_kaHaE`sTmW^@J0JRaNuL2Z?4B#7@p zA`=CF1>c3>o3BHW4`Y~h3J0M>PIhpdAw)gJ<(3G|pkc!tZnH8v%w1=Mdht!cMNu7& zu%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Scuro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Lhuç" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Defeniçones" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cancelar Repuosta" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Deixar un comentairo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Suscrebir" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Cuntinar a lher" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Oupcional " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Çfazer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Respunder" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Salir" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Títalo" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Si" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nó" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Eiditar" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blogue ne l WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Grabar" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Telifone" msgid "Email" msgstr "Morada Eiletrónica" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nome" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Quelor de fondo de l caramono:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Redadeiros Comentairos" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Tamanho:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centro" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Dreita" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Squierda" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Nanhun" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Tamanho de l Caramono (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Títalo:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-my_MM.mo b/projects/plugins/wpcomsh/languages/wpcomsh-my_MM.mo index dbe1143095a6b1aa96f55433426bd5ff7a5700d0..0fb5352df53eacef0948f95f4d114e648514a481 100644 GIT binary patch delta 1216 zcmY+@TS(JU9KiA4ylm6v=A4z6Y%}w&g;bQmDAXY6q6R%hp~<{JD(UJWqFGSXQ^iRT z=`AS|e6R_L;6qdt^-{hFJtRWVlSD!JV2-}O?I?8kpYu7F|IX!i{#&b!m&U&4WsC}G zFL?*~kwc^zJ?Rvrf((%$7Ge`NVisPV)&CCwq_j{(@~UB9AQF_IKO{ z@MqyMY(ziT5W~x~9}-VpD4lp|$aAoP@iNp6o@KBYFJcYeuL&vE%PhH@1j1_ziV_ADvZL zh27ZhA^u@1vvhD+`Gb1Gb!^2zj>vB8!UnvH`*9BSWIs?hQt3^Nx1zp(6ZK<$iW-^M zxD%JK9uuhR)cJ`2H7ZS9>~EY$A}axM8F?Eym#nES#b&7s>FM?4nh26qko6;D|B_GE z#r0}6vDf5x5<;#%xxp&Ee@!JRl7BU=){@!eX3|}6r0rCy$wlNs+o`8x@BbyDo(z9E z>c5%KC3$K{UgsVx(Rwxb}q>G<~ng{#)aoD_Zh0Kbp$avl1_<47BT6`?~ zxWklts?D^g)+9V@@nWyj;Tl^W8DAcmGc&#lv*KGa5&u#1!T%s5+SwB_)42s^BJWf@ NHxPEjujb!&`~%IZhDZPa delta 2477 zcmZ9Me`u9e7{|}-ZgbmpHq+cn-Rn%v)cGULeyFL}73jp}00F!`}NmIs3-|4ilofUOB$JRg)R)d)|(74RIaf@3QzC&6*}cS3$@DX%1K zasE2T4KBVBR?^=C*`la=U0}Q8^R`3nhO*IK$3u|4)iF2{z6Zy^lduL3LD789@q5Rg z;SA!xLVl{6-DRCRSi$~kJdM!=Cc#@^Gn9o^KpFV3^VdLGU>)SAHn?~iR^xX6MO>Bfoa$R_rba{rG9{0@c(46 zjDH+8bDw73zKiP5tH+(#N?4nBNvq8Hs>}j8kguEnaz6bna~fSXA@1U(zy;lt5ODD z!QY(Src!<`^b0E0oz8XnDwWUX3toFix8Ea9PY=CnWxDXRTIqMDd$Ty1peGXq(TT*8 zYCrUXFkJ}!P0^)9+p_dl-%EQPZdR*reY1@h=Dn$bYV|uq)tc$*mUqA_-{oa;2KnAF zT2;Pq&f3jkCZ9`Z)!MCoVQa>JMzv*oyE3^zt@Arj<2hC0qd$7N+^h7%Fq7*FqW!$yp>DRPXtciXS>;0xzU4zcV^j(^Sb^YNVsDYc3W| zC8!|*(J`zrlCyEy)~b+oOk`(iRzGVZ0C^nvM`kD6I9iI38EtzKjN~q8R$&?;q&3(c zbXt+uuS;|)xx9&9)*ha>J#JQ|>$p_^ax$tid&s#&=aN$sVY%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "ပလပ်အင်များ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "အရောင်တွဲစပ်မှု" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "အ‌မှောင်" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "အလင်း" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "နေဝင်ချိန်" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "ခြုံငုံသုံးသပ်ချက်" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "သတ်မှတ်ချက်များ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "ဆိုဒ်များအားလုံး" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "ပြန်စာ ပယ်ဖျက်ပါ" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr " %s ကိုြပန်စာထားခဲ့ပါ။" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "မှတ်ချက်တစ်ခု ပေးခဲ့ပါ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "​ရွေး​ချယ်​နိုင်​စ​ရာ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "ဝက်ဘ်ဆိုဒ်" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "ပယ်ဖျက်" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "မှတ်​ချက်" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "ပြန်စာရေးပါ။" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "ထွက်ပါ" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "စတင်လိုက်ပါ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "လက်မအရွယ် " -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "ခေါင်းစဉ်" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "လုပ်ပါ။" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "မလုပ်ပါ။" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "ပြုပြင်ပါ" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "ချန်ထားခဲ့ပါ - " -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "ဖယ်ထုတ်မည်။" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "WordPress.com မှ ဘလော့ဂ်" @@ -1781,10 +1096,6 @@ msgstr "သိမ်းပါ" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "အီးမေးလ်" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "အမည်" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "ဖော်ပြထားမည့် မှတ်ချက်များအရေအတွက်-:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "လတ်တ‌လော မှတ်ချက်များ" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "ဇယားကွက်" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "စာရင်း" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "ဗဟို" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "ညာ" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "ဘယ်" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "တစ်ခုမျှ မရွေး" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "ခေါင်းစဉ် - " @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ne_NP.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ne_NP.mo index cec2b2e2c738642af286ffec08cd44b8381f4b87..951eb354369fd8782c29803e49ec0c66885c5fab 100644 GIT binary patch delta 1529 zcmX}sS!_&E9LMo9Rb5TnsZm=?ZPk{l)><0D)RqvU@n)Oqw1dt}=rj!x6M_&t$gxBu zo_G<`#H3yR7uIrrRi&vvJ`?s!G&WpU;SLuw>S ziJv}Wn(@T|GE(J0V@6{YF2rS6fJZPF&tNv5$4tD0dh{}8;T7j~97OpRs{KQxeabxJ zLLI$yzDIuMGg%IP!(#N&o9ct87mYyOAMMJO&Kj(uzTTDBB0m!*)ALbRj$EZImrkA-*>^@4|}0X{{|_=T(gfNJ;2mH%KK?>7Tk z4?S3fwOE2$k;SNvR=M&TY^A&b)&7>Nzvs%2kv`3H=Nr^kyhruhhl{Y3Wz&ROFco0G zBV6pKqMNsB#=me9=1>@n({TtcMa^hEmf=>^Ko6l-!s1-)!SVPJ^;}WDF%z%?b$>ak zpM&|Ve+3sOs91p4P!Ie@Eme?K>Ucbk!TG2cwqOT#pdX*%Fnovnyh=Uq=cX(})z_c~ zG6&VqMnCI6oQo~4!9E;E`50;-y|@nV<1DP==&Qpps-tbV1W%z>>J`qzFIa;0G*-K1 zr~xFf8+W0;wy!BJH1a@E|3IqI$CfmqMz}c8Kaf?Zub>U}q8+FK9YyW=ZPY*?;1jH- zvG>)`nC|{3O-}Vn+CrT_Zv`}4C3RluUG-;7+?z2w;vG8r_hvS!|F$;^9kOzwiWosm zChCa>Vk|L*P}1K2OWM|;d%v0KYB?|7GHI__0B;4fI{%Vps#HTvB{;X6;oKkTSl*Bfdv#EQ4f@yE zJN_2CqF_RLZ$YLneX%gt=fC*++>O`gdc1s(%?`}8n*w+3&f?kjZSihf7YwFbgO4)O J(V;7Re*v>*rLX`1 delta 2717 zcmZvcYiv|S6o99dEoJEz3Q}67auvY>mGVYjqPFrZlvpAd1ifu<+YS3Ddlw2MrW9;| z5Dekc8XgH2?h*n78=7j14}M69@ex4->K}3wqYy+*;7?;9@jG{?sL{!u`^}j-bIzGF zGkb7c_mt)v!v?e|S|u_HIhd)`2AC7zL+i;>YBcPHx$sB$61=7Li361ygg!^J9P(2u z_zZxr!bjj*$P)Di%z<@jy;<3MVw;|5f&A1ve8fS!){khO(Bo&I1n$(l043*3FdKdW zhr#dk_%CoU`W+~K`(U@f|RTz6)j&UmegBZBP~*hL6Jz$WMKuc^QhMZ=eMJ9!f$tHGhMW$UP_} z?t{x=fHH|)6=X=g24#IUY?g@x9m!}56n!Twg?k`B)yqd5f2Q@%VJ-T%Q0!;1n68=+ zMPCGEBg-{cK}mcq6uTNIcOn|3{t{>-124l4$o*3{VP1w(w_z*#eGcw9xPxsmq&|WZ z;bkb7^DZ0?hlP|H0mngx)I3-Om%w6J4`;yrP!hQuqW)6qD-6tqcc3^Z=BkT>=i$?E z8I+PWLYdzV$HI0f>pq5J-v`IR0LCxE5-9dDDE4nde(E$IiF=`$&XaVmL&>NQMquVp zrN~9aVF7##N`Q8Vi8=wN!!E7g((Hp`mz|dmI6`wS6#phHgd3pPHMi0kL+1dLOh16@ z;8#$d&jdbC!1+)zejUz&Ti{gK2_>PQpzQD-Tm%a_kFTK#&!bnveB!GP zIk;$@~z^;BIt5*- zb*^L;tudlojhGp=N(?J%h9f108LKs#tZJK0;-A#Rwo#pkH`!LgsEa3LFH~ep(nyA* zma(Kize%c!d}~#el}v_X^|teS)}MK+(|*+Ic%pV?!m{nIn*;MR$9V23&wbx>KlR)e z!*fr2shyttp_kg{x$mK;7;;*2^PLBSW*7B%?pZIjn_+q^*zLK;Jh#_#JH1qkGcC9# z*y*_^{k12ZtHDBNeNNWMqn_LCTc2Uwf9IXO!D{DjXn06@?z_I-alX#&U~#D3SMj~e zbB}fn89Xo}*h3&4?rLyUSANc*3|Sn+^${<%*K<2awxH;&zf$iC$E0}PPpeIQmxN{p z(-w?hbQXqwUbf$J5Bmm381dXT*04o-JN(7$l|A5s2)H=KG=-u>=l!Iyqlo==D9)Wb z`Cpqp<7bSuMEBf1VlCU~_5HD>eTMU9Zc92Xh)RbEqT+{Y zT}0tTa7|&;u8B;S_{ xxz3H;k)udcM*X53@%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "माफ गर्नुहोला, तपाईलाई यो पृष्ठको पहुँच छैन ।" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "प्लगिनहरु" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "गाढा" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "हल्का" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "सिंहावलोकन" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "सेटिङ्गहरु" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "सबै साईटहरु" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "जवाफ रद्द गर्नुहोस्" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "टिप्पणी छोड्नुहोस्" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "अर्को पटकको टिप्पणीको लागि ब्राउजरमा मेरो नाम, इमेल र वेबसाइट बचत गर्नुहोस् ।" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "ऐच्छिक" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "वेबसाइट" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "रद्द गर्नुहोस्" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "वर्डप्रेस" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "टिप्पणी" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "जवाफ फर्काउनुहोस् " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "बाहिर जानहोस्" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "सुरु गर्नुहोस" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "नयाँ पृष्ठ थप्नुहोस्" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "थम्बनेल" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "शीर्षक" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "हो" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "होइन" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "सम्पादन" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "निकाल्नुहोस् :" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "खारेज" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "बचत गर्नुहोस्" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "इमेल" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "नाम" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "देखाउनुपर्ने टिप्पणीहरुको संख्या:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "हालैका प्रतिकृयाहरु" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "ग्रिड" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "सूची" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "बीच" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "दायाँ" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "बायाँ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "कुनै पनि होइन" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "शीर्षक:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-nl_NL.mo b/projects/plugins/wpcomsh/languages/wpcomsh-nl_NL.mo index ae12f72ccf5bd4650f2f6fe6230caec98bb85fc8..932d68d0d7cd1e46446239431e23d03b0fb0e7b2 100644 GIT binary patch delta 8694 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 J?(E>k{|Afd!$$xB diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-nl_NL.po b/projects/plugins/wpcomsh/languages/wpcomsh-nl_NL.po index ed8bdc0f2f977..d1a917b5ed2f3 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-nl_NL.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-nl_NL.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "%1$s op %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Je kan je Gravatar aanpassen op je profielpagina." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Je hebt geen toestemming om deze pagina te bekijken." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugins" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Gebruik het oude dashboard van WordPress.com om je site te beheren." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Standaardstijl" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Gebruik WP-Admin om je site te beheren." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Klassieke stijl" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Stijl van beheerdersinterface" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Bekijk plugins" @@ -72,424 +42,10 @@ msgstr "Toegang tot een breed aanbod gratis en betaalde plugins die de functies msgid "Flex your site's features with plugins" msgstr "Breid het functieaanbod van je site uit met plugins" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Thema galerij" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Thema's verkennen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Duik in de wereld van WordPress.com-thema's. Ontdek de responsieve en prachtige ontwerpen die je site tot leven brengen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Vind het perfecte thema voor je site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Een paar pakkende worden om het commentaar van je lezers te motiveren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Blokken inschakelen in reacties" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Laat bezoekers gebruikmaken van een WordPress.com-, of Facebook-account om te reageren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Pas je Commentaar-formulier aan met een leuke groet en kleurschema." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Kleurenschema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Begroetingstekst" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Blokken toestaan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Donker" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Licht " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparant" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Lanceer je winkel" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Een domein toevoegen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Laat je bedrijf groeien" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Btw innen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Krijg betaald met WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Je producten toevoegen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Je winkel aanpassen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Zonsondergang" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Poedersneeuw" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Zonsondergang" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Contrast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Klassiek donker" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Classic Bright" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Classic Blue" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Oceaan" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Overzicht" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Deel '%s' via Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Om toegang te krijgen tot instellingen voor abonnementen, domeinen, e-mails enz., klik je op 'Hosting' in de zijbalk." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Instellingen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Geld verdienen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Monitoring" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Configuratie" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Aankopen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-mails" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domeinen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Add-ons" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Abonnementen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Hosting" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Alle sites" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Fout: probeer nogmaals te reageren." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Fout: je Facebooklogin is verlopen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Annuleer Reactie" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Geef een reactie op %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Geef een reactie" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Mijn naam, e-mailadres en website bewaren in deze browser voor de volgende keer wanneer ik een reactie plaats." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Reactie verzonden" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Abonneer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Voer je e-mailadres in" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Heb je interesse in updates voor blogberichten? Klik simpelweg op de onderstaande knop om op de hoogte te blijven!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Mis nooit een slag!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Lees verder" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Abonneer je nu om meer te lezen en toegang te krijgen tot het volledige archief." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "Ontdek meer van %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Je reactie laden …" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "We houden je op de hoogte!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Optioneel" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Schrijf een reactie..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Annuleren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "E-mails voor nieuwe reacties" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "E-mail me nieuwe berichten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Breng me op de hoogte van nieuwe berichten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Wekelijks" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Reactie" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Beantwoorden" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Dagelijks" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Direct" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Adres wordt niet getoond)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Uitloggen" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Ingelogd via %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Log in om een opmerking te plaatsen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Log in om een reactie achter te laten." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Laat een reactie achter. (inloggen optioneel)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Laat een reactie achter. (inloggen optioneel)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Website (optioneel)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "E-mail (adres wordt niet getoond)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Ontvang web- en mobiele meldingen voor berichten op deze site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Log in of geef je naam en e-mailadres op om een reactie achter te laten." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Log in of geef je naam en e-mailadres op om een reactie achter te laten." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Laat een reactie achter..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Aan de slag" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Gebruik de begeleide importer van WordPress.com om berichten en reacties te importeren van o.a. Medium, Substack, Squarespace, en Wix." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Ga naar %1$sJetpack-instellingen%2$s voor meer schrijfinstellingen van Jetpack." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Geplande updates" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Verifieer het e-mailadres voor je domeinen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Siteconfiguratie" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Voltooi de Sensei-installatie" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Voltooi de winkelconfiguratie" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Pas het ontwerp van je site aan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Berichten delen inschakelen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "De mobiele app installeren" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "Geen bestanden hersteld." @@ -563,134 +119,6 @@ msgstr "Er wordt al een import uitgevoerd." msgid "The backup import has been cancelled." msgstr "De back-upimport is geannuleerd." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Volgende stappen voor je site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Voeg het blok Abonneren toe aan je site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Bestaande abonnees importeren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Sitestatistieken bekijken" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "SSH instellen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Een aangepaste plugin installeren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Kies een thema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Stel een aanbieding in voor je fans" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Koppel een Stripe-account om betalingen te ontvangen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Voeg je Over ons-pagina toe" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Beheer je betaalde nieuwsbrievenabonnement" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Koppel je social media-accounts" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Je abonnees beheren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Schrijf 3 berichten" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Krijg je eerste 10 abonnees" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Abonneerscherm inschakelen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Welkomstbericht aanpassen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Verdien geld met je nieuwsbrief" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Maak je Over pagina " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Content migreren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "E-mailadres verifiëren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Voorkomt het aanmaken van nieuwe en bewerken van bestaande berichten en pagina’s, en sluit reacties voor de hele site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Activeer vergrendelde modus" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Vergrendelde modus" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Om eigenaar te worden van de site, moet de persoon die je aanwijst contact met ons opnemen via %s met een kopie van de overlijdensakte." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Kies iemand die voor je site zorgt als je overlijdt." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Nalatenschapscontact" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Betere eigendomsprotocollen" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "De ‘Iedereen mag registreren’-optie is momenteel actief. De huidige standaardrol is %1$s. %4$s Overweeg deze optie uit te schakelen als open registratie niet nodig is." @@ -720,149 +148,37 @@ msgstr "Bestanden bestaan niet" msgid "Could not determine importer type." msgstr "Kon type importeur niet bepalen" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Je site delen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Een pagina bewerken" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Je site bevat premium stijlen. Upgrade nu om ze te publiceren en vele andere functies te ontgrendelen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Personaliseer je domein" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Nieuwe pagina toevoegen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Zorg dat mensen je site bezoeken" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Geef je site een naam" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Haal je gratis eenjarige domein op" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Cadeau geven" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Thumbnail" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Deel '%s' via Publicize" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Delen" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Upgrade abonnement" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Maak een betaalde nieuwsbrief" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Betaalmethode instellen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Kies een domein" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Lanceer je blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Site-ontwerp bewerken" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Configureer je site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Geef je blog een naam" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personaliseer je website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Upload je eerste video" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Je videosite instellen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Je site lanceren" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Link toevoegen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personaliseer je Link in bio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Selecteer een ontwerp" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Begin met schrijven" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Schrijf je eerste bericht" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Abonnees toevoegen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Kies een abonnement" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personaliseer je nieuwsbrief" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "Kan klasse %1$s niet laden Voeg het pakket dat het bevat toe met een composer en zorg dat je de Jetpack autoloader vereist" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Tekstdomein-aliassen moeten worden geregistreerd voor de %1$s-haak. Deze kennisgeving werd getriggerd door het %2$s-domein." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "Script \"%s\" is afhankelijk van wp-i18n maar specificeert \"tekstdomein” niet" @@ -1063,27 +379,27 @@ msgstr "Mazzelaar! De ontwerpers van jouw thema's kozen specifieke lettertypen d msgid "Uncheck to disable" msgstr "Haal het vinkje weg om" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "Spotify Feed ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "Apple Podcasts Feed ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titel:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Podcast RSS Feed" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Luister op Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Luister op Apple Podcasts" @@ -1095,98 +411,114 @@ msgstr "Toon informatie over je Podcast en geef je bezoekers de mogelijkheid om msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Selecteer iTunes categorie:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Stel categorie voor podcast in" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Stel podcasttrefwoorden in" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Podcastafbeelding instellen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Wissen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ja" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nee" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Stel podcast als expliciet in" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Podcast copyright instellen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Stel podcastoverzicht in" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Auteur van podcast instellen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Subtitel podcast instellen" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Podcasttitel instellen" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Dit is de URL die je naar iTunes of podcastservice verzendt." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Je podcastfeed: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Selecteer podcastcategorie:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Blogcategorie voor podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Podcast categorie 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Podcastcategorie 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Podcast categorie 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Podcast trefwoorden" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Podcast-afbeelding" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Als grof taalgebruik markeren" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Podcast copyright" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Podcastoverzicht" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Naam van podcasttalent" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Podcast subtitel" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Podcasttitel" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Bewerk" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Mijn startpagina" @@ -1428,31 +758,31 @@ msgstr "Schijfruimte-quota" msgid "Disk space used" msgstr "Schijfruimte gebruikt" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Klik voor meer informatie" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Items in subcategorieën bij bovenliggend totaal rekenen." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Maximum lettertype percentage: " -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Minimum lettertype percentage:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Categorie-ID's, gescheiden door komma's" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Uitsluiten:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Maximaal aantal weer te geven categorieën:" @@ -1470,24 +800,14 @@ msgstr "De categorieën die je het meest gebruikt in cloud-indeling." msgid "Category Cloud" msgstr "Categoriewolk" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack is losgekoppeld en je site is privé. Koppel Jetpack opnieuw om zichtbaarheidsinstellingen van de site te beheren." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Zichtbaarheid bijwerken" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Site lanceren" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Negeren" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Op dit moment gebruik je %1$s van de %2$s uploadlimiet (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Laat je nieuwste Instagram-foto's zien." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografie" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Koptekst" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Naam niet weergeven" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Weergeven in Small" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Weergeven in Medium" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Weergeven in Large" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Weergeven in X-Large" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Jouw about.me URL" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Widgettitel" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "De widget about.me is niet meer beschikbaar na 1 juli 2016. Na deze datum geeft de widget een simpele tekstlink weer naar het about.me-profiel. Verwijder deze widget." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Toon je over.mij profiel met miniatuurweergave" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Kan de aangevraagde gegevens niet ophalen." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Maak een gratis website of blog op WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Maak een gratis website op WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Mogelijk gemaakt door WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog op WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Opslaan" msgid "Activate & Save" msgstr "Activeren en opslaan" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "De zichtbaarheidsinstellingen van je site beheren" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "Deze plugin is geïnstalleerd door WordPress.com en biedt de functies van je abonnement." @@ -1898,8 +1209,7 @@ msgstr "Telefoon" msgid "Email" msgstr "E-mailadres" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Naam" @@ -1913,27 +1223,27 @@ msgstr "Reserveringsverzoek" msgid "Reservations" msgstr "Reserveringen" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Reacties weergeven van:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Tekst achtergrond kleur:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Achtergrondkleur avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Geen avatars" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(maximaal 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Aantal te tonen reacties:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Recente reacties" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Je hebt recentelijk geen berichten geliket. Zodra je dit doet, geeft de widget Berichten die ik like ze weer." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "op" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s op %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Auteurs 'likes' te weergeven:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Raster" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lijst" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Weergeven als" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Aantal weer te geven berichten (1 tot 15):" @@ -2019,62 +1329,62 @@ msgstr "Ik heb gestemd" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Laat je lezers zien dat je gestemd hebt met een 'Ik heb gestemd'-sticker." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Tekst die wordt getoond na de Gravatar. Dit is optioneel en kan je gebruiken om jezelf te beschrijven of om duidelijk te maken waar je blog over gaat. " -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar link. Dit is een optionele URL die wordt gebruikt wanneer men op je Gravatar klikt:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar uitlijning:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Grootte:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Aangepast e-mailadres:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Selecteer een gebruiker of kies 'aangepast' en voer een aangepast e-mailadres in." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Gecentreerd" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Rechts" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Links" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Geen" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra groot (256 pixels)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Groot (128 pixels)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Medium (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Klein (64 pixels)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Voeg een Gravatar afbeelding in" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Kies een afbeelding om in je zijbalk weer te geven:" @@ -2103,28 +1413,28 @@ msgstr "Nieuwe berichten" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Geef een Vers van de pers badge op je zijbalk weer" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Avatar formaat (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Toon alle auteurs (inclusief de auteurs die geen berichten geschreven hebben)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titel:" @@ -2140,12 +1450,12 @@ msgstr "Toon een raster met avatarafbeeldingen van auteurs." msgid "Author Grid" msgstr "Auteur raster" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Privésite" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Deze site is prive." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-nn_NO.mo b/projects/plugins/wpcomsh/languages/wpcomsh-nn_NO.mo index cbda6fb1e389f7075d69e6058eba29b23f122ba1..02d437118af73c981a7a7dba83dc91c4cd77a3f3 100644 GIT binary patch delta 3156 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 UP^6!M*W`NDc^MhEWaNVX2cP@1NdN!< diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-nn_NO.po b/projects/plugins/wpcomsh/languages/wpcomsh-nn_NO.po index 817b560ef77c1..bd6585ee92d1f 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-nn_NO.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-nn_NO.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Du har ikkje tilgang til å redigere denne sida." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Innstikk" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Fargeskjema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Mørk" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Lys" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Legg til eit domene" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Solnedgang" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Oversyn" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Innstillingar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Oppsett" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Kjøp" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Epostar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domene" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Planar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Alle sider" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Avbryt svar" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Legg att svar til %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Kommenter innlegget" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Lagre namnet, eposten og nettsida i denne nettlesaren til neste gong eg kommenterer." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Abonner" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Skriv inn e-postadressa di" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Les meir" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Valfritt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Vevstad" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Avbryt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Kvar veke" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Kommentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Svar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Dagleg" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Logg ut" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Skriv ein Kommentar …" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Kom i gang" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Vel eit tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatyr" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Oppgraderingsplan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Gje namn til bloggen din" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Vel ein plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Tittel" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "Podkast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Vel iTunes-kategori:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Vel podkast-kategori" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Vel podkast-stikkord" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Vel podkast-bilde" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ja" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nei" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Vel podkast-opphavsrettar" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Vel podkast-samandrag" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Vel podkast-namn" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Podkast-kategori 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Podkast-kategori 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Podkast-kategori 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Podkast-bilde" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Podkast-opphavsrettar" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Podkast-samandrag" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Podkast-undertittel" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Podkast-tittel" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Endra" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Eksluder:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "Kategorisky" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Avvis" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "Vis dei siste Instagram-fotoa dine." msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografi" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Overskrift" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Ikkje vis namn" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Vis lite" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Din about.me-nettadresse" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Lag ei gratis nettside eller ein blogg på WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Lag ei gratis nettside på WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Driven av WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blogg på WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Lagre" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Telefon" msgid "Email" msgstr "E-post" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Namn" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Vis kommentarar frå:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Tekstbakgrunnsfarge:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Avatarbakgrunnsfarge:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Ingen avatarar" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(på det mestet 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Talet på kommentarar å vise:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Siste kommentarar" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "den" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Rutenett" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Liste" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Vis som:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar-plassering:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Storleik:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Midt på" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Høgre" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Venstre" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Ingen" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Ekstra stor (256 piksel)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Medium (96 piksel) " -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Set inn eit Gravatar-bilde" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "Nyleg blogga" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Vis ein Nyleg blogga-lapp i sidestolpen" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Avatarstorleik (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Tittel:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-no.mo b/projects/plugins/wpcomsh/languages/wpcomsh-no.mo index 93f9d79449c7905962c550b743fa7b7b09c25323..450a25da5070f073083036b958fdc69995892c60 100644 GIT binary patch delta 4338 zcmYM%4Nw&49mnzK5Jdq&lou`WJW)XqP@ssZuTU^Sts)p(HBl)Xh`^l!H8EOGt0W3F zrdhRWj4dQKZ@vW1YIM>%ok`o!$ut>BCvCJb8Iw$OY~$EW;^<7%@9*v*eTM&jo_%)r zd7l06vwM2YcdRDx;mF7XhH{>`kN9M;G57F93>(U!cw>g*VT{IZjKz~U882W8Uc+&C z4>K`!gfaP8hGXzCUB3@?{b6Jva}0~|3=YDtFplxfT`J>g7&g+FAvndFkGk{waSE28?%ao( zz!ubm4q`fXV=nfgGH}NpPvdqqfn3y$l%giMNHV@zZckW?!`a`2%ET_a@1RoGg;TKy zOYvjW1kw}3$Mey{ehFq{4Nk(RQIF~@GADBt)!%IlC`A!WPcw?LCLqheq~aVLj}^EU zm60A)sxP2A>_?sd8R`aZq6WB&IzKu&{LDw;BkX6O#%)g~|2m*!9bR+)?*aLSl z^eA{&W^*74^}3Z|1XkGnDpV#`qt4%kn#fL6$~#a49>G*RiD}qp+i#-o{2OavFiUv} z4Kb)0twPOk9qN0q1J&^{5=oLdin_z|sMoB|wts-? z?`wP9#R}9NC!jJo8kHe;8u{1E(`lH5Gf*jAjXXxvfEuVB^?m3@b?_?kCYl~B#y(Vr zVkU%N<9K9jlZqO6HtM=kyT1T)*k3v!5WXNlgYLK!^$3pRWbDP6co}s;3QJcLDMP&_ zi|u|rYM>3M>mNmBW|!UHZ}+=U8SX)4{$hZNQrwSaco#LmJkp^K%8|!qR$vBhMsC)0 zA%EsgHtO&O>H~HM2V*3ihSn0QpA;N|8CZh3_z(s*Qc=qPjLN_z)N67R)!`sU<#)ow zqaM{n)C8xa?qDvi!7AGxL=F4~s^31;dGDbn_Bk>~^KZ=5`=3ajb>bY1#B$WLTa3D3 z1FpbLI0WBCP2_##8)L4c7F#5}>H0X->K=t!_35bV3NZ?2q53VwJiY%5sA%#`MbGr_ zsF~eE&Db?1Jh7qHF{p`Uq0XO=dQ=UlJKK&La5q-qUerWCM7=HlLES)1b~r54K@IpD)H6JR8t|e$-fxdz#c0|;McvUYydR@;`F3C_YJlf4A74Uc?lKO? zuTj?zo=X08rz56@Q<#D}Fb*HVEY!qy+vEFDzYRxG6YI76e?qODE2xQoih4A6P}j%v z`P9IvsN%SmDy~41aGBT zA8O%oVjEFPoF)p17YQCoXneDmo#Vt>LTUF94-)zgXkjTMPZ2K=al}AbPGt$PpU^9| zm>4L0vCVghMa1`sbA-x?Fy?W5LgP14`6*Fr4`gAht&68^U1{$kI*I2AEjX1G#F|ho zymsbO*KMt{ZN0eC*7sPoRvL)aIGK$V9Z%xR#5Up#kxy(O zS_l>X{ShjWZ2d$|csKM0oVE3NIL6kuTlt6u%&YADoES-LCC(FiWhN015f2kPh)P1` z2ZUCBBe9TB`7NOjS%!8f?L;tC`~Rk!>M-JGM7C|NuafWjz}V2A!ZUP zTZmnunlT%3l&vqoX|}!_H`)3j98P?XC?S4GsO%#Oi0RtV3LPl-Q8`A87-+x_TYttH zflmgTM;>-LafyF*ZYAz;_9mqcYi{t>d#e0?pYu`D3(lTockp!bHkVU4y4X25`g*W) z%*QTQowGA_LGWtoTdtUjb$*}Mux;}@e;HdD<8N(i^^|)SH8gsineHNIt2^5{<<4-f zxa*vS<1Pe~JqKLQx$$0SVp`g;+!}wgXOX|&AACIR`XHw%{g&g;*fyb|vC&iKZ}BvH zTRaUuYR%QH>-|2n(BG`4R$q0CvuyG?Cn0leupqO}<#c702BW78bp_qoLn5MUW_&6$~3;I!rC oIxptsIG6LbI}Q2$!6gNMa5?V6ElzjggwSkrnwV|x^cvUy06UP+{Qv*} delta 5800 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 W+7YRlJ$H(%Ki;~zeZr{vw0{Fh<0!%a diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-no.po b/projects/plugins/wpcomsh/languages/wpcomsh-no.po index 50e250250fdb8..1fe53bfb60a19 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-no.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-no.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Markedsføring" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Utvidelser" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Fargespekter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Mørk" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Lys" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Gjennomsiktig" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Solnedgang" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Puddersnø" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Kontrast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Klassisk lyst" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Klassisk blå" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Akvatisk" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Oversikt" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "no.wordpress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Innstillinger" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Kjøp" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-poster" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domener" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Planer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Avbryt svar" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Legg igjen en kommentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Abonner" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Skriv inn din e-postadresse" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Les mer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Valgfri" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Nettsted" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Avbryt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Kommentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Svar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Logg ut" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Skriv en kommentar …" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Sett i gang" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatyrbilde" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Tittel" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Lytt på Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ja" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nei" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "endre" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Hjemmet mitt" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Klikk for mer informasjon" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Maksimal skrifttype-prosent" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Minimum skrifttypeprosent:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Kategori-IDer, adskilt by kommaer" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Ekskluder:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Maks antall kategorier å vise:" @@ -1470,24 +800,14 @@ msgstr "Dine mest brukte kategorier i et skyformat." msgid "Category Cloud" msgstr "Kategorisky" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Oppdater synlighet" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Lanser netsted" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Lukk" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Du bruker %1$s av totalt %2$s (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Vis dine seneste Instagram bilder." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografi" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Overskrift" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Ikke vis navn" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Visning liten" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Visning middels" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Visning stor" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Visning ekstra stor" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Din about.me URL" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Widget-tittel" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Viser din about.me-profil med småbilde" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Opprett en gratis blogg eller et nettsted på WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Lag et gratis nettsted på WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Drevet av WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blogg på WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Lagre" msgid "Activate & Save" msgstr "Aktiver og lagre" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Telefon" msgid "Email" msgstr "E-post" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Navn" @@ -1913,27 +1223,27 @@ msgstr "Reservasjonsgjennomgang" msgid "Reservations" msgstr "Reservasjoner" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Vis kommentarer fra:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Bakgrunnsfarge for tekst:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Bakgrunnsfarge for Avataren:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Ingen Avatarer" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(maks 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Antall kommentarer å vise:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Nyeste kommentarer" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "den" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s på %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Forfatterens likinger som skal vises:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Rutenett" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Liste" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Vis som:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Antall innlegg å vise (1 til 15):" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar-lenke. Dette er en valgfritt URL som vil bli brukt når noen klikker på din Gravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar-justering:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Størrelse:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Tilpasset E-postadresse:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Velg en bruker eller velg \"tilpasset\" og skriv inn en tilpasset E-postadresse." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Senter" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Høyre" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Venstre" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Ingen" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Ekstra stor (256 piksler)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Stor (128 piksler)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Middels (96 piksler)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Liten (64 piksler)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Sett inn et Gravatar bilde" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Velg et bilde som skal vises i din sidelinje:" @@ -2103,28 +1413,28 @@ msgstr "Nettopp publisert" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Vis et Nypresset skilt i din sidelinje" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Størrelse (px) på avatar:" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Vis alle forfatterere (inkludert de som ikke har skrevet noe innlegg)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Tittel:" @@ -2140,12 +1450,12 @@ msgstr "Vis en netting av forfatter-avatarbilder." msgid "Author Grid" msgstr "Forfatter-netting" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Dette nettstedet er privat." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-oci.mo b/projects/plugins/wpcomsh/languages/wpcomsh-oci.mo index 75ee5d569987e528d1a96062c2a181acfb0b8071..051a2e9b31e8bd609c2a38b4ec198ff54ce26526 100644 GIT binary patch delta 1783 zcmXxkZ){Ul7{~E5*jU$XrK@hpta23`n`3_%14IQkX$1_)7RAIwA!)WdSF^R+c1GV= z6aFLydBe$q@dd;L#YE(V7&Bua0gQoHE+&|e7@}b>d|@J(C~89D_t!o>>2p8loO|zi z&OP_so?HL#n)1y={k)^>B9g?uWzJ>rgL)2>_zLINU>iP*8!?6@Y{G-sh{v!E=TWzw z!FD{0%keVmzVDHryI!^Iex}kw$1T)Aw^0N9gGz7@8?cd+5p2Z-c38Uyb^VaFw_1C| zOk)q{pSN}i8PdIj4X*6md)9HpE;wc$xBe5z&z-dXPccgSb7ZmH*Vg{V&VPqWa19^C zMbrcQjw|s`YcJzz>dEgSRI~!E*ovK~8@f?9^jmueDsjr%W9CaZK>sVK6+4Prk$G!> zgdMa`<0O8I8b9FTvTo?&ppHS*%(tN4<#yDB#;kuo>RnEv5>8_pKSZs>P4ibw)H%0= z!}Q-})*639b9E04A&cNfn^}J)+(XAI97oN3+S;?Igop8dd>?iFNz?$JU>v_dt;|I` ze+{)q7V$p3h1z^~QJZoF%gx+evW4|$HC&f<44@KhLnRo&KHP2Xx6F4@6Fq{A>5ifX zJb`-BkCC4{!$ISJg?f++s0m-P_K#&MTH>FqV+l2Z-!Q;GPy@%gNKe#>I^Ty%Jd6+F z2(HEh*8eu@vps~m|1@eZowN2u)Hvmq18RvoSSLMsFKVWnPy?s%Fdjf9UP29g z8#T~>s3)x>i>{BN60YOGGq_>Y3XI|oOydms-61=1$NUS~JMJ+;<#A%PQmamIGj&Zs zMSn=OvW<#9Hx*6b0isV0D@y(Zv4wb)(BxO?`>z!qzzq`mRMyoxQBS8Qdy42Kx(TgV zt?Z(rmC~y9)H=<;974UmE%KqK1{47MhNX-{Z*?x zNoeP*>?Byc%6nh04$7t~mCtZHb>4ENq&Pl9tk%2PKnxHY34Qn4*-!iHjorQ_GUmfb z%3p|dCsW~6W^ShB(v#WhA$TKSq&Az$&iMYOgR!ZS+nc3lZ~nC)oAY;?#@ffH^SRKy z5Ke@-Qm`{WJBvj>7wz|Fqp$iz^NsWOny=RRUs~IJLu|KyJ+?VI9u|U0r7HQw*r1QB zJe5or-<-ShS)q`rjGu8YhQUNWmkTFKnSzhR_b2y-GvU;gFG)oXQe+C*Vo<1LE&7G{ S%Rbq5{QN>&Z=L@;vG6|)Vz$Nr literal 5038 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-oci.po b/projects/plugins/wpcomsh/languages/wpcomsh-oci.po index 1bd959c64f20b..08ff9fe62bcb3 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-oci.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-oci.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "O planhèm, avètz pas l’autorizacion d’accéder a aquesta pagina." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Extensions" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Sombre" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Clair" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Vista d’ensemble" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Paramètres" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-mails" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Totes los sites" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Anullar la responsa." - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Laissatz una respònsa en %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Daissar un comentari" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Joscriure" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Segre de legir" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Facultatiu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Site web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Anullar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Comentari" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Respondre" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Desconnexion" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Ajustar una pagina novèla" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Títol" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Òc" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Non" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Editar" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Exclure :" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "Nívol de categorias" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Tampar" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog chas WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Enregistrar" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Telefòne" msgid "Email" msgstr "Adreça de contacte" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nom" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Color de fons dau tèxt :" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Pas d'Avatars" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Nombre de comentaris a montrar :" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Comentaris recents" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "sus" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Grasilha" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Pagèla :" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centre" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Dreita" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Esquèrra" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Cap" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "Gravatar " msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Talha del avatar (px) :" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Títol :" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-orm.po b/projects/plugins/wpcomsh/languages/wpcomsh-orm.po index 4599efbb1b5fb..c44ae03fc7f7d 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-orm.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-orm.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-pa_IN.mo b/projects/plugins/wpcomsh/languages/wpcomsh-pa_IN.mo index d3d86ae4529468a157456cccb33f14ebd6812b33..0aaeadb3bdafd91692ab3ff0702fbc24b25997e2 100644 GIT binary patch delta 2879 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 H8_)j*HTXWv diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-pa_IN.po b/projects/plugins/wpcomsh/languages/wpcomsh-pa_IN.po index 8cd2156a17cec..b0d40467754c8 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-pa_IN.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-pa_IN.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr " ਵਪਾਰ" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "ਮੁਆਫ਼ ਕਰਨਾ, ਤੁਹਾਨੂੰ ਇਸ ਪੰਨੇ ਤੱਕ ਪਹੁੰਚ ਪ੍ਰਾਪਤ ਨਹੀਂ ਹੈ।" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "ਪਲੱਗਇਨਾਂ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "ਥੀਮ ਸ਼ੋਅਕੇਸ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "ਰੰਗ ਦੀ ਸਕੀਮ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "ਗੂੜ੍ਹਾ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "ਫਿੱਕਾ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "ਪਾਰਦਰਸ਼ੀ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "ਡੋਮੇਨ ਜੋੜੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "ਵਖਰੇਵਾਂ (ਕੰਟਰਾਸਟ)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "ਸੰਖੇਪ" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "ਇਹ ਹੈ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "ਸੈਟਿੰਗਾਂ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "ਖਰੀਦਾਂ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "ਈਮੇਲਾਂ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "ਡੋਮੇਨ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "ਯੋਜਨਾਵਾਂ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "ਮੇਜ਼ਬਾਨੀ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "ਸਾਰੀਆਂ ਸਾਇਟਾਂ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "ਜਵਾਬ ਰੱਦ ਕਰੋ" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "ਟਿੱਪਣੀ ਕਰੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "ਮੇਰੇ ਅਗਲੀ ਵਾਰ ਟਿੱਪਣੀ ਕਰਨ ਲਈ ਮੇਰਾ ਨਾਂ, ਈਮੇਲ, ਅਤੇ ਮੇਰੀ ਵੈੱਬਸਾਇਟ ਨੂੰ ਇਸ ਬ੍ਰਾਊਜ਼ਰ ਵਿੱਚ ਸਾਂਭ ਕੇ ਰੱਖੋ।" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "ਗਾਹਕ ਬਣੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "ਆਪਣਾ ਈਮੇਲ ਪਤਾ ਭਰੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "ਪੜ੍ਹਨਾ ਜਾਰੀ ਰੱਖੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "ਚੋਣਵਾਂ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "ਵੈੱਬਸਾਇਟ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "ਰੱਦ ਕਰੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "ਮੈਨੂੰ ਨਵੀਆਂ ਟਿੱਪਣੀਆਂ ਈਮੇਲ ਕਰੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "ਨਵੀਆਂ ਸੰਪਾਦਨਾਵਾਂ ਮੈਨੂੰ ਈਮੇਲ ਕਰੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "ਨਵੀਆਂ ਸੰਪਾਦਨਾਵਾਂ ਬਾਰੇ ਮੈਨੂੰ ਸੂਚਿਤ ਕਰੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "ਹਫ਼ਤਾਵਾਰ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "ਵਰਡਪ੍ਰੈੱਸ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "ਟਿੱਪਣੀ ਕਰੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "ਜਵਾਬ ਦੇਵੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "ਰੋਜ਼ਾਨਾ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(ਪਤਾ ਕਦੇ ਵੀ ਜਨਤਕ ਨਹੀਂ ਕੀਤਾ ਜਾਂਦਾ)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "ਬਾਹਰ ਹੋਵੋ" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "ਚਲੋ ਸ਼ੁਰੂ ਕਰੀਏ!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "ਸਾਇਟ ਦਾ ਸਥਾਪਨ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "ਦੁਕਾਨ ਦਾ ਸੈੱਟਅੱਪ ਮੁਕੰਮਲ ਕਰੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "ਇੱਕ ਨਵਾਂ ਪੰਨਾ ਜੋੜੋ " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "ਥੰਬਨੇਲ" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "ਯੋਜਨਾ ਵਧਾਓ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "ਡੋਮੇਨ ਚੁਣੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "ਸਾਇਟ ਦਾ ਡਿਜ਼ਾਇਨ ਸੋਧੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "ਆਪਣੀ ਸਾਇਟ ਲਾਂਚ ਕਰੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "ਡਿਜ਼ਾਇਨ ਚੁਣੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "ਲਿਖਣਾ ਸ਼ੁਰੂ ਕਰੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "ਯੋਜਨਾ ਚੁਣੋ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "ਸਿਰਨਾਵਾਂ" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "ਪੌਡਕਾਸਟ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "ਸਾਫ-ਸੁਥਰੀ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "ਹਾਂ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "ਨਹੀਂ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "ਸੋਧੋ" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "ਮੇਰਾ ਘਰ" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "ਬਾਹਰ ਕੱਢੇ:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "ਸ਼੍ਰੇਣੀਆਂ ਵਾਲਾ ਬੱਦਲ" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "ਰੱਦ ਕਰੋ" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "ਇੰਸਟਾਗ੍ਰਾਮ" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "ਜੀਵਨੀ" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "ਫੋਟੋ" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "ਨਾਮ ਨਾ ਦਿਖਾਓ" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "ਤੁਹਾਡੀ about.me ਯੂ.ਆਰ.ਐਲ" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "ਆਪਣੀ about.me ਪ੍ਰੋਫਾਈਲ ਨੂੰ ਥੰਬਨੇਲ ਨਾਲ ਦਿਖਾਓ" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "WordPress.com ਨਾਲ ਜਾਰੀ" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "WordPress.com 'ਤੇ ਬਲੌਗ" @@ -1781,10 +1096,6 @@ msgstr "ਸਾਂਭੋ" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "ਫ਼ੋਨ" msgid "Email" msgstr "ਈ-ਮੇਲ" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "ਨਾਂਅ" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "ਕੋਈ ਅਵਤਾਰ ਨਹੀਂ" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(ਵੱਧ ਤੋਂ ਵੱਧ 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "ਦਿਖਾਉਣ ਲਈ ਟਿੱਪਣੀਆਂ ਦੀ ਗਿਣਤੀ:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "ਹਾਲੀਆ ਟਿੱਪਣੀਆਂ" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%2$s 'ਤੇ %1$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "ਜਾਲ਼ੀ" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "ਸੂਚੀ" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "ਇਸ ਤਰ੍ਹਾਂ ਦਿਖਾਓ:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "ਅਕਾਰ" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "ਕੇਂਦਰੀ" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "ਸੱਜੇ" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "ਖੱਬੇ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "ਕੋਈ ਨਹੀਂ" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "ਬਹੁਤ ਵੱਡੀ (256 ਪਿਕਸਲ)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "ਵੱਡੀ (128 ਪਿਕਸਲ)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "ਦਰਮਿਆਨੀ (96 ਪਿਕਸਲ)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "ਛੋਟੀ (64 ਪਿਕਸਲ)" @@ -2091,7 +1401,7 @@ msgstr "ਗਰਾਵਤਾਰ" msgid "Insert a Gravatar image" msgstr "ਗਰਾਵਤਾਰ ਤਸਵੀਰ ਸ਼ਾਮਲ ਕਰੋ" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "ਤਾਜ਼ੀਆਂ ਛਾਪਾਂ" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "ਅਵਤਾਰ ਦਾ ਅਕਾਰ (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "ਸਾਰੇ ਲੇਖਕ ਦਿਖਾਓ (ਉਹ ਵੀ ਜਿਨ੍ਹਾਂ ਨੇ ਕੋਈ ਸੰਪਾਦਨਾ ਨਹੀਂ ਲਿਖੀ)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "ਸਿਰਲੇਖ:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "ਇਹ ਸਾਈਟ ਪ੍ਰਾਈਵੇਟ ਹੈ।" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-pl_PL.mo b/projects/plugins/wpcomsh/languages/wpcomsh-pl_PL.mo index 52785fe14fb0f25cc76b29db1c21a88799360540..e510fd67ecede8015c07552ffe5fee38b540e59b 100644 GIT binary patch delta 3267 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 AN&o-= diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-pl_PL.po b/projects/plugins/wpcomsh/languages/wpcomsh-pl_PL.po index bb3d2c7e55bb5..c57c22c831604 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-pl_PL.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-pl_PL.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Brak uprawnień dostępu do wybranej strony." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Wtyczki" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Kilka chwytliwych słów, które skłonią twoich czytelników do komentowania" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Schemat kolorów" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Tekst powitalny" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Ciemny" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Jasny" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Przeźroczysty" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Otrzymuj płatności przez WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Zachód słońca" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Przegląd" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "wordpress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Ustawienia" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Konfiguracja" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Subskrypcje" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-maile" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domeny" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Plany" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Wszystkie strony" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Błąd: twój login Facebooka wygasł." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Anuluj pisanie odpowiedzi" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Dodaj odpowiedź do %s " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Dodaj komentarz" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Zapisz moje dane, adres e-mail i witrynę w przeglądarce aby wypełnić dane podczas pisania kolejnych komentarzy." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Subscribe" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Wprowadź swój adres email" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Czytaj dalej" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opcjonalny" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Witryna internetowa" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Anuluj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Przesyłaj do mnie emailem nowe komentarze" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Tygodniowo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Komentarz" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Odpowiedz" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Dziennie" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Natychmiast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Adres nie będzie widoczny)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Wyloguj się" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Napisz komentarz..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Rozpocznij" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Wybierz motyw" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Połącz swoje konta mediów społecznościowych" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Utwórz stronę" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Nazwij swojego bloga" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Wybierz plan " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Tytuł" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "Podkast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Tak" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nie" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Wybierz kategorię podkastu:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1300,8 +632,6 @@ msgid "Edit" msgstr "Edytuj" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Moja strona główna" @@ -1429,31 +759,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Maksymalny rozmiar czcionki w procentach:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Minimalny rozmiar czcionki w procentach:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Identyfikatory kategorii, oddzielone przecinkami" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Pomiń:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1471,24 +801,14 @@ msgstr "Twoje najczęściej używane kategorie w formacie chmury." msgid "Category Cloud" msgstr "Chmura kategorii" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Zignoruj" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Aktualnie używasz %1$s z %2$s limitu przesyłania (%3$s%%)." @@ -1625,47 +945,47 @@ msgstr "Pokaż swoje ostatnie zdjęcia z serwisu Instagram." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Zdjęcie" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1682,19 +1002,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Stwórz darmową stronę albo bloga na WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Stwórz darmową witrynę na WordPress.com " @@ -1704,8 +1019,8 @@ msgstr "Wspierane przez WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog na WordPress.com" @@ -1782,10 +1097,6 @@ msgstr "Zapisz" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1899,8 +1210,7 @@ msgstr "Telefon" msgid "Email" msgstr "E-mail" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Podpis" @@ -1914,27 +1224,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Pokaż komentarze od:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Kolor tła teskstu:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Kolor tła awatara:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Bez Avatarów" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(maksymalnie 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Liczba wyświetlanych komentarzy:" @@ -1956,37 +1266,37 @@ msgid "Recent Comments" msgstr "Najnowsze komentarze" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "w dniu" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s na blogu %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Siatka" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Wyświetlaj jako:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Liczba pokazywanych wpisów (1 do 15):" @@ -2020,62 +1330,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Rozmiar:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Środek" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Do prawej" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Do lewej" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Żadna" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Średni (96 pikseli)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2092,7 +1402,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Wstaw obrazek Gravatara" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2104,28 +1414,28 @@ msgstr "Świeżo kliknięte" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Rozmiar awatara (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Pokaż wszystkich autorów (włącznie z tymi, którzy jeszcze nie napisali żadnych tekstów)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Tytuł:" @@ -2141,12 +1451,12 @@ msgstr "" msgid "Author Grid" msgstr "Siatka autorów" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ps.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ps.mo index 31d5d34655d31e19c88f5eaf73a25a78875876da..bfe3dcbbadee7782c238c46164320befdaec8037 100644 GIT binary patch delta 1199 zcmXZb+e;Kt9Ki9P<*t`?y&GL^E4yqNL8f3Aq1K2%B;CS?2ozg)m)u=w*D_5OLsyXq zVhED{086AI3ko762)g;uOYPW&B3}$5=%E*1`u@gqnBRQnH)qb-Gru#tSpB^!{jEIr zme6X6jl|U)kwf@p6(`#3)gqhm4IaZKEWp}a5jQp%k6<2oGjd1^Cl|J1K6YR^b|Qx) zS4>O4xiN%(IDX(mL!Gb@^^Kd6Ii%I(LFABgChsgGK~9h6p!N*EK5`F zWiGU|Uh1a(mU*XhC9(&%5o=7Y70?f^idaYJKS`S|Osl1BJ3$d- z2eF&jMQCMw)=^hQBNxsms`4$!dSZ(vw6!ZZ`=EQn-Z`7B^(?i9T#@Q{B7P;7=u1i< z6i{p zN5hen1iLPUoRe>5rlgacmtZ7u`Je=&sgUn=&P}FWj~> z*$4KR*rRr4VOX+v$wusPJ0sa?z2LDCYr62HRp1$P-Loeao?8z+mDW4Y1uI&#*}7TO cSdzW3&ogeqmwjxHTN$t4n)BYV28);e0~KefK>z>% literal 3940 zcmZvcTWlOx8OIMzD8y-jHl@&VJK@sA)Vs0Wv`IHLt?M`!DK`?QX%Gm;yT|KkW@olD zvvwANs8z>KRt5z{1r#0-63W^Mjd2_SLTU3*o+@~t0%>L~iiG-xR35@ZUl9DhGvg#Q zjD6-e=ggV!^8dcGZ{NT66~*-oM1-)*pr+f}5b2-jdI^=6ot&-w83H_QDUtgYbU%JX{Y?K>2<$=XY{W z!EV-PAph!D+{Dgr^7(7|*{NL>je*m-7AH z@KbO-lsGr#?1lWRC%K8gK`3#2HRmxX-+u#&E~9Wi4D$D{L9zEnKK}z0|8GG;P=AG1 ze<*g|&F43u`1yA}UxN{u-wWlt4LKi%Y*8Db*y)CA;A3zL+y;kX72fv&rCxsH zJ9iPxC*V5xF}M**p8fD4_$-utUx)mwGPjRFKj(Mz^*Jc{{}|#z{Q}+xUxiZd>rm?b z7JLA{4L=TVK>pP_UP}HCK=J<&d;)euiR)WX;&>6t{*zGZ^>V)cvwZym6gx{$;`w#{ z{*9b(!q2e&Cn)>=2_>I@!G5@gk7WJ?6u-kz;(rdxcP^CtW}$q47D}G4z|X@r{3(1B zN*-hPW_Bi^)MpmTx%^?iei`zwu5**T{s<+GB%iM*7_svpl=qK7LREcG>qcZMI(Dj2Q4Llq+BcIrYK%rE)|;!LF(-O-xf!~i z=azeP#Y{N9Q*}bOM^CsW_MMuEO!rzpC}iKLLC@1i+}K2F&=34(Eoek)$nnd@%b`P4 z_nKn~K^Ux)rs@tr)c@!2F(IQr8^6sfn@{ z>B*qsRYVT$xhIT{16^^Wy5}^XR(oqsl|=SAAtCN_*b}RL#+fkM(d9hIeP)bBw>mEO zh+9zAu5TgR4iUs7Y|03ubAenQb+3*DyNQRfvICbSUD6L%6%ODk5ijUp#31$ zeQ=f_uGxOvu&eCb*F6fi;W<5iu#aeoXF72o+0`%*E2|9 zNZ#m1-3y!w2^Q6%gN4Ip!WB1#odj3X{k{EL3%!pQ`nK{|>gz4_ZhN$st84$>{lkUl zOelLxy06&VH5Aa@eq0!7*7-0-&n>i+>+jIzaVJElfuke43fph(3mrciGht!aF9+hk zq_>Z{aTkRT9j~w}2y0PE`*k~w2KsmC>~X-?8wYgXj;`kmyNz!`Cl11r-t7gkm2XRb zaci-+;CS_Mr)wW4t${!#U5~ywxU1_>7`$N0aba)eR_r&0FVdE}U{A8%V>~49Qps|1 zF=;2u>1mxT>c77<*EzFtHd$iYSzw)qbXq4@)6*++vgKlDk(HTrR;Q@0N7$;!M<nkW}k(nbMfNvBJSES7YZS=!PaQt4b{5iwAuom|GB z>_iaKu-;n96*i>Tl;j{ETOH)RcqU%7;|u&_P{P9Gx#R-2k*;$-SA7-5w;|YGNN3Yi+D>Vl|1E@c%GLCgG}0Y;@uF2CtK>3HvTC&ujD=;o zXO2ork|;QhFqiNoQQ0Lcfn>k({rCB!%T}8RT~_84h2bM<5v!x9cC&{vbNbFL_@p$8 zl!49knax@XAuCrXU0c$X8qV1rXnb4S$YPts<)kF@H_I-k>P|(cXdgOLvbOz@TbBUv z`&*ICdR>-M*e%ZD;b6b|7C`7Kd33S?5Xc%Xpcl4;CoCZ9$HPNS(Af zwH?{dh88DHX1UzSA_tZZ)3!+SJaWFthKE*iRc~hN0*2`*R!*g@ZVn4ZrC^jJnP8usPc24$ll}^c- zYA3&BT*=%|BYu9kY-w+aa*++ZTwdWYMa`vpGQ_P yJy+B=iKS%Tiqb;W>%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "پلاګینونه" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "رنګبندي" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "تياره" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "روښان" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "لمرلویدا" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "پاسلیدنه" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "تنظیمونه" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "ټولې ويبپاڼې" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "ځواب‌ فسخ کول" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "څرګندون پریږدئ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "په دې برنامه کې زما نوم، بریښنالیک، او ویب پاڼه د راتلونکي ځل لپاره زما په نظر کې ساتئ." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "اختياري" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "ویب پاڼه" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "فسخ‌کول" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "ورډ پرېس" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "څرگندون" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "ځواب" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "وتل" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "پیل اخيستنه" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "بټه نوكى" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "سرلیک" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "هو" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "نه" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "سمون وکړه" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "اېستل:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "لغوه" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "خوندي کړه" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "بریښنالیک" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "نوم" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "د څرگندونو شمېر چې ښکاره شي:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "وروستۍ څرگندونې" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "ځاليز" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "لړ" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "منځ" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "ښی" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "کيڼ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "یو هم نه" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "سرلیک:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-pt_BR.mo b/projects/plugins/wpcomsh/languages/wpcomsh-pt_BR.mo index 51d0c15126e5bcae6e4b0ac1980d22e408fdb1c4..312dbec3dd31a1d94028d446736c7e6321278802 100644 GIT binary patch delta 8736 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-pt_BR.po b/projects/plugins/wpcomsh/languages/wpcomsh-pt_BR.po index f547950c90fbf..a60ec6e1848eb 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-pt_BR.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-pt_BR.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "%1$s em %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Você pode modificar o seu Gravatar da sua página de perfil." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Sem permissão para acessar esta página." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugins" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Use o painel legado do WordPress.com para gerenciar seu site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Estilo padrão" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Use o WP-Admin para gerenciar seu site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Estilo clássico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Estilo da interface do administrador" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Explorar plugins" @@ -72,424 +42,10 @@ msgstr "Acesse uma variedade de plugins gratuitos ou pagos que podem aprimorar a msgid "Flex your site's features with plugins" msgstr "Amplie as funcionalidades do seu site com plugins" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Vitrine de Temas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Explorar temas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Mergulhe no mundo dos temas do WordPress.com. Descubra os designs responsivos e elegantes que darão vida ao seu site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Encontre o tema perfeito para seu site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Algumas palavras cativantes para motivar seus leitores a comentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Ativar blocos nos comentários" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Permita que visitantes comentem com contas do WordPress.com ou Facebook" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Ajuste seu formulário Comentários com uma saudação inteligente e esquema de cores." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Esquema de cor" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Texto de Saudação" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Todos os blocos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Escuro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Leve" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Lance sua loja" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Adicionar um domínio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Expanda seus negócios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Receber imposto sobre as vendas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Receba pagamentos com o WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Adicionar seus produtos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Personalize sua loja" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Por do sol" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Neve" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Anoitecer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Contraste" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Escuro clássico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Brilhante clássico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Azul clássico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Aquática" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Visão Geral" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Compartilhe “%s” pelo Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Para acessar as configurações de planos, domínios, e-mails etc., clique em \"Hospedagem\" na barra lateral." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Configurações" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Monetizar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Monitoramento" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Configuração" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Compras" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-mails" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domínios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Complementos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Planos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Hospedagem" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Todos os Sites" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Erro: tente comentar novamente." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Erro: a sua ligação ao Facebook expirou." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cancele a resposta" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Deixar mensagem para %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Deixar um comentário" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Salvar meus dados neste navegador para a próxima vez que eu comentar." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Comentário enviado com êxito" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Se inscrever" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Insira seu endereço de email" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Tem interesse em receber atualizações de posts do blog? Basta clicar no botão abaixo para ficar por dentro." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Fique por dentro!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Continuar lendo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Assine a newsletter para continuar lendo e ter acesso ao arquivo completo." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "Descubra mais sobre %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Carregando seu comentário..." - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Você não perderá nenhum detalhe." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opcional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Escreva uma resposta..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Cancelar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Emails para novos comentários" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Envie-me e-mails sobre novos posts." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Notifique-me sobre novos posts." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Por semana" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Comentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Responder" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Por dia" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Instantaneamente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Nunca tornar endereço público)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Fazer logout" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Efetuou login pelo %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Faça login para deixar um comentário." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Faça login para responder." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Deixe um comentário. (login opcional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Escreva uma resposta (login opcional)." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Site (opcional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "E-mail (endereço privado)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Receba notificações pelo navegador e pelo celular sobre posts neste site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Faça login ou forneça seu nome e e-mail para deixar um comentário." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Faça login ou forneça seu nome e e-mail para escrever uma resposta." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Escreva um Comentário" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Iniciar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Use o importador guiado do WordPress.com para importar posts e comentários do Medium, Substack, Squarespace, Wix e muito mais." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Visite %1$sConfigurações do Jetpack%2$s para ver mais configurações de escrita com a tecnologia do Jetpack." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Atualizações agendadas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Verifique o endereço de e-mail dos seus domínios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Configurações do site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Concluir a configuração do Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Conclua a configuração da loja" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Atualize o design do seu site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Ativar compartilhamento de post" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Instale o aplicativo móvel" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "Nenhum arquivo restaurado." @@ -563,134 +119,6 @@ msgstr "Uma importação já está em execução." msgid "The backup import has been cancelled." msgstr "A importação de backup foi cancelada." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Próximos passos para o seu site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Adicione o bloco de assinatura ao seu site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Importar assinantes existentes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Visualizar métricas do site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "Configurar SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Instale um plugin personalizado" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Escolher um tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Configure uma oferta para seus apoiadores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Conecte uma conta da Stripe para receber pagamentos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Adicione uma página Sobre" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Gerencie o seu plano de newsletter pago" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Conecte suas contas de redes sociais" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Gerencie seus assinantes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Escreva três posts" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Consiga seus dez primeiros assinantes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Ativar modal de assinantes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Personalizar a mensagem de boas-vindas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Ganhe dinheiro com a sua newsletter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Atualize sua página Sobre" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Migrar conteúdo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "Verificar endereço de e-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Evita que novos posts e páginas sejam criados e os antigos sejam editados. Também desativa os comentários no site todo." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Ativar o modo bloqueado" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Modo bloqueado" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Para ter a propriedade do site, pedimos à pessoa designada por você que entre em contato conosco em %s com uma cópia da certidão de óbito." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Escolha alguém para cuidar do seu site quando você falecer." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Contato de legado" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Propriedade otimizada" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "A opção Qualquer pessoa pode se registrar está ativa. A função padrão atual é %1$s. %4$s Considere desativar essa opção caso o registro aberto não seja necessário." @@ -720,149 +148,37 @@ msgstr "Arquivo não existe" msgid "Could not determine importer type." msgstr "Não foi possível determinar o tipo de importador" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Compartilhe seu site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Editar uma página" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Seu site contém estilos premium. Faça upgrade agora para publicá-los e aproveitar várias outras funcionalidades." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Personalize seu domínio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Adicione uma nova página" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Atraia tráfego para seu site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Dê um nome ao seu site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Resgate seu domínio de um ano gratuito" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Presentear" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Compartilhe “%s” pelo Publicize" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Compartilhar" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Plano de atualização" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Crie uma newsletter paga" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Configurar forma de pagamento" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Escolha um domínio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Lance seu blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Editar design do site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Configure seu site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Dê um Nome Para o Seu Blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personalize seu site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Faça upload do seu primeiro vídeo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Configure seu site de vídeos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Iniciar seu site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Adicionar links" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personalizar link na bio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Selecionar um design" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Comece a escrever" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Escreva seu primeiro post" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Adicionar assinantes" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Selecione um plano" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personalizar newsletter" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "Não foi possível carregar a classe %1$s. Adicione o pacote em que a classe está localizada usando o composer e certifique-se de que está pedindo o Jetpack autoloader." #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Aliases Textdomain devem ser registrados antes do hook %1$s. Esse aviso foi acionado pelo domínio %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "O script \"%s\" depende do wp-i18n, mas não especifica \"textdomain\"" @@ -1063,27 +379,27 @@ msgstr "Os criadores do seu tema escolheram fontes específicas que você não p msgid "Uncheck to disable" msgstr "Desmarque para desativar" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "ID do feed do Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "ID de feed do podcasts da Apple" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Título" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Feed RSS do podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Ouça no Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Ouça em podcasts da Apple" @@ -1095,98 +411,114 @@ msgstr "Exibe informações sobre seu podcast e permite que os visitantes o acom msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Selecione a categoria iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Definir categoria de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Definir palavras-chave de podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Configurar imagem do podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Limpar" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Sim" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Não" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Definir podcast como explícito" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Determinar copyright do podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Definir resumo do podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Definir autor do podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Definir legenda de podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Definir título de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Esta é a URL que você insere no iTunes ou serviço de podcast." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Seu feed de podcast: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Selecionar categoria de podcast:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Categoria do blog para podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Categoria de Podcast 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Categoria de Podcast 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Categoria de Podcast 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Palavras-chave do podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Imagem do podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Marcar como explícito" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Copyright do podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Resumo de podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Nome do talento podcast" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Legenda do podcast" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Título do Podcast" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Editar" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Minha página inicial" @@ -1428,31 +758,31 @@ msgstr "Cota de espaço de disco" msgid "Disk space used" msgstr "Espaço de disco usado" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Clique para ver mais informações" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Contar itens em sub-categorias ao invés do total." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Porcentagem máxima de fontes:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Porcentagem mínima das fontes:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "IDs de categorias, separadas por vírgulas" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Excluir:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Número máximo de categorias a exibir:" @@ -1470,24 +800,14 @@ msgstr "Suas categorias mais usadas em formato de nuvem." msgid "Category Cloud" msgstr "Categorias" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "O Jetpack está desconectado e o site é privado. Reconecte o Jetpack para gerenciar as configurações de visibilidade do site." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Atualizar visibilidade" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Lançar site" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Dispensar" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Você está atualmente utilizando %1$s de %2$s do limite de upload (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Mostrar suas últimas fotos do Instagram." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografia" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Manchete" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Não mostrar nome" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Mostrar pequeno" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Mostrar médio" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Mostrar grande" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Mostrar extra grande" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Sua URL about.me" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Título do Widget" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "O widget about.me não estará mais disponível após o dia primeiro de julho de 2016. Depois desta data, o widget exibirá um simples link para o seu perfil no about.me. Por favor, remova este widget." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Exibir seu perfil about.me com miniatura" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Não foi possível obter os dados solicitados." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Crie um website ou blog gratuito no WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Crie um website gratuito no WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Com tecnologia WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog no WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Salvar" msgid "Activate & Save" msgstr "Ativar e salvar" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Gerencie as configurações de visibilidade do seu site" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "Este plugin foi instalado pelo WordPress.com e fornece as funcionalidades oferecidas na assinatura do plano." @@ -1898,8 +1209,7 @@ msgstr "Telefone" msgid "Email" msgstr "Endereço de email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nome" @@ -1913,27 +1223,27 @@ msgstr "Pedido de reserva" msgid "Reservations" msgstr "Reservas" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Exibir comentários de:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Cor de fundo do texto:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Cor do fundo do avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Sem avatares" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 no máximo)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Número de comentários a exibir:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Comentários" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Você não curtiu nenhum post recentemente. Assim que você curtir algum, o widget Posts Que Eu Curto os exibirá." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "em" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s em %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Mostrar curtidas do autor:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Grid" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Mostrar como:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Número de posts para exibir (1 a 15):" @@ -2019,62 +1329,62 @@ msgstr "Eu votei" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Mostre a seus leitores que você votou com um adesivo \"Eu votei\"." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Texto exibido após o Gravatar. Isto é opcional e pode ser usado para descrever a si mesmo ou sobre o que é seu blog." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Link do Gravatar. Este é um URL opcional usado quando alguém clica em seu Gravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Alinhamento Gravatar:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Dimensão:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Endereço de Email Personalizado:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Selecione um usuário ou escolha \"personalizado\" e digite um endereço de email personalizado." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centro" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Direita" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Esquerda" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Nenhum" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra Grande (256 pixels) " -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Grande (128 pixels)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Médio (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Pequeno (64 pixels)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Insira uma imagem Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Escolha uma imagem para exibir na sua barra lateral:" @@ -2103,28 +1413,28 @@ msgstr "Recém-publicados" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Exibir um ícone Novidade na sua barra lateral" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Tamanho do avatar (em px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Mostra todos os autores (incluindo aqueles que ainda não escreveram nenhum post)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Título" @@ -2140,12 +1450,12 @@ msgstr "Mostrar uma grade de imagens de avatar do autor." msgid "Author Grid" msgstr "Grade de Autores" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Site privado" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Este site é privado." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-pt_PT.mo b/projects/plugins/wpcomsh/languages/wpcomsh-pt_PT.mo index 43c68026a4a84ebd03117b432d0f51606c8bd9ad..bea35068b0e567284bdf83e0677a8d06e62e9b06 100644 GIT binary patch delta 3244 zcmYk-eQZ=!8prWd1Qbx{i*0G4?WL5Kg1i((P#2-EDpV{?k=HIx+uP}t>D*!N9c+c{ zBt%WK3A*Me{9$xMHU{4{bd$vxUn0H`6+`0gA11O(;zpxH@dXo&B)i|=%*A*z&;6Wx z?#nsnIp?;|Z9Ba#_wUllj~mJXVlHv%3S*ApXIFBdj7~S^Y8=B#dH)=_SPy_!HY9QmNfjx}6?4wj!XbC;06g81!#pGWN$D<1;P%n4` zm*E*yM%1Vjm!Sq$6P?#%1?Sgc8ryLY|BiZZ6%T6@)}fwXiE3Yq%2a2Libm3nn{X@Y z#%EDWFo7ERYsfpzhp0@PMZMrWYIFU7{LEBN^tDuB9BWV$$zdnHj9R*%B6B}enOS7a zuc(fuGh8i6H8$WX)OWoLxyAeyHG>J%Kwd@d^7m0obq4jGv#1GtgUZlPsHM7^6AiQh znLy60qQW(ED{ADusE)Q3ZZJvIivm;!`%xW^<6?Xi>+yBenxDgYcmX$H3B78deW;A> zK@BjIZ)g1vMi>5qO4$)q2fttyPT~{L0Oz7QSb^7KE3!Sz-KhH$$Rj3=J8>M<;eVs+ z=TQ^6i2D34VX40VMtaeOn@}@pMa^_DYTt{>$QWvG974VLNYwrm>i*-XfxL-YqEomC zKSs^?7u4UEY1M@#Xu_NxxS5JBw4-)+95u6{==?s^_j~}=@p$ATsEi!O1^6`TeIKIU z^G{UfK1F5hLUcZvKMI;~^&Hk;m3kUpu6}#~stiu$o60COfa1t1RHo|jL2N-S**|hrG@^Gs?OadtZ-y<@s_Q$J+??o9pG^5K4#2ULr=c66#Q8DY1iS z)Cpx3q0UrpA(jvwL<^y!3~J-8A(V|VVl|=i~46rxyB^(M|LpU2WB0z zPH|hc7kYjwo^;w{G1HpzQ)453HZZN}bYNd8-eZ@QG*9S=h2-wUhQn z-DJ>A)0m$PO}9H_v*oMpo8_@-?r7))p-cBSRJ70T8TM1I;TZa+#}C55xx?x9_PF-7 zidy@5Mag6@F&x?{l?&`>aN<*ciOUnmvV!^Z1ppPJsE0C z2mBGI+fVotOXmDoWH;12Qz62j0nJC;#S~&R}oW%?!rv zl7=?>=Z3!Go_G-WffI8RSuYj3fh}LKWlOJ{bcZz0E={vF6M6~m8FU>UcBqD~XWBDf ze9(8&e#ZH2BBtFRaZ};RqZyC;H@gFzxPj^LGOiceqQ*7$vBtD5Y5Lzp)53-#yR-RU lcFm&gm0>oX^zM&moOC=BcQ(3-lM_rius<)FYnLv*^nZ(3mmL5A literal 11306 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-pt_PT.po b/projects/plugins/wpcomsh/languages/wpcomsh-pt_PT.po index f9be4e7931fc9..c4ea495c6a50e 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-pt_PT.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-pt_PT.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Não tem permissão para aceder a esta página." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugins" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Montra de temas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Esquema de Cor" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Escuro" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Leve" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Publique a sua loja" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Faça crescer o seu negócio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Cobrar o imposto sobre as vendas" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Adicione os seus produtos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Pôr do sol" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Neve" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Crepúsculo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Contraste" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Claro Clássico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Azul Clássico" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Aquático" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Vista geral" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Definições" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Configuração" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Compras" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Emails" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domínios" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Planos" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Todos os sites" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Erro: a sua ligação ao Facebook expirou." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cancelar resposta" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Deixe uma resposta para %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Comentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Guardar o meu nome, email e site neste navegador para a próxima vez que eu comentar." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Subscrever" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Insira o seu endereço de e-mail" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Continue a ler" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opcional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Cancelar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Semanalmente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Comentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Responder" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Diariamente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Imediatamente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(O endereço nunca será tornado público)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Terminar sessão" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Site (opcional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Escreva um comentário..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Iniciar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Instale a aplicação móvel" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Escolha um tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Adicionar uma nova página" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Actualizar plano" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Nomear o Seu site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Adicionar subscritores" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Escolha um plano" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Título:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Selecionar categoria do iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Sim" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Não" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Editar" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Percentagem máxima da letra:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Percentagem mínima da fonte:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Excluir:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "Nuvem de Categorias" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Ignorar" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Está atualmente a utilizar %1$s de %2$s do limite de envio (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Crie um site gratuitamente em WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Site no WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Guardar" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Telefone" msgid "Email" msgstr "E-mail" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nome" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Mostrar comentários de:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Cor de fundo do texto:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Cor de fundo do avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Sem Avatars" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 no máximo)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Número de comentários a apresentar:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Comentários Recentes" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "em" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Grelha" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Mostrar como:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Texto a apresentar depois do Gravatar. É opcional e pode ser usado para se apresentar ou ao seu blog." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Link do Gravatar. É um URL opcional que será usado quando alguém clicar no seu Gravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Alinhamento do Gravatar" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Tamanho:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Endereço de E-mail Personalizado:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Escolha um utilizador ou \"personalizado(a)\" e indique um endereço de email." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centro" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Direita" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Esquerda" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Nenhum" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Muito Grande (256 pixels)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Grande (128 pixels)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Médio (96 pixels)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Pequeno (64 pixels)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Inserir um Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "Saído da Prensa" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Tamanho do Avatar (px)" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Exibe todos os autores (incluindo os que não escreveram quaisquer artigos)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Título:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "Grelha de Autor" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Este site é privado." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ro_RO.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ro_RO.mo index d61c69f7d9835df01dd9bada3148298db203b730..bd87afb682fd4327aeefd915920e3e3444acd49c 100644 GIT binary patch delta 8810 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 MA2H$R)Azgn7p7cEz5oCK literal 51623 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
    T`Q0;uo^L@Np4XVCdK=FG!#9sv-L-;+Q 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ro_RO.po b/projects/plugins/wpcomsh/languages/wpcomsh-ro_RO.po index 497bcba086606..64c35bd8bada6 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-ro_RO.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-ro_RO.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WordPress.com - Site Helper package. msgid "" msgstr "" -"PO-Revision-Date: 2024-05-27 16:50:22+0000\n" +"PO-Revision-Date: 2024-06-11 14:22:44+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "%1$s pe %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Poți să-ți modifici Gravatarul în pagina de profil. " -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Regret, nu ai voie să accesezi această pagină." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Module" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Folosește panoul de control vechi al WordPress.com ca să-ți administrezi site-ul." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Stil implicit" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Folosește WP-Admin ca să-ți administrezi site-ul." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Stil clasic" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Stil interfață de administrare" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Explorează modulele" @@ -72,424 +42,10 @@ msgstr "Ai acces la o varietate de module gratuite și plătite care îți pot msgid "Flex your site's features with plugins" msgstr "Flexibilizezi funcționalitățile site-ului cu module" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Prezentare teme" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Explorează temele" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Pătrunzi în lumea temelor WordPress.com. Descoperi designuri responsive și minunate care așteaptă să-ți aducă site-ul la viață." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Găsești tema perfectă pentru site-ul tău" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Câteva cuvinte bine alese pentru a motiva cititorii să comenteze." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Activează blocurile în comentarii" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Permite vizitatorilor să-și folosească conturile WordPress.com sau Facebook pentru a comenta" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Adaptează-ți formularul de comentarii cu un mesaj de întâmpinare ingenios și o schemă de culori." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Schemă de culori" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Text de întâmpinare" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Permite blocuri" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Întunecată" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Luminoasă" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Transparent" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Lansează-ți magazinul" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Adaugă un domeniu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Dezvoltă-ți afacerea" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Colectezi impozitele pe vânzări" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Cu WooPayments, primești plăți" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Adaugă produsele tale" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Personalizează-ți magazinul" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Apus de soare" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Pulbere de zăpadă" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Amurg" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Contrast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Întunecat clasic" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Luminos clasic" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Albastru clasic" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Acvatic" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Prezentare generală" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Partajează „%s” prin Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Pentru a accesa setările pentru planuri, domenii, emailuri etc., dă clic pe „Găzduire” în bara laterală." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Setări" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Câștigi bani" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Monitorizare" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Configurație" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Cumpărături" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Emailuri" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domenii" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Suplimente" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Planuri" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Găzduire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Toate site-urile" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Eroare: te rog încearcă să comentezi din nou." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Eroare: autentificarea Facebook a expirat." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Anulează răspunsul" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Lasă un răspuns către %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Lasă un comentariu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Salvează-mi numele, emailul și site-ul web în acest navigator pentru data viitoare când o să comentez." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Am trimis cu succes comentariul" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Abonare" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Introdu adresa ta de email" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Vrei să primești actualizări pentru articolele de pe blog? Simplu, dă clic pe butonul de mai jos ca să fii la curent!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Ești mereu la curent!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Continuă lectura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Abonează-te acum ca să citești în continuare și să ai acces la întreaga arhivă." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "Descoperă mai multe la %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Încarc comentariul tău..." - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Te vom ține la curent!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opțional" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Site web" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Scrie un răspuns..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Anulează" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Trimite-mi emailuri la comentarii noi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Trimite-mi emailuri la articole noi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Notifică-mă când sunt publicate articole noi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Săptămânal" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Comentariu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Răspunde" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Zilnic" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Imediat" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Adresa de email nu va fi publicată.)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Dezautentificare" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Autentificat prin %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Autentifică-te pentru a lăsa un comentariu." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Autentifică-te ca să scrii un răspuns." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Lasă un comentariu (autentificarea este opțională)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Lasă un răspuns (autentificarea este opțională)." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Site web (opțional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "Email (adresa nu va fi publicată niciodată)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Primești notificări pe web și pe mobil când apar articole noi pe acest site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Pentru a lăsa un comentariu, autentifică-te sau furnizează numele și adresa de email." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Pentru a lăsa un răspuns, autentifică-te sau furnizează numele și adresa de email." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Scrieți un comentariu..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Începe" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Folosește importatorul ghidat de la WordPress.com ca să imporți articole și comentarii de pe Medium, Substack, Squarespace, Wix și alte platforme." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Pentru mai multe setări pentru scriere oferite de Jetpack, mergi la %1$sSetări Jetpack%2$s." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Actualizări programate" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Confirmă-ți adresa de email pentru domenii deținute" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Inițializare site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Finalizează inițializarea Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Finalizează inițializarea magazinului" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Actualizează designul site-ului" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Activează partajarea articolelor" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Instalează aplicația pentru mobil" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "Nu este restaurat niciun fișier." @@ -563,134 +119,6 @@ msgstr "Rulează deja un import." msgid "The backup import has been cancelled." msgstr "Importul copiei de siguranță a fost anulat." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Pașii următori pentru site-ul tău" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Adaugă blocul Abonare pe site-ul tău" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Importă abonații existenți" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Vezi valorile metrice pentru site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "Configurează SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Instalează un modul personalizat" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Alege o temă" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Configurează o ofertă pentru susținătorii tăi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Conectează un cont Stripe pentru a colecta plăți" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Adaugă pagina ta Despre" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Administrează planul plătit Buletin de știri" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Conectează-ți conturile media socială" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Administrează-ți abonații" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Scrie 3 articole" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Ai primii 10 abonați" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Activează fereastra modală pentru abonați" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Personalizează mesajul de bun venit" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Câștigi bani cu buletinul tău de știri" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Actualizează pagina Despre" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Migrează conținutul" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "Confirmă adresa de email" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Împiedică crearea de articole și pagini noi, precum și editarea articolelor și paginilor existente și închide comentariile pe întregul site." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Activează modul blocat" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Mod blocat" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Pentru a deveni proprietarul site-ului, te rugăm să ne contactezi la adresa %s și să ne trimiți o copie a certificatului de deces." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Alege pe cineva care să aibă grijă de site-ul tău dacă vei deceda." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Contact de moștenire" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Drept de proprietate îmbunătățit" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "În prezent, opțiunea „Oricine se poate înregistra” este activă. Rolul actual implicit este %1$s. %4$s Te rog să iei în considerare dezactivarea acestei opțiuni dacă înregistrarea deschisă nu este necesară." @@ -720,149 +148,37 @@ msgstr "Fișierul nu există" msgid "Could not determine importer type." msgstr "Nu am putut să determin tipul de importator" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Partajează-ți site-ul" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Editează o pagină" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Site-ul tău are stiluri premium. Actualizează acum ca să le publici și să deblochezi și alte funcționalități." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Personalizează-ți domeniul" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Adaugă o pagină nouă" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Aduci trafic pe site-ul tău" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Dă-i site-ului un nume" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Beneficiezi de un domeniu gratuit în primul an" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Fă cadouri" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatură" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Partajează „%s” prin Publicitate" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Partajează" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Actualizează plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Creează un buletin de știri cu plată" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Configurează metoda de plată" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Alege un domeniu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Lansează-ți blogul" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Editează designul site-ului" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Inițializează-ți site-ul" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Numește-ți blogul" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personalizează-ți site-ul" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Încarcă primul tău video" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Inițializează-ți site-ul Video" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Lansează-ți site-ul" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Adaugă legături" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personalizează Link in Bio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Selectează un design" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Începe să scrii" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Scrie primul tău articol" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Adaugă abonați" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Alege un plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personalizează buletinul de știri" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "Nu pot încărca clasa %1$s. Te rog adaugă pachetul care o conține folosind compozitorul și asigură-te că ceri încărcătorul automat Jetpack" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Un alias pentru domeniu-text trebuie înregistrat înainte de cârligul %1$s. Această notificare a fost declanșată de domeniul %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "Scriptul „%s” depinde de wp-i18n dar nu specifică „textdomain”" @@ -1063,27 +379,27 @@ msgstr "Ești norocos! Proiectanții temei tale aleg anumite fonturi pentru tine msgid "Uncheck to disable" msgstr "Debifează pentru a dezactiva" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "ID flux Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "ID flux Apple Podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titlu" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Flux RSS podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Ascultă pe Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Ascultă Apple Podcasts" @@ -1095,98 +411,114 @@ msgstr "Afișează informații despre podcast și permite vizitatorilor să urm msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Selectează categorie iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Setează categoria podcast-ului" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Setează cuvintele cheie pentru podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Setează imaginea podcast-ului" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Curăță" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Da" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nu" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Setează podcast-ul ca explicit" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Setează drepturi de autor pentru podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Setează rezumatul podcast-ului" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Setează autor podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Setează subtitrarea pentru podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Setează titlul podcast-ului" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Acesta este URL-ul pe care-l trimiți la iTunes sau la serviciul de podcasting." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Fluxul tău podcast: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Selectează categoria podcast-ului:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Categorie blog pentru podcast-uri" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Categorie podcast 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Categorie podcast 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Categorie podcast 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Cuvinte cheie podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Imagine podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Marchează ca explicit" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Drepturi de autor podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Rezumat podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Nume talent podcast" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Subtitrare podcast" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Titlu podcast" @@ -1269,11 +601,11 @@ msgstr "Planul Pro pentru %3$s expiră pe %2$s. %3$s expires on %2$s. Renew your plan to retain Entrepreneur plan features such as custom plugins and themes, SFTP, and phpMyAdmin access." -msgstr "Planul Entrepreneur pentru %3$s expiră pe %2$s. Reînnoiește-l pentru a-ți păstra funcționalitățile planului Entrepreneur , cum ar fi modulele și temele personalizate, SFTP și acces la phpMyAdmin." +msgstr "Planul Entrepreneur pentru %3$s expiră pe %2$s. Reînnoiește-l ca să păstrezi funcționalitățile planului Creator, cum ar fi module și teme personalizate și acces la SFTP și phpMyAdmin." #: notices/plan-notices.php:99 msgid "The Creator plan for %3$s expires on %2$s. Renew your plan to retain Creator plan features such as custom plugins and themes, SFTP, and phpMyAdmin access." -msgstr "Planul Creator pentru %3$s expiră pe %2$s. Reînnoiește-l pentru a-ți păstra funcționalitățile planului Creator, cum ar fi modulele și temele personalizate, SFTP și acces la phpMyAdmin." +msgstr "Planul Creator pentru %3$s expiră pe %2$s. Reînnoiește-l ca să păstrezi funcționalitățile planului Creator, cum ar fi module și teme personalizate și acces la SFTP și phpMyAdmin." #: storage/storage.php:33 msgid "You have used your space quota. Please delete files before uploading." @@ -1300,8 +632,6 @@ msgid "Edit" msgstr "Editează" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Pagina mea de pornire" @@ -1392,7 +722,7 @@ msgstr "Actualizările sunt administrate de WordPress.com" #: notices/plan-notices.php:130 msgid "The Creator plan for %3$s expired on %2$s. Reactivate your plan to retain Creator plan features such as custom plugins and themes, SFTP, and phpMyAdmin access." -msgstr "Planul Creator pentru %3$s a expirat pe %2$s. Reactivează-l ca să păstrezi funcționalitățile planului Creator, cum ar fi modulele și temele personalizate, SFTP și acces la phpMyAdmin." +msgstr "Planul Creator pentru %3$s a expirat pe %2$s. Reactivează-l ca să păstrezi funcționalitățile planului Creator, cum ar fi module și teme personalizate și acces la SFTP și phpMyAdmin." #: notices/plan-notices.php:140 msgid "The Pro plan for %3$s expired on %2$s. Reactivate your plan to retain Pro plan features such as custom plugins and themes, SFTP, and phpMyAdmin access." @@ -1429,31 +759,31 @@ msgstr "Cotă spațiu pe disc" msgid "Disk space used" msgstr "Spațiu utilizat pe disc" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Dă clic pentru mai multe informații" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Număr de elemente în sub-categorii pentru total părinte." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Procent maxim font:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Procent minim font:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "ID-uri categorie, separate cu virgulă" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Exclude:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Numărul maxim de categorii de arătat:" @@ -1471,24 +801,14 @@ msgstr "Cele mai folosite categorii în format nor de categorii." msgid "Category Cloud" msgstr "Nor de categorii" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack este deconectat și site-ul este privat. Reconectează Jetpack pentru a administra setările de vizibilitate pe site." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Actualizează vizibilitatea" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Lansează site-ul" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Respinge" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Acum folosești %1$s din limita de încărcare de %2$s (%3$s%%)." @@ -1603,7 +923,7 @@ msgstr "Număr de afișat:" #: widgets/instagram/instagram.php:225 msgid "Images" -msgstr "Fotografii" +msgstr "Imagini" #: widgets/instagram/instagram.php:221 msgid "Widget Title" @@ -1625,47 +945,47 @@ msgstr "Afișează ultimele tale poze Instagram." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografie" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Rubrică" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Fotografie" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Nu afișa numele" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Afișează mic" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Afișează mediu" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Afișează mare" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Afișează foarte mare" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "URL-ul tău about.me" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Titlu piesă" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "Piesa about.me nu va mai fi disponibilă după 1 iulie 2016. După această dată, piesa va afișa o legătură text simplu la profilul tău about.me. Te rog înlătură această piesă." @@ -1682,19 +1002,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Afișează-ți profilul about.me cu miniatură" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Nu am putut aduce datele cerute." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Creează gratuit un site web sau un blog la WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Creează gratuit un site web la WordPress.com" @@ -1704,8 +1019,8 @@ msgstr "Propulsat de WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog la WordPress.com" @@ -1782,10 +1097,6 @@ msgstr "Salvează" msgid "Activate & Save" msgstr "Activează și salvează" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Administrează setările pentru vizibilitate site." - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "Acest modul a fost instalat de WordPress.com și furnizează funcționalitățile oferite în abonamentul la planul tău." @@ -1899,8 +1210,7 @@ msgstr "Telefon" msgid "Email" msgstr "Email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nume" @@ -1914,27 +1224,27 @@ msgstr "Cerere de rezervare" msgid "Reservations" msgstr "Rezervări" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Arată comentariile de la:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Culoare fundal text:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Culoare fundal avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Niciun avatar" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(cel mult 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Număr de comentarii de arătat:" @@ -1956,37 +1266,37 @@ msgid "Recent Comments" msgstr "Comentarii recente" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Nu ai apreciat de curând niciun articol. Odată ce faci asta, această piesă Articole apreciate le va afișa." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "pe" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s pe %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Aprecieri autor de afișat:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Grilă" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Listă" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Afișează ca:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Număr de articole de arătat (de la 1 la 15):" @@ -2020,62 +1330,62 @@ msgstr "Am votat" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Arată-le cititorilor că ai votat cu un autocolant „Am votat”." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Text afișat sub Gravatar. Este opțional și poate fi folosit pentru a te descrie sau a spune ceva despre blogul tău." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Legătură Gravatar. Acesta este un URL opțional care va fi folosit când cineva dă clic pe Gravatarul tău:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Aliniere Gravatar:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Dimensiune:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Adresă email personalizată:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Selectează un utilizator sau alege „personalizat” și introdu o adresă de email personalizată." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centru" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Dreapta" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Stânga" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Niciunul" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Foarte mare (256 de pixeli)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Mare (128 de pixeli)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Medie (96 de pixeli)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Mic (64 pixeli)" @@ -2092,7 +1402,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Inserează o imagine Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Alege o imagine ca s-o afișezi în bara laterală:" @@ -2104,28 +1414,28 @@ msgstr "Proaspăt publicate" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Afișează o insignă Proaspăt publicate în bara ta laterală" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Dimensiune avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Afișează toți autorii (inclusiv pe cei care nu au scris niciun articol)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titlu:" @@ -2141,12 +1451,12 @@ msgstr "Arată o grilă cu imaginile avatar ale autorului." msgid "Author Grid" msgstr "Grilă autor" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Site privat" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Acest site este privat." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ru_RU.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ru_RU.mo index 95627fb7bdd198659b78d684991e7409555e1329..8486b70e7522cb68865b1781b1356d7389339cae 100644 GIT binary patch delta 8696 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 A&j0`b delta 24125 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" msgstr "%1$s на %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Вы можете изменить Gravatar на странице профиля." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Маркетинг" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Извините, вам не разрешено просматривать эту страницу." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Плагины" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Используйте консоль WordPress.com для управления вашим сайтом." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "По умолчанию" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Используйте WP-Admin для управления вашим сайтом." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Классический" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Стиль интерфейса администратора" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Открыть плагины" @@ -72,424 +42,10 @@ msgstr "Получите доступ ко множеству бесплатны msgid "Flex your site's features with plugins" msgstr "Расширяйте возможности сайта с помощью плагинов" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Выставка тем" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Просмотр тем" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Исследуйте вселенную тем WordPress.com. Найдите множество великолепных вариантов адаптивного дизайна, готовых оживить ваш сайт прямо сейчас." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Найдите идеальную тему для вашего сайта." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Несколько слов, чтобы побудить читателей оставлять комментарии" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Включить блоки в комментариях" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Разрешить посетителям использовать учётные записи WordPress.com или Facebook, чтобы оставлять комментарии" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Настройте форму для комментариев с помощью приветственного текста и цветовой схемы." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Цветовая схема" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Текст Приветствия" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Разрешить блоки" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Тёмная" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Светлый" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Прозрачность" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Запустите ваш магазин" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Добавьте домен" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Развивайте бизнес" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Собирайте налог с продаж" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Зарабатывайте с WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Добавить товары" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Настройте параметры вашего магазина" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Закат" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Сакура" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Снегопад" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Сумерки" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Контраст" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Классическая тёмная" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Классический яркий" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Классический синий" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Морская" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Обзор" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Поделиться \"%s\" через Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Чтобы получить доступ к настройкам тарифных планов, доменов, электронной почты и т. д., нажмите «Хостинг» на боковой панели." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Настройки" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Монетизация" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Мониторинг" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Конфигурация" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Покупки" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Электронная почта" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Домен" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Дополнения" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Тарифы" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Хостинг" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Все сайты" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Ошибка, попробуйте оставить комментарий ещё раз." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Ошибка: срок действия вашего логина Facebook истёк." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Отменить ответ" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Ответить на %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Оставьте комментарий" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Сохранить моё имя, email и адрес сайта в этом браузере для последующих моих комментариев." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Комментарий отправлен." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Подписаться" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Введите свой адрес электронной почты" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Хотите получать уведомления о новых записях в блоге? Чтобы всегда быть в курсе новостей, просто нажмите кнопку ниже!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Не упустите ничего!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Читать дальше" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Подпишитесь на рассылку, чтобы продолжить чтение и получить доступ к полному архиву." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "Больше на %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Загрузка комментария…" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Мы будем держать вас в курсе." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Опционально" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Вебсайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Написать ответ..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Отменить" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Отправлять мне email о новых комментариях" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Уведомлять меня о новых записях почтой" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Уведомлять меня о новых записях" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Еженедельно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Комментарий" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Ответить" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Ежедневно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Мгновенно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Адрес никогда не будет опубликован)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Выйти" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Выполнен вход через %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Войдите, чтобы добавить комментарий." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Войдите, чтобы добавить ответ." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Оставить комментарий (вход в систему по желанию)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Ответить. (Вход в систему не обязателен.)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Веб-сайт (необязательно)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "Адрес электронной почты (никогда не будет опубликован)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Получайте уведомления о новых записях на этом сайте через Интернет или по мобильной связи." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Чтобы оставить комментарий, войдите в систему или укажите ваше имя и адрес электронной почты." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Чтобы ответить, войдите в систему или укажите ваше имя и адрес электронной почты." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Опубликовать комментарий..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Начало работы" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Воспользуйтесь мастером пошагового импорта WordPress.com, чтобы импортировать записи и комментарии из Medium, Substack, Squarespace, Wix и других платформ." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Перейдите в %1$sНастройки Jetpack%2$s, чтобы получить доступ ко множеству настроек письма, поддерживаемых Jetpack." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Запланированные обновления" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Подтвердите адрес эл. почты для своих доменов" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Настройка сайта" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Завершите настройку Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Завершить настройку магазина" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Обновите дизайн вашего сайта" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Включите возможность делиться записями" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Установите мобильное приложение" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "Нет восстановленных файлов." @@ -563,134 +119,6 @@ msgstr "Импорт уже запущен." msgid "The backup import has been cancelled." msgstr "Импорт резервной копии отменён." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Следующий шаги для вашего сайта" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Добавьте блок подписки на свой сайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Импортировать подписчиков" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Просмотр показателей сайта" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "Настройка ssh" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Установка пользовательского плагина" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Выбрать тему" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Создайте предложение для своих подписчиков" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Подключите учётную запись Stripe, чтобы получать платежи" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Добавьте страницу «Обо мне»." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Управляйте платной подпиской на рассылку" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Подключить ваши аккаунты в соцсетях" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Управление подписчиками" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Сделайте три записи" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Найдите первые десять подписчиков" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Включить модальное окно подписчиков" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Редактировать приветственное сообщение" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Зарабатывайте на рассылке" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Обновите страницу с информацией о вас" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Переносите контент" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "Проверяйте адрес эл. почты" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Не допускает создания новых и редактирования существующих записей и страниц, а также закрывает комментарии на всём сайте." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Включить режим блокировки" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Режим блокировки" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Чтобы указанное вами лицо могло стать владельцем сайта, мы попросим его прислать нам копию свидетельства о смерти по адресу %s." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Выберите кого-то, кто будет присматривать за вашим сайтом после вашей кончины." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Контактные данные наследника" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Усовершенствованный протокол передачи собственности" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "Опция «Любой может зарегистрироваться» сейчас активна. Текущая роль по умолчанию — %1$s. %4$s Деактивируйте эту опцию, если не требуется открытая регистрация." @@ -720,149 +148,37 @@ msgstr "Файла не существует" msgid "Could not determine importer type." msgstr "Не удалось определить тип средства импорта" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Делитесь содержимым сайта" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Редактировать страницу" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Ваш сайт содержит стили Premium. Перейдите на платный тарифный план, чтобы их опубликовать и получить массу других возможностей." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Измените доменное имя" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Добавить новую страницу" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Привлекайте посетителей на сайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Дайте имя своему сайту" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Получите домен бесплатно на год" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Подарить" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Миниатюра" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Поделиться \"%s\" в публикации" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Поделиться" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Обновить план" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Создайте платную рассылку" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Настройте способ оплаты" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Выберите домен" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Запустите свой блог" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Измените дизайн сайта" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Настройте ваш сайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Название блога" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Персонализируйте ваш сайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Загрузите ваше первое видео" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Настройте ваш видео-сайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Запустите свой сайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Добавить ссылки" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Персонализировать сайт-биографию" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Выберите дизайн" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Начать писать" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Напишите свою первую запись" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Добавить подписчиков" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Выбрать тариф" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Персонализировать рассылку" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "Не удалось загрузить класс %1$s. С помощью инструмента создания добавьте содержащий его пакет и убедитесь, что решение для автозагрузки Jetpack указано в качестве обязательного элемента." #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Псевдонимы textdomain следует зарегистрировать до хука действия %1$s. Это уведомление инициировано доменом %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "Сценарий %s зависит от wp-i18n, но не указывает textdomain." @@ -1063,27 +379,27 @@ msgstr "Вам везёт! Дизайнеры вашей темы выбрали msgid "Uncheck to disable" msgstr "Убрать галочку, чтобы отключить" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "Идентификатор канала Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "Идентификатор ленты Apple Podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Заголовок:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "RSS-лента подкастов" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Слушать на Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Слушать в Apple Podcasts" @@ -1095,98 +411,114 @@ msgstr "Показать информацию о вашем подкасте и msgid "Podcast" msgstr "Подкаст" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Выберите категорию в iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Задать рубрику подкаста" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Задать ключевые слова подкаста" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Задать изображение подкаста" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Аккуратная" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Да" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Нет" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Задать содержание ненормативного контента" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Указать авторские права" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Задать обзор подкаста" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Задать автора подкаста" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Задать подзаголовок подкаста" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Задать название подкаста" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Это URL-адрес, который вы отправляете в iTunes или в сервис подкастов." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Лента подкаста: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Выберите категорию подкаста:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Рубрика блога для подкастов" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Рубрика подкастов 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Рубрика подкастов 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Рубрика подкастов 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Ключевые слова подкаста" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Изображение подкаста" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Пометить как содержащий ненормативный контент" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Авторские права подкаста" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Обзор подкаста" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Имя ведущего подкаста" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Подзаголовок подкаста" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Название подкаста" @@ -1300,8 +632,6 @@ msgid "Edit" msgstr "Править" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Главная" @@ -1429,31 +759,31 @@ msgstr "Выделенный объем дисковой памяти" msgid "Disk space used" msgstr "Использованный объем дисковой памяти" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Нажмите для получения дополнительной информации" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Считать число элементов в родительской рубрике с учетом дочерних рубрик." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Максимальный размер шрифта в процентах:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Минимальный размер шрифта в процентах:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Идентификаторы рубрик, разделённые запятыми" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Исключить:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Максимальное количество отображаемых рубрик:" @@ -1471,24 +801,14 @@ msgstr "Ваши наиболее часто используемые рубри msgid "Category Cloud" msgstr "Облако рубрик" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack отключен, а сайт переведен в закрытый режим. Подключите Jetpack заново, чтобы изменить настройки отображения." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Изменение настроек отображения" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Запустить сайт" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Закрыть" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Использовано %1$s из %2$s доступных для загрузки (%3$s%%)." @@ -1625,47 +945,47 @@ msgstr "Показывать ваши последние фото из Instagram msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Биография" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Заголовок" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Фото" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Не показывать имя" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Маленький размер" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Средний размер" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Большой размер" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Огромный размер" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Ваш about.me адрес" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Заголовок виджета" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "Мы прекращаем поддержку виджета \"about.me\" с 1 июля 2016 года. Начиная с этого дня в виджете будет отображаться обычная текстовая ссылка на ваш профиль about.me. Удалите виджет." @@ -1682,19 +1002,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Отображать профиль about.me с эскизом" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Не удалось получить запрошенные данные." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Создайте бесплатный сайт или блог на WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Создайте бесплатный сайт на WordPress.com." @@ -1704,8 +1019,8 @@ msgstr "Сайт работает на WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Блог на WordPress.com" @@ -1782,10 +1097,6 @@ msgstr "Сохранить" msgid "Activate & Save" msgstr "Активировать и сохранить" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Управляйте настройками видимости своего сайта" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "Этот плагин был установлен сайтом WordPress.com и предоставляет функции, предлагаемые в вашем плане подписки." @@ -1899,8 +1210,7 @@ msgstr "Телефон" msgid "Email" msgstr "Электронная почта" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Имя" @@ -1914,27 +1224,27 @@ msgstr "Запрос бронирования" msgid "Reservations" msgstr "Бронируйте столики" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Показать комментарии:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Цвет фона текста:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Цвет фона аватара:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Нет аватаров" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(не более 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Количество комментариев:" @@ -1956,37 +1266,37 @@ msgid "Recent Comments" msgstr "Недавние комментарии" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "В последнее время вам не понравилась ни одна запись. Как только вы поставите записи отметку «Нравится», она появится в виджете Понравившиеся записи." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "на" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s в блоге %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Понравившиеся автору записи:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Сетка" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Список" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Отобразить как:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Число отображаемых записей (1–15):" @@ -2020,62 +1330,62 @@ msgstr "Я голосую" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Покажите вашим читателям, за что вы проголосовали, показав им наклейку \"Я голосую\"." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Текст, отображаемый после Gravatar. Это поле не является обязательным. Вы можете использовать его, чтобы рассказать пару слов о себе или вашем блоге." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Ссылка Gravatar. Это дополнительный URL-адрес, который будет использоваться, когда кто-либо нажимает ваш Gravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Выравнивание Gravatar:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Размер:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Пользовательский адрес электронной почты:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Выберите пользователя либо выберите \"другое\" и введите адрес электронной почты." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "По центру" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Справа" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Слева" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Нет" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Очень большой (256 пикселей)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Большой (128 пикселей)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Средний (96 пикселей)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Малый (64 пикселя)" @@ -2092,7 +1402,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Вставить изображение граватара" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Выберите изображение, которое будет показано в боковой панели:" @@ -2104,28 +1414,28 @@ msgstr "Свежая пресса" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Отображать значок «Свежая пресса» на боковой панели" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Размер аватара (пикс):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Отобразить всех авторов (включая тех, кто не создал ни одной записи)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Заголовок:" @@ -2141,12 +1451,12 @@ msgstr "Показывать список авторов в виде сетки msgid "Author Grid" msgstr "Список авторов в виде сетки" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Закрытый сайт" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Это закрытый сайт." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-rue.mo b/projects/plugins/wpcomsh/languages/wpcomsh-rue.mo index 52ce2c925474aaae3720418687f652c0a941ddec..37d9fe0f62fb445691bf80a1ac6ec8d12e192d97 100644 GIT binary patch delta 139 zcmeyxa*U<^o)F7a1|VPoVi_Q|0b*7ljsap2C;(z7AT9)AkeV$(43ggo#L%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1300,8 +632,6 @@ msgid "Edit" msgstr "Управити" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1429,31 +759,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1471,24 +801,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1625,47 +945,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Образчік" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1682,19 +1002,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1704,8 +1019,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1782,10 +1097,6 @@ msgstr "" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1899,8 +1210,7 @@ msgstr "" msgid "Email" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "" @@ -1914,27 +1224,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "" @@ -1956,37 +1266,37 @@ msgid "Recent Comments" msgstr "" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2020,62 +1330,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2092,7 +1402,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2104,28 +1414,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "" @@ -2141,12 +1451,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-rup_MK.mo b/projects/plugins/wpcomsh/languages/wpcomsh-rup_MK.mo index 5480823d66feee530903e71905e85eae618b20e1..25a77cea8a819c66ffa50b5d8db1b981d97512ec 100644 GIT binary patch delta 487 zcmXZXze~eF6bJCvTCJ_Wup(JRvN`z+x;Qwr{_0S$VAa7XZO-&TOiJz|ibEG&+$88M z6dZKZKfs}L7bhqE2b`Q7{a%uT$LGD=-Fuhk!cD&SRm$BH))Zm^agCTo{2=sN%MexJ zI-G|Jj=@`)gLiNSKBVsO~!^dvsu(3v(+zER*8xF+6>oG@T&vT{S(=2I00Qdsm4mk(5_ delta 713 zcmZ9}ze^lJ6bJCPS&d#|qMkoUp=O(q>J&sP8~08;5y2x7g%AkK?Ql0ZH+RhJ`m4Fh z!cJUltc0sf5fIZQ-K7=-sng}JNaOci=9&!5er6xD@4cBl9r~PW|IQCw62>Iv4CZ&t zS2!FyHoP0tw1?S*Xxa3@cLwGO30k{cA;Wm5@Ke_lmKjHCGw%Tu?bAR5rljBU&8SU9z3|S z{@|{;5DwN$+>f(3Os_~k#y7>kjt5_JE-QHDS_ zpi-o(LQ$z6>6)NYv(XSb$E5v-eTN5?1K&cAvs`Cq+Irz%P;g{s>*l31W5Dn=%o_Fpg5Q&Z<)XsfA? nkz`BOu)DB}CD$!Tof=7DE7EafMOOCT=1QrFr4>eI4gb|612l2$ diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-rup_MK.po b/projects/plugins/wpcomsh/languages/wpcomsh-rup_MK.po index 4b360cd941463..c39f4ccbe498a 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-rup_MK.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-rup_MK.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plug-inuri" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Curdiseri" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Tutile Frãndzã" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Anulats" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Comentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Apandase" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Ahurhits" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titlu" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Uidisits" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog pi WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "Publicate prospitã" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-sah.mo b/projects/plugins/wpcomsh/languages/wpcomsh-sah.mo index 47bcc6d66ac60b85dad4ad876428de5d9774d76a..c6b012fd4b35d2b79b883f8d1fcfed095518654f 100644 GIT binary patch delta 1186 zcmZY8OGs2v9LMo9=J*;PIhC4eU9BurDTxR&h0GwKq8uRzH#Uxwpbj}RMT^je7DW)^ zMW{tBf&v$nAW;i*(ZV)ibF+;Qk_$IIprl0R30u*ZX-qD*AwP49OBRMO8_(JL^QiZt=*NqggO@Rg zBgk*qxNA4&4%YJE9;(6Ds1N7t^Y_*T`+O1A;j*p&ih1NKsImXC^=f1bxgU$L3e|2S zmrVLM2W`b+EapKg7GkG0jB0oY_u^I5%pN0snCCX1#vbxno7XW5Zp{JIgqp0a$YPpy zJVyWKBsW2p-NiQYM@&mg^%?W=hs}LdD$hd=u+-)?SV_Jg)!`W|z_X|UM^N95<0gE7 z?f3$R)ldf0(F}`m16J64AL_#Vqm)S+AXpi?0I;>jW&4jj1TT)A?=wRxQF=10mm?KWOKbGuq zV!h6lSaQf2h{Y35GCt<-Du@gwB15Jv(%YTvPq=se$->@*InfvA5{o*0gYKcMW~U<( z<~`?VY+wN6rlT){q_>``(C`O3x@vdNlnqJ(-?PPkXn# wl>06BXYgTq@*Uw_bLJUZbu;M&IPL7-+`8?)A=8KZcE|qzn@-^DgXcg delta 1780 zcmX|>Uu;xG6o;qM*6tRl7Ex%6++q=n<&PExq9o!L(1Zk~ras^UOMBaH-0f<2w}z+P zZeyY}MrG5)l*D3*#wNsWvS1b|HJbROn7I<4H26ZIW$e9SK#w7(tyCD5R(~zjqn6q4No~e z4cDSiK+Ss_-V4t-o~_yQW|n~*&OsitK-UBpVJoacIr!eu!fy1Rp*H>x@|Z@H7PuN} zeg~Aj)9KqFkLjUPAiW{;#yrD73t}(|Ux4?(erF$m?dT_<7QO|wQ66f8_Z?@T{G4<8 zd8kA_gZINlsET~!XknE7&2J2L!P`)kXk!;S>Vnd{;SlU~`bSV3&qJ1&&m9*bkNJ{L zr?(6b!Ea$J$J#_Redz5tRbVG!UT2nYh6$(&{YR)wet`<$wzK~Y zH=+Lv6<`O>*1#=L3GRmScM`6Lsi?`D7a2@pki+Yc$NWmS75)y_!8Ogbg`H6EcRGE) z(+@ko43*hy@Db=c{aweiP?!81RD#uJ>aWbMW02#&pw9LVybneRR}0$VgK!_z{9}%9 zI+kD?_RH`UXq|m4=_|1#P#F)vcVH6A|37&Kinx(kRL!(Nz1RqKX|_X^_*tlhG00Jd zWmF()k0FmDPaxfhnyS_lj%wWwumREi@DS~x3h4fY0f;J@8ZntYi2emS21VY5Y)AA@ z*o?T(Ls&J66=n~@_N1fkf||Z9YPti&A1115a>?^%BZIw&S}(E>(Gfh2=o0Nj)E=)P z>{SsR%fpDi5xWspYYVasQG2Qe^N{0R9P|d0>D-W)9`;VBOMk8!J`f)p^phqQ!W;MB zNS-z^e=O^do7iYNo$TUa(g+sb(wf zX<9inYnL_4Ubffd3kOwu#S11Cn&N>|p=-GfCcPUAK`|)aSimJ-3ieVkZNDn*inK-M z*?I=sWa&sGv2IQ~*@_F4Sb{?7i%3`GZlWa{d2ao@+a^q&?ZW6PYoj;oT1Z!EF6{^= L85T+_%^&^`vq@br diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-sah.po b/projects/plugins/wpcomsh/languages/wpcomsh-sah.po index 42cb4a639fa44..8eeef3a6bc3c3 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-sah.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-sah.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Баалаама, бу сирэйи көрөрүҥ көҥүллэммэт эбит. " -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Плагииннар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Хараҥа" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Сырдык" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Туруоруулар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Хоруйдаама" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Комментарий суруйуу" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Ситим-сир" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Уурат" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Хоруй" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Таҕыс" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Киэргэтиини талыы" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Кырачаан" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Аата" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Сөп" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Суох" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Уларыт" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Таһаар:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Сап" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Бигэргэт" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "Email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Аата" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Ырытыы ахсаана:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Кэнники ырытыылар" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Тиһик" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Ортото" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Уҥа өттө" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Хаҥас өттө" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Суох" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Аата:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-si_LK.mo b/projects/plugins/wpcomsh/languages/wpcomsh-si_LK.mo index d7da9183f67bbf25d3c71ce0e49a869baf925570..77375af66c00e3f1f0004e5d4df342ca5a2cb6d0 100644 GIT binary patch delta 1589 zcmY+@OKeP09LMo9quObQ(P=wqOHEr<@3!95D_-%c2%-pL!l0psbh;6YSkyvd(Gy~! z*l0skNRtv0q7fk$ENmoFk3>WwQc02Mg75Fn>B7mJ`#I;_nRCzofB(}y`})LGZ(ha) zLt8>0Loe_fvmJ+JaG@O?${3H~I6Q^R@Ct_TBW7bC>L-6Nf`2g+BV6PdF50IYCtx*B zHzsB38Dz20g4*CbYD4R6L-sNq7{E@6ShiaO9GcfZZ8-^8V? z-@y?)-~4ble1xY5W}!CDLuFz#YNIkYuf%=KYf#_2=+-a0c{?h?TgcX?%grC+5avBt zh0ib*X7G!FA`I{}8N{%U_luRxqnv6Fu10Nm19R~%Dib|ehP^l+eZlm>Yf&|`67|41 z#_$53$KOHnKbk=c`IA?%7VqOc>_??^+HhkEaS^V-daS_9Sb{yMn)rzP#Ps7%^iiS8 z;BM6VK~!-zqcU_ZME(^)tGjXA-FS+M=q2ih-%*haU>z27Djm21%kd0O#CFv8U%C75 zu!i|h)P9wu?H#Vg8Ja8qifjie;v{N=PPhI56~POBLcE?AIGNeS}m|7!&89gf%Q9ZokV)3vdp8f=P4Z4$kT zPFb0$^isOAq}ovd>cFn0%uGf)iB30*u7cBn6rI}QG-etq11hiubp0dLR0mPIS0AW< z1h3z#qa~d$aVbo9m5v|7v6Dv%OKepvbOQ;aVEy){AgFeU6(CLNR+y>0U@z zVNIvk(ABExdL@Hx0t1pv`eMnbZOb}g%L5g5XQ0@22DWC#_s5zKCv8b~sa=&l)t<`U zl)pb|);Bb9NgRka95EYWjd43Zr@Cz8!9+4)HYS>qP0=;c^$myOW>b7`{75poJki*Q zP4;3=tTp($t1syD+feAZ{Sw+{$K|fGf!q%JIJeMdhOgL1;TF3q@A=Ssr$2Pxw@>ot f`e9eWH9Ip>WcNhsy1qr~eO=o}ZS~u~g&qF@yRD=G literal 6822 zcmcJSZH!!18OIN$2&_T@aw}tF*ffs>~ftP^a1s8!o z2J_(WLG3e#%{Bl0fb#-g32OXWkUz5^U>=lft3dJk9Ed5i5xflC2F?Q`@WbHO!uU5p z*?TD9Bj6I+2SC|54$AJEq5UgRc76+f6g&lL{og^&dq1@Q4Qlpypi)DjrvW z{F#M3NR8J49fl>sJN6t#XSSXXKxt)cEG1W*?S(;yq7}%5%5;p zKLcg|pP<(NH;m6CIJ}z6LG5QjTrrD4+3O7Lm0*$fT2S-87y5q`+Q&c_KTv$%4DDZs z_U}O1{R1dHyaS#Kz6&k`-vciN7eHR|xiR3);HBpna|`$x`nR$8UT_rDK5v22)gM9W z{#{VK5<2h_fMLB;KH@OJQZkgd(XK+T(nG4Wmws{c0d)8IXz;(I^%Iq+3b z_WlBD{`+7Tc*zys&U)}|+A+wGS$`!q!QG(Z_6VqWejk*bQ=$K_pyF{JMwRz@;Ge;z zpyGZ7i{-O+mFPp*M@UAmUI#?gtH-Meo+d`YLyF8o=?&4Mr?BKqG zTbIrbB;smSZRP$t?r!dzxup&1LKh`G?V>cC#-%%s4foB}gt^?eaU(IOjkTaz9A&nW zq?zqnxx}oqg>q6a+GNmR@T8UW-ITt*lh7$C!(XrRtFB;U&|mLEN)r@jwc}8Mw?i zEveZ7_m-UxK>H+SW+(+m2+Dz?TKxc*kUOiDM#aL&DIKxQqvpNAl4f(Co{cqG^zlR z5*N^R+a*M+7qTE8WMXM(SWi6ZB`Bq;1DV){GTg%}O))du;`>B89!br%guf~?>XiXJ zMUY{yROZv+WUSk4AMrvm+ehOXY8x|s!%3EyzH)s?LG2@esoiROamnn63#8umc*ZGh zX=jJyw-axS9@dK}b&aCg8JFWihM$xG9BOu?RM=zZ7wT!2ROZ{LTC`4kiiGR4vC?Iu zV$mrU0~yj9!XAWGLwHfIX1?8RBz)Un%F66siOOZu&x{^bpx#m*_a)V>v?ahe?W- zyYd{P+H5t+>_FVk6D69Ks0}H-MrydL2}_)TQcTo_DWGGU>bA@^rlDP{x6%$8vSiv2MYZ5&*ryNFw z0#yx_QtCvX*Zi7|22e-765CxnddS|jUj%u7@Yj*W- z%B`B5SBt9YU|h>>tQHa-2i1$RJEv_+mzHQX}7J8xMsR$`D*K5*HrCwYi!r* zj@`M_Now78b2-UeMJ`*OUy<+3MdgvI=H6E0c&qtrt8ui|-0#lw zR^w2s(P%Xfy9tdSwwh108m}?x)-;-GYb7>b^ERHct;Q>@=7Cn@Iazb2^d3w!_k|^m z!&u21G&dZTBhzZ^!=!9CPPlWu)qKF2#l*>0^AJ{eHeI|&5TsU(k_UU52GT>u>_Vc|vSjEco zXX}J%H6C&cpKcQ5{y*%19G)jKXCa5#={U9i6x}+F9wMEdw@a5J?PQ|(Aqr*qbb{F$h2Y?m zc}7vZj}f^>VN&G%(-*wz(}45{J8C`TjgtT?zA=BD5qw4S_jn5+buyfT15r$etFDnqq zw8CTLfZLwAFbcC=y)~coU2ZFh)bBk-JN}dib?faYkO)j?Z( z8rUzEjTbQEn26vOF1r&GB%62An)o$J$Y3Ei>`(HO7y4^|+5JyZW+g?qd#? z;VjQ-%$hL9NHzs~lp>KZTpV0EvC3^AYktJ3#>E#}d|alT2~KL-4;kr0#9Hm@bin5k zyZUtT?G1v(0rw$p9)traV}e4$94t+omiDa7nRwI;ssOc5H^$w zV`Pk-*k9)g0x`@7jv3h^SGxQj2i zd(e0JQ{xF5vy#;I&No!(#LzaTO|hzjL$c5h1PtT4i)oWM29A8Le4X*cl3Zl&%#oj= zH-ymnFGGAa#Rn6|eJ0$#UXA4PBz%1QPfG-*(vE&aF*vCTEI@K1_@{hhWr|K%Bp3Ei z|H;V4E=!IAe6g&%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "ප්ලගින" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "අඳුරු" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "ළා" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "දළ විශ්ලේෂණය" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "සැකසුම්" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "ආකෘතිය" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "වි-තැපැල්" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "ඩොමේන" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "සියලු අඩවි" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "ප්‍රතිචාරය අවලංගු කරන්න" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "%s වෙත ප්‍රතිචාරයක් සටහන් කරන්න" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "ප්‍රතිචාරයක් ලබාදෙන්න" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "දිගටම කියවන්න" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "විකල්ප" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "වෙබ් අඩවිය" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "ඉවත් කරන්න" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "වර්ඩ්ප්‍රෙස්" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "ප්‍රතිචාර" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "ප්‍රති-පිළිතුරු සැපයීම" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "නික්මෙන්න" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "පටන්ගන්න" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "තේමාවක් තෝරන්න" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "සිඟිතිරුව" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "ඔබේ බ්ලොග් අඩවිය නම් කරන්න" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "මාතෘකාව" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "ඔව්" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "නැහැ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "සංස්කරණය" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "අතහරින්න:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "අස්කරන ලදී." - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "පින්තූරය" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "ඔබගේ about.me ඒ.ස.නි. (URL)" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "WordPress.comහි නොමිලේ වෙබ්අඩවියක් හෝ බ්ලොග් සටහනක් සාදාගන්න" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "WordPress.comහි නොමිලේ වෙබ්අඩවියක් සාදාගන්න" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "WordPress.comහි බ්ලොග් සටහනක්" @@ -1781,10 +1096,6 @@ msgstr "සුරකින්න" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "ඊමේල්" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "නම" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(උපරිම වශයෙන් 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "දර්ශනය කළ යුතු ප්‍රතිචාර ගණන:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "නවතම ප්‍රතිචාර" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "මත" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "ලැයිස්තුව" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "පරිශීලකයෙක් තෝරන්න. නැතහොත් ස්වකීය වි-තැපැල් ලිපිනයක් ඇතුල්කිරීමට \"ස්වකීය\" තෝරන්න." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "මැද" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "දකුණ" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "වම" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "කිසිවක් නැත" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "ග්‍රැවටාර්" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "නැවුම් පළවීම්" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "මාතෘකාව:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-sk_SK.mo b/projects/plugins/wpcomsh/languages/wpcomsh-sk_SK.mo index b47c5f7152ab3e16fd5e86836df10bd136a74860..a3bd713e10513f32cb0bd538d8758931193d384d 100644 GIT binary patch delta 2247 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-sk_SK.po b/projects/plugins/wpcomsh/languages/wpcomsh-sk_SK.po index 884b7a1a46684..400f4444cefcb 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-sk_SK.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-sk_SK.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Nemáte oprávnenie pre prístup k tejto stránke." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Pluginy" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Zopár chytľavých slov, aby ste motivovali vašich čitateľov komentovať" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Prispôsobte váš formulár pre komentáre múdrou uvítacou správou a farebnou schémou." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Farebná schéma" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Uvítací text" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Tmavá" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Svetlá" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Priesvitná" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Prehľad" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "wordpress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Nastavenia" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Nákupy" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-maily" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domény" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Paušály" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Všetky stránky" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Zrušiť odpoveď" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Napísať odpoveď pre %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Pridaj komentár" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Uložiť moje meno, e-mail a webovú stránku v tomto prehliadači pre moje budúce komentáre." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Odoberať" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Zadaj tvoju emailovú adresu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Čítať ďalej" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Voliteľné" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Web stránka" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Zrušiť" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Komentár" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Odpovedať" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Email nebude zverejnený)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Odhlásiť sa" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Napísať komentár..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Začíname" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Vyberte si tému" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Pripojte svoje účty sociálnych médií" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Pridať novú stránku" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatúra" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr " Nadpis" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Áno" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nie" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1300,8 +632,6 @@ msgid "Edit" msgstr "Upraviť" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1429,31 +759,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Najväčšia veľkosť písma v %:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Najmenší počet percent pre písmo:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Vylúčiť:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1471,24 +801,14 @@ msgstr "" msgid "Category Cloud" msgstr "Mračno kategórií" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Zrušiť" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1625,47 +945,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1682,19 +1002,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Nepodarilo sa načítať požadované dáta." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Vytvorte si webové stránky alebo blog na WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Vytvorte si webové stránky zadarmo na WordPress.com" @@ -1704,8 +1019,8 @@ msgstr "Vytvorené službou WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blogujte na WordPress.com" @@ -1782,10 +1097,6 @@ msgstr "Uložiť" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1899,8 +1210,7 @@ msgstr "Telefón" msgid "Email" msgstr "Email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Meno" @@ -1914,27 +1224,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Farba pozadia textu:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Pozadie užívateľského obrázka" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Žiadni avatari" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(najviac 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Počet zobrazovaných komentárov:" @@ -1956,37 +1266,37 @@ msgid "Recent Comments" msgstr "Najnovšie komentáre" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "na" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Mriežka" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Zoznam" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Zobraziť ako:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2020,62 +1330,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Veľkosť:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Zvoľte používateľa alebo vyberte položku \"vlastný\" a zadajte vlastnú emailovú adresu." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Na stred" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Vpravo" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Vľavo" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Žiadne" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2092,7 +1402,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2104,28 +1414,28 @@ msgstr "Čerstvo publikované" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Veľkosť avatara" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Zobraziť všetkých autorov (aj tých, ktorí zatiaľ nenapísali žiadne články)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Nadpis:" @@ -2141,12 +1451,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-skr.mo b/projects/plugins/wpcomsh/languages/wpcomsh-skr.mo index 9c716f0f99a9f9fdc6bcc1d2ebe535ab383fc460..13da3ff4bf8b0daa0e8694d7f1307ad6de74fd4e 100644 GIT binary patch delta 6399 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 delta 9801 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 LkVr1;+VOt@or%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "مارکیٹنگ" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "افسوس، تہاکوں ایں ورقے تائیں پُڄݨ دی اجازت کائنی۔" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "پلڳ ان" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "تھیم شوکیس" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "رنگاں دی سکیم" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "سیاہ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "لائٹ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "شفاف" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "ڈومین شامل کرو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "سجھ لہݨ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "سکُورا" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "پاؤڈر برف" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "شام ویلا" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "فرق ݙیکھݨ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "کلاسیکی ڈارک" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "کلاسک برائٹ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "کلاسیکی نیلا" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "آبی" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "اتلی نظر" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "ورڈپریس ڈاٹ کام" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "ترتیباں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "خریداریاں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "ای میلاں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "ڈومیناں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "منصوبے" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "ہوسٹ کرݨ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "ساریاں سائٹاں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "غلطی: تہاݙا فیس بک لاگ ان مُک ڳیا ہے۔" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "جواب منسوخ کرو" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "تبصرہ لکھو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "ایں کمپوٹر تے ایں براؤزر تے آڳلی واری تبصرہ کرݨ کیتے مٰݙا ناں، ای میل تے ویب سائٹ محفوظ کر گھنو۔" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "سبسکرائب" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "آپݨاں ای میل پتہ درج کرو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "پڑھݨ جاری رکھو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "اختیاری" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "ویب سائٹ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "منسوخ کرو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "میکوں نویں تبصرے ای میل کرو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "میکوں نویاں پوسٹاں ای میل کرو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "میڈیاں نویاں پوسٹاں دا اعلان کرو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "ہفتہ وار" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "ورڈ پریس" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "تبصرہ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "ڄواب ݙیوو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "روزانہ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "فوری" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(پتہ کݙان٘ہ وی عوامی کائنی بݨیندا)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "لاڳ آوٹ" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "شروع کرو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "آپݨیاں ڈومیناں کیتے ای میل پتے دی تصدیق کرو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "سائٹ سیٹ اپ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "سٹور سیٹ اپ پورا کرو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "تھیم چݨو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "نواں ورقہ شامل کرو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "آپݨی سائٹ تے ٹریفک چلاؤ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "آپݨی سائٹ دا ناں رکھو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "تھمبنیل" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "منصوبہ اپ گریڈ کرو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "ڈومین چݨو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "آپݨی سائٹ لان٘چ کرو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "منصوبہ چݨو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "ناقابل کوں ان چیک کرو" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "عنوان" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "پوڈ کاسٹ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "آئی ٹیون ونکی چُݨو:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "پوڈکاسٹ ونکی مقرر کرو" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "پوڈکاسٹ خاص لفظ مقرر کرو" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "پوڈکاسٹ تصویر مقرر کرو" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "صاف" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "جیا" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "نیں" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "پوڈکاسٹ کوں واضح مقرر کرو" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "پوڈکاسٹ نقل حقوق مقرر کرو" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "پوڈکاسٹ خلاصہ مقرر کرو" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "پوڈکاسٹ لکھاری مقرر کرو" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "پوسٹ کاسٹ ذیلی عنوان مقرر کرو" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "پوڈکاسٹ عنوان مقرر کرو" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "اِیہ اُو URL ہِے ڄیڑھا تُساں آئی ٹیونز (iTunes) یا پوڈ کاسٹنگ (podcasting) دِی خدمات کِیتے جمع کرویسو۔" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "تہاݙا پوڈکاسٹ فیڈ: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "پوڈکاسٹ ونکی چُݨو:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "پوڈ کاسٹاں کیتے بلاگ ونکی" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "پوڈ کاسٹ ونکی ٣" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "پوڈ کاسٹ ونکی ٢" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "پوڈ کاسٹ ونکی ١" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "پوڈ کاسٹ خاص الفاظ" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "پوڈ کاسٹ تصویر" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "واضح ہووݨ دا نشان لاؤ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "پوڈ کاسٹ نقل حقوق" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "پوڈ کاسٹ خلاصہ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "پوڈکاسٹ ٹیلنٹ ناں" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "پوڈ کاسٹ ذیلی عنوان" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "پوڈ کاسٹ عنوان" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "تبدیلی کرو" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "میݙا گھر" @@ -1428,31 +758,31 @@ msgstr "ڈسک سپیس کوٹہ" msgid "Disk space used" msgstr "ڈسک سپیس استعمال تھئی" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "ٻیاں معلومات کیتے کلک کرو" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "بنیادی مجموعے آلے پاسے ذیلی ونکیاں وچ آئٹماں دی ڳیݨ" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "ودھ کنوں ودھ فونٹ فیصد:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "گھٹ کنوں گھٹ فونٹ فیصد:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "ونکی آئی ڈی آں، کومیاں نال وکھری تھیاں" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "خارڄ کرو:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "ݙکھاوݨ کیتے ونکیاں دی ودھ کنوں ودھ تعداد:" @@ -1470,24 +800,14 @@ msgstr "کلاوڈ فارمیٹ وچ تہاݙیاں ودھ ورتیاں ڳیاں msgid "Category Cloud" msgstr "ونکی جھڑ" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "نظرپ اپ ڈیٹ کرو" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "سائٹ لان٘چ کرو" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "مکاؤ" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "تُساں اِیں ویلے %2$s وِچُوں %1$s استعمال کریندے پئے ہِیوے اَپ لوڈ دی حَد (%3$s%%) ہِے۔ " @@ -1624,47 +944,47 @@ msgstr "آپݨی انسٹاگرام دیاں تازہ ترین تصویراں د msgid "Instagram" msgstr "انسٹاگرام" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "حالات زندگی" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "شہ سرخی" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "تصویر" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "ناں ظاہر نہ کرو" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "چھوٹا ظاہر کرو" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "درمیانہ ظاہر کرو" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "وݙے ظاہر کرو" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "ٻہوں وݙا ظاہر کرو" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "تہاݙی about.me یوآرایل" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "ویجٹ دا عنوان" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "آپݨی اباؤٹ ڈاٹ می پروفائل تھمب نیل نال ڈسپلے کرو" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "ارداس تھیا ڈیٹا کڈھ آوݨ دے قابل کائنی۔" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "ورڈپریس ڈاٹ کام تے مفت ویب سائٹ یا بلاگ بݨاؤ" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "ورڈپریس ڈاٹ کام تے مفت ویب سائٹ بݨاؤ" @@ -1703,8 +1018,8 @@ msgstr "ورڈپریس ڈاٹ کام ولوں تکڑا کیتا ڳیا" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "ورڈ پریس ڈاٹ کام تے بلاگ" @@ -1781,10 +1096,6 @@ msgstr "محفوظ" msgid "Activate & Save" msgstr "فعال کرو تے بچاؤ" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "آپݨی سائٹ دیاں نظرݨ ترتیباں منیج کرو" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "فون" msgid "Email" msgstr "ای میل" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "ناں" @@ -1913,27 +1223,27 @@ msgstr "بک کرݨ دیاں معلومات" msgid "Reservations" msgstr "تحفظات" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "کنوں تبصرے ݙکھاؤ:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "متن پس منظر رن٘گ:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "اواتار پس منظر رنگ:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "کوئی اواتار کائنی" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(ودھ کنوں ودھ ١٥)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "ڈکھاون کیے تبصریاں دی تعداد " @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "حالیہ رائے" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "تُساں حال وِچ کہِیں وِی پوسٹاں اُتے پسندیدگی دا اظہار نئیں کِیتا۔ جیڑھے ویلے تُساں کریسو تاں، اِیہ میݙے پسند کِیتے ڳئے پوسٹاں ویجیٹ اُنھّاں کُوں ڈکھیسی۔ " -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "اُتے" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s ہے %2$s تے" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "مصنف ظاہر کرݨ پسند کریندا ہے:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "گرڈ" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "تندیر" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "دے طور تے ظاہر کرو:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "ݙکھاوݨ کیتے پوسٹاں دی تعداد (١ کنوں ١٥):" @@ -2019,62 +1329,62 @@ msgstr "ووٹ ݙتم" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "جی آر اواتار دے بعد ڈکھایا ونڄݨ آلا ٹیکسٹ۔ اِیہ اختیاری ہِے اَتّے اِیکُوں استعمال کِیتا ونڄ سڳیندا ہِے آپݨے تعارف کِیتے یا آپݨے بلاگ دے تعارف کِیتے۔ " -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "گراواتر لنک۔ ایہ ہک اختیاری یوآرایل ہے جہڑا اوں ویلے استعمال تھیسی جہڑے ویلے کوئی تہاݙے گراواتار تے کلک کریسی۔" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "کراواتار سیدھ: " -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "سائز:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "رواجی ای میل پتہ بݨاؤ:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "ورتݨ آلا چݨو یا \"رواجی\" چݨو تے رواجی ای میل پتہ درج کرو۔" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "سنٹر" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "سڄّا" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "کھٻّا" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "کوئی وی کائنی" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "ٻہوں وݙا (٢٥٦ پکسلاں) " -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "وݙا (١٢٨ پکسلاں)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "درمیانہ (٩٦ پکسلاں)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "چھوٹا (٦٤ پکسلاں)" @@ -2091,7 +1401,7 @@ msgstr "گراواتار" msgid "Insert a Gravatar image" msgstr "گراوتار تصویر واڑو" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "آپݨے پاسہ پٹی وچ ظاہر کرݨ کیتے ہک تصؤیر چݨو:" @@ -2103,28 +1413,28 @@ msgstr "تازہ پریس تھئے ہوئے" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "آپݨے پاسہ پٹی وچ تازہ پریس تھئے بیج ظاہر کرو" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "اواتار سائز (پکس):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "سارے مصنف ظاہر کرو ( جنہاں کوئی پوسٹاں کائنی لکھیاں سمیت)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "عنوان:" @@ -2140,12 +1450,12 @@ msgstr "مصنف دے اواتار تصویراں دی گرڈ ݙکھاؤ۔" msgid "Author Grid" msgstr "مصنف دی گرڈ" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "نجی سائٹ" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "ایہ سائٹ نجی ہے۔" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-sl_SI.mo b/projects/plugins/wpcomsh/languages/wpcomsh-sl_SI.mo index aa7697308a82899823c8d06d3dc52b3c2a008729..30dbd1ac3272256463f7a357f1d88864371ee750 100644 GIT binary patch delta 1935 zcmYk6U2IfE6vwBf($6h)%SsE>E|elzK3bKfSgX(OpTNM-`_oFX3m^B zGk2$&udUAi94>m<(E89S6fZQ!fo~P@pfxWxrXIGy4!8$a!k1tvJPwQD+fY-^z(w#w z$j^Lg`30=No`xEK33eHiH#58}!Lbgn0>q#Kw^??>o3I~%18^9Yz!NYG-?9DYtp6*h zIOnbXgSCIL{2gwf|H{0bH>R3s|0k&NGuFNemB5^}3n||g z>=LL-w(?NC4r}+oIQAZxS4QvKj*p@2FQGD@w*CvS3j4D4&qAH?b*Q`Y7u16L$)Xz` zhN{GOmKR}9fiXYACj3!$#T3(D!TFc-GJ=CX^B7cVQ&1UCKrJ+B{m()+X{Mkma@5+d z!tK~6;8OT2)JCpC#h-)x%pxXf{!%yuYeUpu4iCo)_$1WMU$g^{S^IUU#7;s5K5h8{ zY{34+_Rm=V6{t9~P#e1rwV?t&9r+hS#S7(m(SQilPNPseSPNCctxywNp-R>c^*Q!H z1xP^c(1#KD4AfWg0#u@JKrMI*D(-2^b5QZ}7kF9D%Vq1h1{L5RsEJ{2+Gbb_wNNkA z!b4Cc-4A!cBvhjB!Da9))ckLt#$SZ&E&q6AnH>ISdord8Bp0^1O=%_gLy*?~5qHdKdnLG?N6xSLu3zozovg<8>Cr1B`!g{Iwa zK{aUIf)i?&+TlG&l~VF|APP9&`Yb!)ZT4O0MQaw;--@BKuSY7MZnMr$tq19^S?%5% zFx8f-obE#uHKGorWRu<|_o=Mu^5ag{OGcH< zYgKi@rKU&NqYZr01jzqsPeB3_jtf z{m+ji$9>aBX8V?PwGFxB?x^pXourmXJEIIV1AfBs#+>MbemXvoW-pr$_$jm7jXOEg fc-&XcPI@e;jKqq@T+a_qMPkS2A_YOi^56air=041 literal 6150 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 O%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Oglaševanje" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Žal nimate dovoljenja za dostop do te strani." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Vtičniki" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Nekaj privlačnih besed da motivirate vaše bralce za komentiranje" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Barvna shema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Pozdravni tekst" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Temna" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Svetla" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Prejmite plačilo z WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Pregled" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Nastavitve" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Naročnine" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-pošta" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domene" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Paketi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Vsa spletišča" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Prekliči odgovor" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Odgovorite %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Komentiraj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Shrani moje ime, e-pošto in spletišče v ta brskalnik za naslednjič, ko komentiram." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Nadaljujte z branjem" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Neobvezno" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Spletišče" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Prekliči" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Komentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Odgovori" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Odjava" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Napišite komentar..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Začnite" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Nastavitve spletišča" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Izberite temo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Dodaj novo stran" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Predogledna sličica" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Poimenujte svoj blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Naslov" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Da" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ne" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1301,8 +633,6 @@ msgid "Edit" msgstr "Uredi" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1430,31 +760,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Izloči:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1472,24 +802,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Razreši" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Uporabljeno je %1$s od %2$s skupnega prostora (%3$s%%)." @@ -1626,47 +946,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Fotografija" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1683,19 +1003,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1705,8 +1020,8 @@ msgstr "Poganja WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1783,10 +1098,6 @@ msgstr "Shrani" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1900,8 +1211,7 @@ msgstr "Telefon" msgid "Email" msgstr "E-pošta" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Ime" @@ -1915,27 +1225,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Število komentarjev za prikaz:" @@ -1957,37 +1267,37 @@ msgid "Recent Comments" msgstr "Nedavni komentarji" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "na" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Mreža" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Seznam" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2021,62 +1331,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Sredina" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Desno" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Levo" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Nič" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2093,7 +1403,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2105,28 +1415,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Prikaži vse avtorje (tudi tiste, ki niso napisali objav)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Naslov:" @@ -2142,12 +1452,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-snd.mo b/projects/plugins/wpcomsh/languages/wpcomsh-snd.mo index 1943db05fc06584659461e3ace3d63dcc213c7e5..2bc8eb7d92283727426c9933e3f20e0345bb7c0e 100644 GIT binary patch delta 1488 zcmX}sduYy49LMpq+3nf=f?;Dnx4GK|GfHg8rJ*6I{V}sWTQ2jIZHe$uthMY9os<-R z_`|XdF}Y2YOA@uY#P6Zx56Ys*pZvl5vmH*)_xC#I_nhZkzUOQ=roSH_{*W1S%1{;& zxx}X^V>V#V2p*I#F~;QKAeLhw)|gbRzyMZZJO+_2rV-{W8u>;lrF48}2 z9#P?Ap7Kb*e#}H4)9|Z%{~I+y45P~c&cIaHE=4|O2@krO6|TJ&)xXlY#l5c@YKM*4 zP9>2J4H%7khrTeT1^Ji*JaX_TYC&gF6I?6@bElk13?)z7${t?$6M9uTvwSQp& z^AF`isVpQf8gMbHy%g(k4Qj&6?)`PwzK4uq9yy<(PVFVG#5br7<&xG6jx`Ur(k^0f z{jMFu5^DCCo{)0NIGJdQ(u^F}FT1>|#EW%?r25+GH z^&=niA(8XfN(O0Zz#ljYi<5>|xZ1e^^@A;_1=gTaz7t2{KKK3vX3#!`%48>M!XDH- zeK-Rjpyv6OME*5kG^1(2Bpy?63{Ju&sGV=aso0F#;ThClOBd?*Pp}#X-1miC1ifE| zTF@H2fK~2&G^^6MNntA5Sst<|Gt*gu+Ce#|ZlLh~qFd4!5G5LP<0Qk4>7Ho+pzLPD2kG?7hACJKnLgh#l457dS;r@s&_P=#yp zzv%x;scX$eWlb5>ec)1u%`__i$~-E?1e+WxTwpVYC?u4|afHf*VT>-X(x{>frz6ub zsVo@A%tvMNe<|~7cZXW)yimQjKV*N#)!Xgy*|sA-$KH=Ghzr)&wCrxSfrL`KE@5j{ zeY2_9(ZnOv;O*FB*4H!!?dODrX&ZyJ!9C61@=#+VHrdL+tf)HsI`FIaV`6obJ(zsh zrl(A>n^KDH`IPcZ|F+*5Iqvy4BW?aw&+m$~+uYPc_HydUxOW%%s?Y99%a3iPcFev= zs~Xwmcly`-PI^-5_OJ5nvd7b_v;1EAw7%=`dm`;#q%G1OY3uFI7>KgxvQGa6a-+H- literal 5174 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "معاف ڪجو، توهان کي هن صفحي تائين رسائي جي اجازت ناهي." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "پلگ ان" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "گھرو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "هلڪو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "نظرثاني." - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "سيٽڱس" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "ڊومين" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "منصوبا" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "سڀ سرزمينون" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "جواب رد ڪريو" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "پنهنجو رايو ڏيو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "محفوظ ڪريو منهنجو نالو،اي ميل، ۽ ويبسائيٽ هن برائوزر ۾ ٻئي دفعي جي لاءِ جڏهن مان تبصرو ڪريان." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "اختياري" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "ويب سرزمين" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "رد ڪريو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "ورڊپريس" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "رايو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "وراڻيو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(پتو ڪڏهن به عوامي ناهي ڪيو ويندو)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "لاگ آئوٽ" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "شروع ٿي وڃو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "ٿيم چونڊيو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "چورس تصوير" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "پنهنجي بلاگ کي نالو ڏيو" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "عنوان" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "ها" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "نہ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "سنواريو" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "کانسواءِ" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "برطرف ڪري" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "WordPress.com تي مفت ويبسائٽ يا بلاگ ٺاهيو" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "سانڍيو" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "برق ٽپال" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "نالو" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "ڪيترا تاثرات ڏيکارجن؟:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "تازا تاثرات" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "پنوتري" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "سينٽر" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "ساڄو" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "کاٻو" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "ڪو بہ نہ" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "تازا پريس ڪيل" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "عنوان:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-so_SO.mo b/projects/plugins/wpcomsh/languages/wpcomsh-so_SO.mo index 99aa75131f4360960bf164a07654b5f4aa0d697e..1f3fb77a519dfa69f640eb2696dcd5a0bc7a3e90 100644 GIT binary patch delta 1140 zcmXxjOGs2v7{KvQbHJW}!}-qderN7I=iGDd{B3z1FTRae z-4x0JVkeQT5E;PbN*c=jEh0ns0He5pRrnLb_{UmFXDxXYd$Ae&@hDbf5~-4<31I;v zB1I|M9~P}8+|La+P$yWn{ZFmWZT}0@fnVDGH>hiVZ}X4XPW~AiFvP4naT5()(vG#v zFAf)Vbo3!r254e9i2BB3s1Hop{2Wrnv-!NubEpfxWW9oHj$FeNSi*XCcNMAfftzE@ zFY8=r$2ZhB`h`@fAkmdaP>-h-592WE?|EbkrHK0cqRp?{{1)m0mQZ)}F6s-d*xz4a zQEyn|f-3K4^NKt20Gn~!57`6Nk z|KnWTql2;KG3pAR*nGvhiu%AB>VnttB5oi%S}xkJ$Ef4&EBA=(MICQ9q0e^^TM7GZ zvnbtvN;A=0z7pxdU4*`&E=rF;cVRoxN^BPWxb#@G>>+9h)>GbUDF2((&C;}afw~J? zLWgKN35U?q@*n9!J!Ab4w-Mb$qX~sh)}@1VAr<5@GL#GwCLiiBOQET-H|OS(SrZOV zw9jQ_%+JsS3CB;%DKC?86P}E_DbL&q_cTm+GhRCD3HA+3|CPq?$KrTZ4}$x_1EAO+OeAm? z`ja3YwTbT2;B`>!`k>4oCVdCQqju3rJl{$D0Vwt_gAaqRfcJnuPvftF2ciEGlsNv7 zcng$u-Uh|*JD~V`FYzy+towIR@*~C%0S|#zW*lazf1ZXpu~F%oCV(k z@u+{GlQ{1~kh1RMpu}?!6#K(TKMG2GCzAd&DE7~Sp9R~X#PQ8E{vt@w`yd|m5;~dx z3MhVm0)8I+1t@X<7L@f~2c@2GCjF1#BhcRg#qNDj;`_@0?NEO@BsJ> zD0b_h`0FJ7g~UE6_Acq)2F31spzQl)@Fw^p5M@=Lfh-Q=v@Zc?`|LB0ZcEDa(p>M-PZ z(w|Oz0+hVoY3H+yoE}rGx>1*OY!I{_&QY%p##+;xqfGCz;{gXVN4rLsjtd?2>^|ok z(>dzAwX|(Y9o2c~U0wJps%7g3YK2`-+XM=FWNWpeU8#dw$=MBb0+qQgp!lM|SG5u} zmztRRh=s)9&PEwyGct=2pOTJvKn*wqC8MWnH>Y(}-O$eN+1(o<&Q$Z~y7T`G8h{jY1@ zmB10+WGCyoU#fL8$fb|y5SVcj_^MPJ*b3&UD@f_2lf|d;t1BLl!*Eq}bs*ory=WB2 zG56z^+8mX}JGN?bR|nK)thQ`5FfOXAx`#|s%Bbj)`>T^kwh^O}j;2M3Q)OG1rE!C) zmZ`g{B)?-yt5t^wv|@dg$y-FX=bbO=mg-FE*U1s9lUycqnbcC(Mj6VfZcOW_?i5iy zkBmK!Y~~V674;;yf#QgJnszE*a+9{K=BRN9twtDqV|Api?)!ilBkMUs$W67i*|@5A zO++>tZ8&Su;{4*t#{8+q!b!Zg7Uo;?r=OZfo7uRuvD&z+Z>Zi#w12V9D?*E$y(XYSescCoKRW7YM%_;1mft|@1b`@ptw!G|KY$c-jy zJiE9=)7P_(4xOcirJ3g%7q!!YOCMTv(fV?7rcW$3Pd4WpY)3iItmAf6I2tXAer7B9 zo4QvvE@gKEzmr9|3e=d~KU&jvq{ED|j7q9@&IPlhWe%LPT8CEi4o1{6%k5mQf|+zE zfWA-JfY(mWee{$o-a?qweT56?=T~tEX(U{4P01RC0m?nJ&0U#O#|=y zLu}sipsHxchnOP+TsM)@%;LD=MBt$vuDjId+R9c5NiGadK#sy=e^?ln0aqEBHm<2Y E0v80VtpET3 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-so_SO.po b/projects/plugins/wpcomsh/languages/wpcomsh-so_SO.po index 319a9e79c93a6..0b555548067c8 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-so_SO.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-so_SO.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Kaabayaal" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Mugdi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Khafiif" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Dulmar" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Dejinta" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Dhamaan Baraha" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Buri halceliska" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Faallo u dhaaf" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Khiyaarkaa" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Websayd" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Buri" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Faallo" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Halcelin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Ka bax" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Sawiryare" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Magac Ubixi Baloggaaga" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Cinwaan" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Haa" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Maya" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Tifaftir" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Ka reeb:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Buri" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Ku alkun bar ama balog lacag la'aan ah WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Ku alkun bar lacag la'aan ah WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Kaydi (save)" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "Email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Magac" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Tirada Faallooyinka la muujinayo" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Faallooyinkii u Dambeeyey" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Tax" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Bartame" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Midig" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Bidix" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Midna" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Suraab:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-sq.mo b/projects/plugins/wpcomsh/languages/wpcomsh-sq.mo index 0d426bceb80d2ddbcda0794f00771137d1506d4a..f8dcc598b6e8f339ebbf681abbbfeb04f19dccb5 100644 GIT binary patch delta 8395 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Na ndjeni, s’keni leje të hyni në këtë faqe." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Shtojca" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Eksploroni shtojca" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Shembuj Temash" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Eksploroni tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Pak fjalë karrem për të motivuar lexuesit tuaj të komentojnë" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Përshtateni formularin tuaj të Komenteve me një përshëndetje dhe skemë ngjyrash të mençur." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Skemë Ngjyrash" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Tekst Mirëseardhjeje" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "E errët" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "E çelët" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "E tejdukshme" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Shtoni një përkatësi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Përfitoni pagesa me ooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Perëndim Dielli" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Dëborë" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Ndajnatë" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Kontrast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "E errët Klasike" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "E ndritshme Klasike" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Blu Klasike" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Ujore" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Përmbledhje" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Ndajeni “%s” përmes Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Rregullime" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Fitoni para" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Formësim" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Blerje" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Email-e" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Përkatësi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Shtesa" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Plane" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Strehim" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Krejt Sajtet" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Gabim: hyrja juaj në Facebook skadoi." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Anuloje përgjigjen" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Lini një Përgjigje te %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Lini një koment" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Ruaje në këtë shfletues emrin, email-in dhe sajtin tim, për herën tjetër që komentoj." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Pajtomëni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Jepni adresën tuaj email" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Të interesuar të merrni përditësime postimesh blogu? Thjesht klikoni butonin më poshtë, që të jini brenda gjërave!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Mos humbni kurrë gjë!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Vazhdoni leximin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Pajtohuni tani, që të vazhdoni të lexoni dhe të përfitoni hyrjen te arkivi i plotë." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "Zbuloni më tepër nga %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opsionale" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Sajt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Anuloje" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Dërgomëni komentet e reja me email" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Dërgomëni me email postimet e reja" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Njoftomë për postimet e reja" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Një herë në javë" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Koment" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Përgjigjiuni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Një herë në ditë" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Menjëherë" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Adresa s’bëhet kurrë publike)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Dilni" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Që të lini një koment, bëni hyrjen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Lini një koment. (hyrja është opsionale)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Site Web (opsional)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Shkruani një Koment..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Fillojani" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Verifikoni adresën email për përkatësitë tuaja" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Rregullim sajti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Përfundoni ujdisje Sensei" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Përfundoni ujdisje shitoreje" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Përditësoni skemën grafike të sajtit tuaj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Aktivizo ndarje postimesh me të tjerët" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Instaloni aplikacionin për celular" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "S’u rikthyen kartela." @@ -563,134 +119,6 @@ msgstr "Ka tashmë një importim në xhirim e sipër." msgid "The backup import has been cancelled." msgstr "Importimi i kopjeruajtjes është anuluar." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Hapat pasues për sajtin tuaj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Shtoni te sajti juaj bllokun Pajtohuni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Importoni pajtimtarë ekzistues" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Shihni matje sajti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "Ujdisni ssh" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Instaloni një shtojcë vetjake" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Zgjidhni një temë" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Ujdisni një ofertë për përkrahësit tuaj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Lidhni një llogari Stripe, për të mbledhur pagesa" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Shtoni faqen tuaj “Mbi”" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Administroni planin tuaj me pagesë për Buletin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Lidhni llogaritë tuaja prej mediash shoqërore" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Administroni pajtimtarët tuaj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Shkruani 3 postime" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Merrni 10 pajtimtarët tuaj të parë" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Aktivizoni dritare modale pajtimtarësh" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Përshtatni mesazh mirëseardhjeje" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Fitoni para përmes buletinit tuaj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Përditësoni faqen tuaj “Mbi”" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Migroni lëndë" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "Verifikoni adresë email" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Pengon krijim postimesh dhe faqesh të reja, si dhe përpunim postimesh dhe faqesh ekzistuese dhe mbyll komentet në krejt sajtin." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Aktivizo Mënyrën “I kyçur”" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Mënyra “I kyçur”" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Që të merret pronësia e sajtit, kërkojmë që personi që përcaktoni të lidhet me ne përmes %s me një dëshmi të vdekjes." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Zgjidhni dikë për t’u marrë me sajtin tuaj, kur të vdisni." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Kontakt i Dikurshëm" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Pronësi e Thelluar" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "Mundësia “Mund të regjistrohet cilido” aktualisht është aktive. Roli i tanishëm parazgjedhje është %1$s. %4$s Ju lutemi, shihni mundësinë e çaktivizimit të këasj mundësie, nëse regjistrimi i hapur s’është i nevojshëm." @@ -720,149 +148,37 @@ msgstr "Kartela s’ekziston" msgid "Could not determine importer type." msgstr "S’u përcaktua dot lloj importuesi." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Ndani me të tjerët sajtin tuaj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Përpunoni një faqe" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Sajti juaj përmban stile me pagesë. Përmirësojini tani, që t’i përdorni dhe shkyçni një mori veçorish të tjera." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Përshtatni përkatësinë tuaj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Shtoni faqe të re" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Shpini trafik te sajti juaj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Jepini një emër sajtit tuaj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Kërkoni përkatësinë tuaj falas për një vit" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Dhuroni" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniaturë" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Ndajeni “%s” me të tjerë përmes Publicize-it" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Ndajeni në" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Përmirësojeni planin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Krijoni Buletin me pagesë" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Ujdisni metodë pagesash" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Zgjidhni një përkatësi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Filloni blogun tuaj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Përpunoni skemë grafike sajti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Ujdisni sajtin tuaj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "I vini Emër Blogut Tuaj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personalizoni sajtin tuaj" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Ngarkoni videon tuaj të parë" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Ujdisni sajtin tuaj të videove" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Bëjeni sajtin tuaj publik" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Shtoni lidhje" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personalizoni Lidhje te Jetëshkrim" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Përzgjidhni një skemë grafike" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Nisni të shkruani" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Shkruani postimin tuaj të parë" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Shtoni pajtimtarë" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Zgjidhni një plan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personalizojeni buletinin" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "S’arrihet të ngarkohet klasa %1$s. Ju lutemi, shtoni paketën që e përmban, duke përdorur hartuesin dhe sigurohuni se po kërkoni vetëngarkuesin e Jetpack-ut" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Aliaset textdomain duhen regjistruar para grremçit %1$s. Ky shënim u prodhua nga përkatësia %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "Programthi “%s” varet nga wp-i18n, por nuk specifikon “textdomain”" @@ -1063,27 +379,27 @@ msgstr "Jeni me fat! Hartuesit e temës tuaj grafike zgjodhën shkronja specifik msgid "Uncheck to disable" msgstr "Hiqjani shenjën që të çaktivizohet" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "ID Prurjeje Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "ID Prurjeje Podcast-esh Apple" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Titull" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Prurje RSS e podkastit" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Dëgjojeni në Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Dëgjojeni në Apple Podcasts" @@ -1095,98 +411,114 @@ msgstr "Shfaqni të dhëna rreth podkastit tuaj dhe lejojini vizitorët ta ndjek msgid "Podcast" msgstr "Podkast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Përzgjidhni kategori iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Caktoni kategori podkasti" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Caktoni fjalëkyçe podkasti" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Caktoni figurë podkasti" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Pastroje" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Po" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Jo" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Vëri shenjë podkastit si eksplicit" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Caktoni të drejta kopjimi podkasti" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Caktoni përmbledhje podkasti" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Caktoni autor podkasti" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Caktoni nëntitull podkasti" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Caktoni titull podkasti" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Kjo është URL-ja që parashtroni te iTunes, apo shërbimi për “podcasting”." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Prurja për podkastin tuaj: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Përzgjidhni kategori podkastesh:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Kategori blogu për podkaste" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Kategori 3 podkasti" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Kategori 2 podkasti" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Kategori 1 podkasti" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Fjalëkyçe podkasti" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Figurë podkasti" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Vëri shenjë si eksplicit" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Të drejta kopjimi podkasti" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Përmbledhje podkasti" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Emër talenti Podkast" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Nëntitull podkasti" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Titull podkasti" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Përpunoni" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Shtëpia Ime" @@ -1428,31 +758,31 @@ msgstr "Kuota hapësire disku" msgid "Disk space used" msgstr "Hapësirë disku e përdorur" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Klikoni për më tepër të dhëna" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Numëro objekte në nëndrejtori drejt shumës mëmë." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Përqindje shkronjash maksimum:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Përqindje shkronjash minimum:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "ID kategorish, ndarë me presje" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Përjashto:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Numër maksimum kategorish për t’u shfaqur:" @@ -1470,24 +800,14 @@ msgstr "Kategoritë tuaja më të përdorura, në format reje." msgid "Category Cloud" msgstr "Re Kategorish" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack-u është shkëputur & sajti është privat. Që të administroni rregullime dukshmërie, rilidhni Jetpack-un." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Përditëso dukshmërinë" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Kalojeni sajtin publik" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Hidhe tej" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Keni përdorur %1$s nga %2$s kufiri i ngarkesave (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Shfaqni fotot tuaja më të reja Instagram." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Jetëshkrim" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Titull" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Mos Shfaq Emër" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Shfaqe me të Vogla" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Shfaqe me Mesatare" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Shfaqe me të Mëdha" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Shfaqe me Ekstra të Mëdha" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "URL-ja juaj about.me" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Titull widget-i" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "Widget-i about.me s’do të jetë më i përdorshëm pas 1 korrikut, 2016. Pas kësaj date, widget-i do të shfaqë një lidhje të thjeshtë tekst për te profili juaj about.me. Ju lutemi, hiqeni këtë widget." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Shfaqni me një miniaturë profilin tuaj about.me" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "S’arrihet të sillen të dhënat e domosdoshme." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Krijoni një sajt ose blog falas te WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Krijoni një sajt falas te WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Bazuar në WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog te WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Ruaje" msgid "Activate & Save" msgstr "Aktivizoje & Ruaje" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Administroni rregullimet tuaja për dukshmëri sajti" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "Kjo shtojcë qe instaluar nga WordPress.com dhe sjell veçori të ofruara në planin tuaj të pajtimit." @@ -1898,8 +1209,7 @@ msgstr "Telefon" msgid "Email" msgstr "Email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Emër" @@ -1913,27 +1223,27 @@ msgstr "Kërkesë Rezervimi" msgid "Reservations" msgstr "Rezervime" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Shfaq komente prej:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Ngjyrë sfondi e tekstit:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Ngjyrë sfondi e avatarit:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Pa Avatarë" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(15 e shumta)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Numër komentesh për shfaqje:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Komente Së Fundi" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "S’keni pëlqyer ndonjë postim së fundi. Kur të ndodhë, do t’i shfaqë widget-i Postime Që Pëlqej." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "më" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s te %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Pëlqime autori për t’u shfaqur:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Rrjetë" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Listë" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Shfaqe si:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Numër postimesh për shfaqje (1 deri 15):" @@ -2019,62 +1329,62 @@ msgstr "Votova" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Shpalosuni lexuesve tuaj se votuat, me një ngjitës “Votova”." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Tekst i shfaqur pas Gravatar-it. Kjo është opsionale dhe mund të përdoret për të përshkruar vetveten ose për çfarë është blogu juaj." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Lidhje Gravatari. Kjo është URL opsionale, e cila do të përdoret kur dikush klikon mbi Gravatarin tuaj:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Drejtim gravatari:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Madhësi:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Adresë Email Vetjake:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Përzgjidhni një përdorues, ose zgjidhni “vetjake” dhe jepni një adresë email vetjake." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Në qendër" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Djathtas" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Majtas" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Asnjë" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Shumë e Madhe (256 piksela)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "E madhe (128 piksela)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Mesatare (96 piksela)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "E vogël (64 piksela)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Futni figurë Gravatari" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Zgjidhni një figurë që të shfaqet në anështyllën tuaj:" @@ -2103,28 +1413,28 @@ msgstr "E saposhtypur" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Shfaqni te anështylla juaj një stemë “E saposhtypur”" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Madhësi Avatari (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Shfaq krejt autorët (përfshi ata që s’kanë shkruar ndonjë postim)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Titull:" @@ -2140,12 +1450,12 @@ msgstr "Shfaq një rrjetë figurash avatarësh të autorëve." msgid "Author Grid" msgstr "Rrjetë Autorësh" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Sajt Privat" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Ky sajt është privat." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-sr_RS.mo b/projects/plugins/wpcomsh/languages/wpcomsh-sr_RS.mo index 1b36732528438cbe302e15a5390615cdbac210d1..beefc0f36996b71559e110a9f429680d72b124e9 100644 GIT binary patch delta 3047 zcmY+`32anF9LMq5LZRjAMN3Em!1+QZ?-o=g>$xThfVH~Dl zGWNr^I35#?@ta~2^l7S44K2iWxYThKY5;4IKeLfrHg3l}{1kKW7SfpK&~ok>oF7DgJ;_IIweg1|u+@{A^UcI#k0RRJ}ErfE%z9 zn^80V(|LZ+$+u^=>GW?pk)RKgi>f#jHKS2Zz7Dk_4H%0)?1nF(2CxG)pxwwKn2%8P zPodg7>v+y7zkqrb-=M!2iC;;mfkdXErR#&LP~hZ?Q4N(Luh-1M2wdRgtDWawRL4H- zj?bV5xD7SI9jJEqq4wJ87}lS(`JS69{(|c04(bPYk<~I$Ok2;Ba18dqOsqt0uJyE2yQvi5mGGq)pR~oum~=#th6xHB^FH zp)#bZnU6X}OHdP8h7<5z)T{d0@g`Qfm?-jR{L>k(&hbL@;(MrFoWyk1a5}OmrV#Z` zi%=a`;Q(BWIrtXpcV|%bT2TYKf%JUtt*FgZMk8a;gIeMPNE7Cm<9XCdUc(RZk5HZ#_R*@|C5a#b@VxEsV}1HT}E|q6Cc5Uum}gIh1*??s@IHqz6aCsGWxZdT;$Y2 z6l&LJqLwZP)zMfCtpMhcFGqFwij&`tOv;?Wfp`_QSySBM6&i`EKMB>(T-5U>H*Zi4 zZ=+xr?m>;bglTK3Uqgz_5y!8vH~HUDrzDjOlQ4Zzr==J*;BwS}s_|)Dhnmn0)JjCs zyYlfFewLp^UkXm+44i~Xd|mcp6{^ALtnjglN9~PqsD>&~o2njJb+ZEB#H~)gkXfi+ zDY~%|3vdl;fCu~}CXo0NwG#1+MoW}|oES42^-AWT23C$c@g1jpe4p_1Vsufi>!~pR zySFFzFi}iANem@w3Fgn}i9y6*Ld)8h;8Z=hw6r>Uvz!v`dfq^2FKCc+obvnV7>D)` z>ga0V(+Rdk=;%I%x|*E+LtmnBQTPli9YG8u`YFT31WgICfY34HO+C0Gom3PqCmIQT zyy}R>#N))H#0-Kr6S{b_rbhFxCZTsRB~;AubG(m-gf@}hd&B+0|G1iT5uw-UCVYhU z#0o-}zIttlkpv&t(4{@0YpT{?XL2?%jff_6wF?tEP9sP!BIXlp;LwhrhjR&ig0(-` zKB50|Mq>prksNfbS^Q9SW0+_;Y2>6O}daM zAeIm-3GMtULL2u9;{IhbV`}VynCVd-uV+<*cUhB7j$L3k#^!YJHq?7+-7~#jkDVO% zM!T9t3zjYR*}vm9+SlXV_OJLd+mtXla3vwlWit}`mBX!Tg9n2jw?0S3Bf&$YPXrGJzUbY>Wv^xw+aEIz*=t#E2hL{~ zM%alt744ftwNBc5Icb3jeLK2RcLhJ8=y32zYjg0ZJ9sR3QZ2T=NT)mc4Ye`3`JG#+ zK&95_H6;6L?s}WnKQnp@CF?XyTi?IJHs+<+y?L7g)ACzffs6rJ5rO#wyGGbcgL(vF I2X}P+3vOnEM*si- literal 14107 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Маркетинг" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Жао нам је, није вам дозвољено да приступите овој страници." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Додаци" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Приказ тема" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Шема боја" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Тамна" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "светла" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Додајте домен" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Покрените плаћање путем WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Залазак сунца" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Сакура" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Сумрак" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Контраст" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Класична светла" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Класична плава" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Водена" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Преглед" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Подешавања" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Подешавање" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Куповина" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Е-пошта" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Домени" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Планови" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Сва веб-места" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Грешка: ваша пријава на Фејсбуку је истекла." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Одустани од одговора" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Оставите одговор на %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Постави коментар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Сачувај моје име, е-пошту и веб-место у овом прегледачу веба за следећи пут када коментаришем." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Претплати се " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Унесите адресу своје е-поште" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Наставите читање" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Необавезно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Веб место" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Одустани" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Шаљите ми нове коментаре е-поштом" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Шаљите ми нове чланке е-поштом" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Обавестите ме о новим чланцима" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Недељно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "Wordpress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Коментар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Одговори" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Дневно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Одмах" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Адреса никада неће бити јавно објављена)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Одјавите се" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Веб место (необавезно)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Започни" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Поставите мобилну апликацију" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Одаберите тему" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Повежите ваше налоге на друштвеним мрежама" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Додај нову страну" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Умањена слика" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Надоградите план" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Дајте име свом блогу" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Додајте везе" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Изаберите дизајн" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Наслов" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Да" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Не" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1300,8 +632,6 @@ msgid "Edit" msgstr "Уреди" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Почетна страница" @@ -1429,31 +759,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Највећи проценат словног лика:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Најмањи проценат словног лика:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Изузми:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1471,24 +801,14 @@ msgstr "" msgid "Category Cloud" msgstr "Облак категорија" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Покрените сајт" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Одбаци" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1625,47 +945,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1682,19 +1002,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Није могуће преузети тражене податке." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Направите бесплатно веб-место или блог на WordPress.com." -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Направите бесплатно веб-место на WordPress.com." @@ -1704,8 +1019,8 @@ msgstr "Покреће WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Блог на WordPress.com" @@ -1782,10 +1097,6 @@ msgstr "Сачувај" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1899,8 +1210,7 @@ msgstr "Телефон" msgid "Email" msgstr "Е-пошта" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Име" @@ -1914,27 +1224,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Боја позадине текста:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Боја позадине аватара:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Нема аватара" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(највише 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Број коментара за приказ:" @@ -1956,37 +1266,37 @@ msgid "Recent Comments" msgstr "Скорашњи коментари" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "на" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Мрежа" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Списак" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2020,62 +1330,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Текст приказан након Граватара. Ово је необавезно и може бити коришћено да вас опише или о чему је ваш блог." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Веза Граватара. Ово је необавезни URL који ће бити коришћен када било ко притисне на ваш Граватар:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Поравнање Граватара:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Величина:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Прилагођена адреса е-поште:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Изаберите корисника или изаберите \"прилагођеног\" и унесите адресу е-поште прилагођеног." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Центрирано" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Десно" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Лево" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Нема" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Веома велико (256 пиксела)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Велико (128 пиксела)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Средњи (96 пиксела)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Мало (64 пиксела)" @@ -2092,7 +1402,7 @@ msgstr "Граватар" msgid "Insert a Gravatar image" msgstr "Уметни Граватар слику" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2104,28 +1414,28 @@ msgstr "Свеже објављено" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Величина аватара (пиксели):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Прикажи све ауторе (укључујући оне који нису написали ниједан чланак)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Наслов:" @@ -2141,12 +1451,12 @@ msgstr "Прикажи решетку са аватарима аутора." msgid "Author Grid" msgstr "Решетка аутора" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Ово веб место је приватно." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-su_ID.mo b/projects/plugins/wpcomsh/languages/wpcomsh-su_ID.mo index 560aa7f4e419fc5f6922c1cc9253d7e4d64c4ac6..276b814f330b6545885e3f2c4017872a9521d7d1 100644 GIT binary patch delta 1545 zcmXxkPi#$T7{~DkrM>NKnW9=V)vE@r&M@dO)WWoth&EJ77c&u#_PD)zom=g_rcH(p zV;0f{$q5-Vv9Q8MDykxa_|vdJVueJciG<9iHp8k3-{0-)&3Vq}yzhDYKJTA%8&>>X zHt@PQ=d@8a5Z@3JQ_ObYt7+UQRnyI)SdI0#1|!&yx%el3g@ag%=P(CHa4z1&B7BB3 zaLoA*`TGGI=b@1oA8{tu(Mtm~p%S$?e?huf2j<~^RKH$lA68R8j9hksoBCfy^&58H zKrXw@t(5#W%7a$&I@@6O7WD_8a4P2TG9PnM?ZwC|n}=WH0#u^)s0D0v^%hkBHq;LO ziiOyT8t)KB$Ztn^P{%#qIbKxvYlmQKHqTem|p5 zb2Dl|&CYE&5aqmEc_`+^Zn7(357K0Pr~!}SY&_vShnnye)ESSUR{j{3@D*yDH>iI9 z;c6U5eIu33TK($s+5Z9_>S@qNvK8rLyPR?4vV+_-;P3c79zzW<c}Qg6DuuX|Ft#c%tB|h5S3^-DnTuNi*=|0_Mj%(>E8e5Jc6@m{|ohN zID=evk((wmjLLHx$!+&gJN{&V2PGUs&HSyazei2r18Qq0unnWkQWI&%IoO37@DJ3A z22p2x%GE>Ugl#RMvWUzF zKN01GjzPa76&*os_GxmLwS%j&^%Z7Zwwzc>{6PFjR1qpVg2mY<_gfFI&A42d_T#CZ z{#ZjYmFchsKS=vM*3jt%ao-yKeO@M+4)5f)h2?o&Mf=j$oap72ipLT`_$cqt+?LK% z;9INT&L74aQU?xTZ@52F75*E^4@V*oub#|5J|(P)mgm%aU74^ux-}e)9xH3Qe<^79 ztkLUEdp%xY&Hi3L9ZRO-;ZR{oc)l=QveQrc-KoG@yaXL$_fG`zxR(q!7Og7SlIh4K aV>=S*OmBF$=tbeCpx?8ujCCXe&prdKU8kY| literal 3987 zcmZveU2I%O6@Uklmevg|G^9{MUD8m0JChiP69 zkHR;>3Oooe!Xt1IvP2mudfM<#SorZzc|HdDQ(vHY9lQ=j&o}+}w>+PLGmJk6?}E47 z)?ar7%KT$c>^tr`4CN^ILH^YJG%|12^Aa4QzXHY19+deXhob*cco;qjW!*RY?@#;w zccHBNKEx#TBPf3OiSNJU`+tVA{s6||Vs#rFfOkL{zXyt*qwpv^4q2iefMU-a6#dIk z?Aq|-*0Tde&s8XX-iEJ*pM;|42`Kwrhy1ChXk@>qegAt<)<5U_&%=A@{|w6hfAHgf z@%?{5S^sY+dJoV%2=9bq=Oa+|Z$p{4?Z-a`S)x7-55UKv_~VP7Pr^g5QtB)4ZpOcM zM}Plkp`7D~Q1t&8N?d;K`Fkk#{}W2y{RfKOhjE7F=eBkLyo_@w7NlzY1Z#ov!Wu|I|4mybZP_cMO{3E#gC z#jdYHImg$b#Qi%^_IUw{o)>-pmr(5a4U~Ak1RsKbhhpyngKvNjLeaPBc@@h3ABEzN zN1^21W4`}+NZP3fkiF+U{zdM=yZrksJdRvImJ!K?X+&(22Q&5`@q^fO(vN5;drMr{ zu6)GSaYW82@!NYA{L3P|51IG@fhpiq=t_@Z9M(U=~X{B-Dnz|8(aavVVVcaSkja66Tv{_4SmW?#xNKG5pu%U-e zZ4&nA^%m)lfLw~cFAH62G01JLDxD=ceFGjJ_6W73YAv74p{b2SrW zQIKWABs4v3!cd#O;d(G|jj)h4nv-N!ciXXUn{BIIoa=5H#4 zk*j5MEr^OpZ{jwc*tCHU*`cbIiG*0c9Jp7WaG6|Cmt+2PKjay&PKMIRgz9n;)orTd z%{}WfF(_-t-Ktti@*s9hs)OuI4Ema$v#BWa>lU9t6yQ>y(NqdrJV)O#v+s(GD^@f3zlt>#Q&3ddc5LBv*MuC;spZ|BmeGqQhjAK^Yp%u4t8qP$ z{R5e^UW7%jTosvyQMGt?r=zA!r%x{yJI|1&d&WIy(WRdF1WiBiZKfur@wfu zz@l8QQ$Ss-Od zz8P|oSDYlJO-hxCBrF95!6n8gLBF$C%`O!Y>4N7aT&2TbcC@Oh1!2JbMOA1Mxr=38 z^D)-DpLMMkyOpQJ{=8@xYAuKoi=RvAnn@)qN)>oUJV;$50&)O8#JS<+Qqe3z$#cHB zazk4DfCdUrkvQYijrzs`L^_$&xS-0uH_{oMos9GD?nJD>4Oo-*HTT=9S|s5(YK?EH z+bY7nKA|l8L=_9HSwDFM%IwN}7rePr=*O}>JIYH@~PG0DiEix2yQq%sQ lLf6mJ8@YlFL6?6$%2X@QtGl~9^_$Axtm_%YC86{f^%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Poék" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Béngras" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Sareupna" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Panataan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domain" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Bolaykeun waleran" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Waler %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Tunda talatah" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Langganan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Tuluykeun maca" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Pilihan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Situs wéb" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Bolay" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Pairan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Waler" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Kaluar log" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatur" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Judul" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Enya" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Teu" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "Ropéa" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Perséntaseu aksara maksimal" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Perséntaseu aksara minimal" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Iwalkeun:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1469,24 +799,14 @@ msgstr "" msgid "Category Cloud" msgstr "Méga Katégori" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Rampung" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1623,47 +943,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1702,8 +1017,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog di WordPress.com" @@ -1780,10 +1095,6 @@ msgstr "Simpen" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "Telepon" msgid "Email" msgstr "Serélék" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nami" @@ -1912,27 +1222,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Warna latar téksu" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Warna latar avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Tanpa Avatar" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(paling seueur 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Jumlah pairan anu seja dipintonkeun:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "Pairan Énggal" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "dina" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Daptaran" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Tengah" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Katuhu" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Kénca" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Tanpa" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2090,7 +1400,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2102,28 +1412,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Ukuran Avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Ilik kabéh panulis (kaasup anu tacan kungsu nulis)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Judul:" @@ -2139,12 +1449,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-sv_SE.mo b/projects/plugins/wpcomsh/languages/wpcomsh-sv_SE.mo index acbac2696239e288ad2a3309c9ed251904e5add9..a66625f4b2190b9bbb4090c7f75380f0830722e8 100644 GIT binary patch delta 8663 zcmZA52YggTyT|dfA)%K52?PjXAp{`=2)*|tbP@MLAS?(e_n#LMTN56^yQ=Cqk-=A2#f+ntqmZI1|^ zs~35{#Wu}lS@9TI!?I3Lz8I@k%j(h8vZ`WFtd4`QC626Y=&=O8~hSG zVf6&dYJ`2U4o<{ePO}Or)TiMcEWmT9d#7`iK{y3#;}+yv)-J4u?_vWyiII2_yWuZb z1zWoY9%!6n3k*iHBZY$Iq%Z2kQCJJ}P^q8e)R&@;TZbKR z3#Q@ws2kU3VT{IRsN;O-#wD17TQLcbqt?uomgHYOYeK6|XpfQD4>cu&9Y*PbAN9SMg}#U9BD)JUF1-RLB$L+5ZBUO^2gi-WX(yyJAdK)oP=4zxv$v>)oi85n+^9p|7rekaz%&8XvdqB{5@_QjX6 zx}N{vDMZkqC0!jVp;BHOm9q92gBhq7&J@&z%1|Sjhswkftb?mj9eo&^;4b6|w2nFL z7f~6#A-TU5l}b9X2DWx_16+;EJ6hJQScmyo$Nr)&_DKFfW$Xs(M$uhu6CJyuGBONn z;S|*IUdM%4hx!@}YPCK>K?gpE%D`)=)Ez~o_@q<+8TB1;9cN)2?^|7HIV$BFQPJ=AqhUfJ0MFsGcnsI{v8+Qlo~8dfHsYCo4}+gl;5oFO=+9R$mJYD2!`N#eX-0hq z?}h#N5&8$)CuXGC8H-7`?TO9VKOHyWQrv@0GwjFsBWz6lD(XJzrM%u3k-l1)!|gZdeOQh9^QcU|icxp~ zE9?0`Orbgr$8ijvLY>fNguRM8V-@NHP*XJ&HHWvN7VS(-#QC@iH=!0~(n$OL&;xaR ze{|y*)FLdyk$V1DP|yh{uqJ-*_^Z=yjk2t%wAaT|`v!hPVME@M+YDpG7UU{m%XqsFeSNdLOvP+Nn-J z9oNUHXJZ2OIan9(#b|sCb)V2!@*hXxUFU#rQT6{|Bdn8cXQqu~A5`ixQHv=Lo8S^u zM;}IYU?=JZZ=yPS8r9LusBhJpzlO4%ONDm{TZ z;WReD3#cz0>sI@?DyZXHAblF2SA%sw*1!)@89R&0MDQvFjidq3PE~A) zx?nqOh@DXMJFz*cwxmC5MIc1IhduG`$HC!;dl5jj6-O`@P1 z7NBlaZ11pEVJ!9gQ71fusdxh0V&oM27fdRuy$ChJhftY%9ChRU*ccC^GWR9wxF0ZD z&;PF!>eCR(Gp5xUhZ;c})PbE*?}z@VsThu$+sUZMX*KHj6F34tM`fnXG<%A=VG{N6 zsQ1JoRHn9KZ9V@-DCmTfs2+cfnv$PT9lD0M7U^r#mje?$oy+uLA26 zRL7HUvmd`y)RYcFU3W4DwMb?;JCJOkgau8$iT~r6Z#I1M@;B%;vA4E;n8PwDAZGO;x=Xdg0Ru>wU<4}AB)qx0x z5s7Zp8!QPmqVA}X_Q%SYjT+%(REP4g6MC@`ZbEfrFY35s_yv9xbPjm2&|dw=Q6oE# ziCDGB{#s2zU0^gS6FI007o$eL0`;^!fKBjO)RY}Xt)-Kwfqa8Q@jPmA2RnN0l=el9 za3HD!*_e!e)Z?@Tm64ZFBRqkX@igiU`Xy>nT}E}tnrU|=8a0pi-Z_R8hRgFRrE%Ph9jHHv>ewk7`?X#e+-j7t`K5Y)_${j;nYW8!Y3;2cAW}QMa&y^;o`x$MJh?j-lXk`%B^^ zvf!=XFcN3nW&bbLgABsjj)SrB3i};D9d-Nzs0&A|w14X*U=H>5*aCk+O+m~mdvQ0# z%G6t96%2Nupw-_Ur(-%Q^*d0H&-17QU&B~Dj1BNJ)KhTlC&vw!VAkNR$iUC(r58HT_Af27cshU=(Q-oh|+qrq4SGq5@i$Er9UHL~d# zjYX(My8w0ED%8_qFd836rF<`HYF|TT_#jqeJz4KN2Yiakz!%N|mry5MbN2s@nu;if zr5n~lO;J4RxHhN@w?}ob7plW)SO-U;u0IVmuvr-X`(G&qowyX;cn`WzTO0*r7ytSE z_Mehni07Em#8*^*x@n)6@?_e(VHec4hPa<-MMS%J{xyO>h&1PbLHGl8Z9{FsD|#&D zEa#YCC^vKVRq#B8Kx~${0VU%p{)_^Z`#H1XRM3-D|M;tP|D8Vv{S`)L<;*( z<90&-CwLI|6OR)+h%%y>(Do|Pf@3a(Ypf;8X-@e)$JyAHNF{D){-YII@Y4T2u~8Th>EQV?G336L;Zc}VakQX93r@r zkB5kgO$#QmqJpD1;e=DyBC6P`)1FRDB0AD|m|)phe&>MK9P6=PKk>Q~?Fnsq)$3it zJ1rP~MCwx+$j(mqGBKHWlF-(N(7U@a``bAec#*oEghz?qw7r9yh*g9(y)m_QCX(3y z77iiw9?@@%&(Pi~@=xs!B8Ht`V?Ck|Wo<7Iy}~7)W7cqd=9D+1-Wz(0 zYTHG;MC>KHu|I+6OSuQ$f(ZoU=lh&Es|wo;;%61uwi5G*Tvgaoh+D%Y%lZ;Ka-mZ= zinv7lPMjl#5#JEnJjB9qiARp(`2q}Yck+3e2#^1B3V#ySIG_`8^LCX=25r-DHL-;l zPqZh76aOaodbj=}Zr+}DDz{^Eq5;v;x%OzvB}B4w|L`B6sfYiba}-+;1Bq;+A16(~ zWyC&WIQ4AeDato*+o*J)U0Y4;>Xhvk20*=$+T;mLQHVVXDD|iBAj|YE{03? zuPKVb@PC7@P%0qmbJB7AAEGVgsl*t{6&jB_+m0w;NQ$8}OF;a*Ex9v$IWV z`;5?%_Q@`@zk}aQO>I}nSLinh9a~l_@%jqg*`=jE6WQs{m~wxhw8WiWlH)Dr7Wri! zzrUAR)H$K$lDv>(|+A=zq!_8_>7vf>QqPFw#?CZVa3r zS?K1>w86(~m(6nL_}v~Z>CK}DE7Be{-O?wRN7Eadv+2Xk(2UjQLPnrQR#B?Iv??R7B7~9rN8hgYfXXn;rgk|n|o?N9YbS-;C?ND~^$OtprQxN*vljt(t z3KOdbO5KCX{a&BPZ}t@BnepBhX4tE7=1Fg6sNc+0K6?+TSEiI8VbJIdC=B;p$SE^@7beyiQCd>s zDRcXMIc1?vi|V;t1I-(oV_dz=!Np1S2F_)j`UtaS)gxx=-CazRHSwX`)wNyb z>Y5?7!mDG#p&dRyV>G_CMO8`*3)K;GW!+b1_`UIF?!Awi)*B|9%^Te2#|;xq(S0wN zE@n>6ah_sNL8;Hm(AsFYF+0lmA6gRcTaY))!!pgUSRC!jefgd;mWQXbBU>&TW_Kgr0ffqX<*@(t^;Xm$F=D{>yD^1-!+@6-&l%hQCr~YQCDpnpql3 O*!NpxX!RR2UH=Q3A{R3N literal 49652 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 ^iVjW-KA))&RGVV>YTE@iHIY1YhNKEF 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 gXG?)D8V(lB&JE*`0+!*1J%3$s" msgstr "%1$s på %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Du kan ändra din Gravatar från din profilsida." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marknadsföring" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Du har inte behörighet att komma åt denna sida." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Tillägg" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Använd WordPress.com äldre adminpanel för att hantera din webbplats." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Standardstil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Använd WP-Admin för att hantera din webbplats." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Klassisk stil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Administratörsgränssnittetets stil" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Utforska tillägg" @@ -72,424 +42,10 @@ msgstr "Få tillgång till en mängd gratis och betalda tillägg som kan förbä msgid "Flex your site's features with plugins" msgstr "Utöka webbplatsens funktioner med tillägg" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Showcase för teman" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Utforska teman" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "Djupdyk i WordPress.coms temavärld. Upptäck de responsiva och fantastiska designförslagen som väntar på att ge din webbplats liv." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Hitta det perfekta temat för din webbplats" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Några trevliga ord för att motivera dina läsare att kommentera" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Aktivera block i kommentarer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Låt besökare använda ett WordPress.com- eller Facebook-konto för att kommentera" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Anpassa dina kommentarsformulär med en smart hälsning och ett färgschema." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Färgschema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Hällsningstext" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Tillåt block" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Mörk" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Light" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Genomskinlig" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Lansera din butik" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Lägg till en domän" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Få ditt företag att växa" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Samla in försäljningsmoms" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Få betalt med WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Lägg till dina produkter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Anpassa din butik" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Solnedgång" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Pudersnö" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Skymning" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Kontrast" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Klassisk mörk" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Klassiskt ljus" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Klassiskt blå" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Hav" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Översikt" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "Dela ”%s” via Jetpack Social" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Klicka på \"Webbhotell\" i sidopanelen för att komma åt inställningarna för paket, domäner, e-post med mera." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Inställningar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Tjäna pengar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "Övervakning" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Konfiguration" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Köp" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-post" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Domäner" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Utökningar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Paket" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Webbhotell" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Alla webbplatser" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Fel: försök att kommentera igen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Fel: Din Facebook-inloggning har löpt ut." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Avbryt svar" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Lämna ett svar till %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Lämna en kommentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Spara mitt namn, min e-postadress och webbplats i denna webbläsare till nästa gång jag skriver en kommentar." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Kommentar skickad" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Prenumerera" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Ange din e-postadress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Intresserad av att få uppdateringar av blogginlägg? Klicka bara på knappen nedan för att hålla dig uppdaterad!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Missa aldrig ett slag!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Fortsätt läsa" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Prenumerera nu för att fortsätta läsa och få åtkomst till hela arkivet." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "Upptäck mer från %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Laddar in din kommentar …" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Vi håller dig uppdaterad!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Frivillig" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Webbplatser" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Skriv ett svar …" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Avbryt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "E-post för nya kommentarer" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "E-posta mig nya inlägg" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Meddela mig om nya inlägg" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "En gång i veckan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Kommentar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Svara" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Dagligen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Omedelbart" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Adress blir aldrig offentlig)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Logga ut" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "Inloggad via %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Logga in för att lämna en kommentar." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Logga in för att lämna ett svar." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Lämna en kommentar. (inloggning valfritt)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Lämna ett svar. (logga in valfritt)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Webbplats (frivilligt)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "E-post (adress blir aldrig offentlig)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Ta emot aviseringar på webb och mobil för inlägg på denna webbplats." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Logga in eller ange ditt namn och e-post för att lämna en kommentar." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Logga in eller ange ditt namn och e-post för att lämna ett svar." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Skriv en kommentar …" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Kom igång" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Använd WordPress.coms guidade importverktyg för att importera inlägg och kommentarer från Medium, Substack, Squarespace, Wix med flera." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Gå till %1$sJetpack-inställningarna%2$s för fler skrivinställningar som drivs av Jetpack." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Schemalagda uppdateringar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Verifiera e-postadressen för dina domäner" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Webbplatskonfigurering" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Slutför Sensei-installationen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Slutför butiksinställningen" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Uppdatera din webbplats design" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Aktivera delning av inlägg" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Installera mobilappen" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "Inga filer är återställda." @@ -563,134 +119,6 @@ msgstr "En import körs redan." msgid "The backup import has been cancelled." msgstr "Importen av säkerhetskopian har avbrutits." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Nästa steg för din webbplats" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Lägg till blocket Prenumerera på din webbplats" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Importera befintliga prenumeranter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Visa webbplatsstatistik" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "Ställ in SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Installera ett anpassat tillägg" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Välj ett tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Ställ in ett erbjudande för dina supportrar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Anslut ett Stripe-konto för att samla in betalningar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Lägg till din sida för ”Om”" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Hantera ditt betalda Newsletter-paket" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Anslut dina konton för sociala media" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Hantera dina prenumeranter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "Skriv 3 inlägg" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "Skaffa dina första 10 prenumeranter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Aktivera prenumerantmodal" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Anpassa välkomstmeddelande" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Tjäna pengar med ditt nyhetsbrev" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Uppdatera din ”Om”-sida" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "Migrera innehåll" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "Verifiera e-postadress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Förhindrar att nya inlägg och sidor skapas såväl som befintliga inlägg och sidor från att redigeras, och stänger kommentarer på hela webbplatsen." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Aktivera låst läge" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Låst läge" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "För att ta äganderätt till webbplatsen ber vi personen du utser att kontakta oss på %s med en kopia av dödsbeviset." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Välj någon som kan ta hand om din webbplats när du går bort." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Kontakt för arv" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Förbättrad äganderätt" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "Alternativet \"Vem som helst kan registrera sig\" är för närvarande aktivt. Nuvarande standardroll är %1$s. %4$s Överväg att inaktivera det här alternativet om öppen registrering inte behövs." @@ -720,149 +148,37 @@ msgstr "Filen finns inte" msgid "Could not determine importer type." msgstr "Kunde inte fastställa typ av importör" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Dela din webbplats" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Redigera en sida" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Din webbplats innehåller premiumstilar. Uppgradera nu för att publicera dem och låsa upp massor av andra funktioner." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Anpassa din domän" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Lägg till en ny sida" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Styr trafik till din webbplats" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Ge din webbplats ett namn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Hävda din gratis domän i ett år." - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Ge en gåva" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Miniatyr" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Dela ”%s” via Offentliggör" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Dela" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Uppgradera paket" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Skapa betalt nyhetsbrev" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Ställ in betalningsmetod" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Välj en domän" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Lansera din blogg" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Redigera webbplatsdesign" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Ställ in din webbplats" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Ge din blogg ett namn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Personifiera din webbplats" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "Ladda upp ditt första videoklipp" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Ställ in din video-webbplats" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Lansera din webbplats." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Lägg till länkar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Personifiera Link in Bio" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Välj en design" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Börja skriva" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "Skriv ditt första inlägg" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Lägg till prenumeranter" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Välj ett paket" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Personifiera nyhetsbrev" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "Det gick inte att läsa in klass %1$s. Lägg till paketet som innehåller det med hjälp av Composer och se till att be om en Jetpack-autoloader" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Textdomänsalias bör registreras före %1$s-hooken. Denna notis utlöstes av domänen %2$s." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "Skriptet \"%s\" är beroende av wp-i18n, men anger inte \"textdomain\"" @@ -1063,27 +379,27 @@ msgstr "Lyckost! Dina temaformgivare väljer specifika typsnitt åt dig som du a msgid "Uncheck to disable" msgstr "Avmarkera för att inaktivera" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "Spotify flödes-ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "Flödes-ID för Apple Podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Rubrik" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Podcast RSS-flöde" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Lyssna på Spotify" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Lyssna på Apple Podcasts" @@ -1095,98 +411,114 @@ msgstr "Visa information om din Podcast och tillåt besökare att följa via iTu msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Välj kategori i iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Kategori för podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Nyckelord för podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Bild för podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Rensa" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ja" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Nej" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Markera podcast för vuxeninnehåll" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Copyright för podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Beskrivning av podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Författare för podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Undertitel för podcast" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Titel för podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Detta är URL:en du ger till iTunes eller annan podcasting-tjänst." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Podcastens webbflöde: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Välj podcast-kategori:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Bloggkategori för podcasts" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Podcast-kategori 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Podcast-kategori 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Podcast-kategori 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Podcast-nyckelord" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Podcast-bild" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Rapportera vuxeninnehåll" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Podcast-rättigheter" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Podcast-beskrivning" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Podcast-talangnamn" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Podcast-undertitel" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Podcast-titel" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Redigera" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Min startsida" @@ -1428,31 +758,31 @@ msgstr "Diskutrymmeskvot" msgid "Disk space used" msgstr "Använt diskutrymme" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Klicka för mer information" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Räkna objekt i underkategorier mot huvudsumman." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "Maximalt typsnitts-procent:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "Minsta typsnitts-procent:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Kategori-ID:n, separerade med kommatecken" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Exkludera:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Maximalt antal kategorier att visa:" @@ -1470,24 +800,14 @@ msgstr "Dina mest använda kategorier i molnformat." msgid "Category Cloud" msgstr "Kategorimoln" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack är frånkopplat och webbplatsen är privat. Anslut Jetpack igen för att hantera inställningarna för webbplatsens synlighet." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Uppdatera synlighet" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Lansera webbplatsen" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Avfärda" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Du använder för tillfället %1$s av %2$s. Uppladdningsgräns (%3$s%%)." @@ -1624,47 +944,47 @@ msgstr "Visa dina senaste Instagram-bilder." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biografi" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Rubrik" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Foto" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Visa inte namn" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Visa liten" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Visa medium" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Visa stor" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Visa extra stor" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Din about.me URL" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Widget-rubrik" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "Widgeten about.me kommer inte längre att vara tillgänglig efter 1 juli 2016. Efter detta datum kommer widgeten att visa en enkel textlänk till din about.me-profil. Ta bort den här widgeten." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "Visa din about.me-profil med miniatyr" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Det gick inte att hämta begärda data." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Skapa en gratis webbplats eller blogg på WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Skapa en gratis webbplats på WordPress.com" @@ -1703,8 +1018,8 @@ msgstr "Drivs med WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blogg på WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "Spara" msgid "Activate & Save" msgstr "Aktivera och spara" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Hantera inställningarna för din webbplats synlighet" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "Detta tillägg installerades av WordPress.com och erbjuder funktioner som erbjuds i din paketprenumeration." @@ -1898,8 +1209,7 @@ msgstr "Telefon" msgid "Email" msgstr "E-post" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Namn" @@ -1913,27 +1223,27 @@ msgstr "Bokningsförfrågan" msgid "Reservations" msgstr "Bokningar" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Visa kommentarer från:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Textens bakgrundsfärg:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Profilbildens bakgrundsfärg:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Inga profilbilder" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(som mest 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Antal kommentarer att visa:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Senaste kommentarer" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Du har inte gillat några inlägg på senaste tiden. När du gör det så kan Inlägg jag gillar-tillägget visa dem för andra." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "på" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s på %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Författarens antal ”Gilla”-markeringar som ska visas:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Rutnät" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Lista" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Visa som:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Antal inlägg att visa (1 till 15):" @@ -2019,62 +1329,62 @@ msgstr "Jag har röstat" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Visa dina läsare att du har röstat med ett märke ”Jag har röstat”." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Text som visas efter Gravatar. Detta är valfritt och kan användas för att beskriva dig själv eller vad din blogg handlar om." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar-länk. Detta är en valfri URL som kommer att användas när någon klickar på din Gravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar justering:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Storlek:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Anpassad e-postadress:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Välj en användare eller välj ”anpassad” och ange en anpassad e-postadress." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Centrerat" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Höger" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Vänster" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Ingen" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Extra stor (256 pixlar)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Stor (128 pixlar)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Mellan (96 pixlar)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Liten (64 pixlar)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Infoga en Gravatar-bild" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Välj en bild att visa i din sidopanel:" @@ -2103,28 +1413,28 @@ msgstr "Nyss bloggat" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Visa en Freshly Pressed-skylt på din sidopanel" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Profilbildens storlek (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Visa alla författare (inklusive de som inte har skrivit några inlägg)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Rubrik:" @@ -2140,12 +1450,12 @@ msgstr "Visa profilbilder i ett rutnät av författare." msgid "Author Grid" msgstr "Författar-rutnät" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Privat webbplats" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Denna webbplats är privat." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-sw.mo b/projects/plugins/wpcomsh/languages/wpcomsh-sw.mo index 79ebdb9039eea4c615738d5bd89653d16b4555b8..ea968008248b4b1bdd0340f6079c6868ef378603 100644 GIT binary patch delta 1468 zcmYk6O-NKx6vywBI-@gcmSt+%m|2;bW}k+ew1Tpdih`)k(;1xsXWpRWgh5SWl$*eK z34Krz1T88eY862ri(0g8(?$q{tW^aSL`A>oZmh7oqO&*=gz$MwX+r3>G^q6 z25Co^pff&Wdf?r;7-Tljn5FOo?1Y8+#+1N4un-=Fei(&>m;}_)Ay@!2mM38d{|r?8 z1xS3>TxP&yu44l57Mu_7+4*NsiC^0HudV;a@-1xS{j~K1?5d56F-)0q>sLYLsk2;> zo6j24WGC8S5doXw9N1~+cR(Jq8&eJU!%~=l+TbKq;&G@7C+z$bRNPhT-+{{i!1_;M z3;UZF4AjamP>Ft8-$$P!_(7z{^%nzNSYp;~_t?tqt|3Ymr_TVJFnVc0wN0jnNeyf;vFV(uJxp1GRn(R>E`EziD|J zYTdm;?q7kA?8IZJ6F#?rGnOAMKS3Vz4MQ=x-IOT6uF6vibMFMu(SLQ|FcV79YXf3X6{es%GY%KQN&EgbEW^JKweC4=gs&iv`Hab3CDeK!n>erp zDn11jmr?&!!5GxZCZH;ugi3G)ZihFZu3`pqm1Z@nPDxtP2DAy)-&nHnFLHJPR>iQ? ztV6@7Lf510B&w_}H~QP9Eq1&X z)}Xo?{VwQ4)~sUizpTX32S%cfH0MUftcSWYi9Se@TC_YjGG-pEM^{*XqvZyuPU_o| zlWpO?L3bn)cKgGlu6L@S!n;+_-D#I*Zjvy`qO4ld>G>n zgyTuCA<$8JAlesAro&xsA_0fJ$v}-S;^i0qcvx1H_01b}(($C}I(RUABAy&z&C_7L z_dQsjKP=a44Yhm8(2?@)k>Qw|c1_Qa8;Ln)7w;VJYp650*Kw2a@Lnf1>Uh!OWuaY( WXe{3EL}Kyd&coluL7!Jyy6+EcmXq)R literal 3943 zcmZ9OO^h5z6@UvcHrWJ+*d)OuI28y6M3DJjciE0;&FimU zb=9j^@4bGzHxKOjw&Gev9!I|Nex)q@{T^;y*(BFm+qThmIZy(0w{R2?+1F$|H zWQsZ*#-D~$=tm);Rj0!E87T9ghmXNU$WNKTZ76mMDEqzwWxsC)z6NFA??8#?>u?Re z5#HZ|{M3KB$@;w{N!C9C#h=H6{tP^Z-h%wp7rBYuLC|9uq3=Lh|GO~$r=Y(DVfZ&F=ePxB{<~1@@5P9$I|SwZ6HwMY6~>PS{W!!mbvleMz(eRO zLGM9X?}DB}u~P>9m7sqO%K5$##(x<2zl0LMUqi9?+rU3U@%yh(^7;=b z`~MqCe*Xg{uJ?0z8Q%}Z&Os>k^%#`(&%uwtIVkqmA)!&%psX`c=JlbhkD(fv2Fv^UF~789}j=K?A=EW&R(a%=-%z`)@PToMntBrnJ7r{?xK@Dw8c zUqlv>JJ&~fka$V1K7kMh)j^&`P9pEUR!}tZSwvze*V7H^+$@FXbMPP{b@M247Llvf zpw7eL@O&N~3(pe&kA-K6`79ze)kfrR#dAoV8~7Py4v|apq~>)m_En^PUr&6M>%kXt*N*1bvY;@I`3b!2x;Y6d2E(|X6* zGBt@U?2$dGZ#8Sgge#p-O{^C-H`RO`>rGeMLd~Z>og}{EsVav)FVy+i50p$=Flo=m z0Xnx?JW&faEp4tAh93tU#T&i2 zifl(+bTPJcccOcyv;&_{)J30`g<9f}MQQTVMrtW{ky^GUa_OK@%Pz8N*|XcSAM3=V z6U`}-LXUkFM-ogOyOGtU*O4o-*i6o;QX1?P;zcp^b(NiSpIjiA~&7a??$mi$+N%TJk%st%P%0n>5m6+bswL z?ve~w=x*-E1>W?1F4>`!aJzJg)hl=0YuDBywQ0+;j_oF{O8qgRk}QbcQBoy(%at*% zaLib3`aGXZ*P%8!mVK!i_G2ktuT8IK3r;RhNbR=O78Vzz+U2R>cEhJWnRL_^e%0I6 zpTd|@u8no=oz!8maFn2&fSsD%SW+8sR(3HYqslU$bGrXC7Y%I5?saKy4M|Qa#n+sq zzIW8METZt#^(J`gy3eDH9QW0Wl*)_L(olk5f0y-VT4V-qUaov;+Il0lrodMlTO!nV zF%ESt0cS-P`?_G;syk5|S6Wx?jw|^3S{K-_qi1JkPqb!Ewq}p>*f~DanK^lMhHGkV zWo@zbg3V=aM;~v`OfB$1P#~?XNyfsGG#;a>U3ymch9;*Q%w5~M*gAc0UT)H&Z}Zk- z+Vk?wboA-2E2pTp+{CSm)N0YuX;!Pn-0WH1JkF*1$vJ)e?9>-pOE$H+DSh72OR+EO zh#Z@3pJ>mtOq>nP)GFV8MQ%H~7*B2Fe%toS)=G5G@wYb!C;fk=gZn*SN^F)fIZnuF;oqxiESyn-~=vid4E1(^I}2tG4`3RkGTX z!TG}3?TRm-E~u^>z6e(gUERs5x|J;rjmw>CphwlV>sIPAHr06&6*Jr1dy>8q5nZR& zj89qRc8yx26bDY$7^9YX$?NkbuZ+%Yh6fy{LqDvxjUJ7WN)83xsKT4Nu{oM8mZYOO z^@8gS$A%urLbWzF>8@w2tmxnAz+_HWrO9k6RFIV)P(yI+KsYXU!$vx*$E6g*@8u6!P+p0^BU@e=HBka2Vn1kWMDsgbJ;hbY~ z!J3Hp=t(fl1CB_PC%!{7ZeoOsMpRl?GywKcKRYeuqnsSY;@Vnf$A5xEIuLbuMq z$lo2>#<6MLy&K%R!<9|CCsKQQMCLff$Puh`@w}}K-4{c$(l^i6tUC*$Lb|_fMR8z0D6KXy315f)*41WgQ^svgS zVO3DqBr0}&e4(@(e}|5Grtvv_ovo_+k=v-C36?%_9aWF(m=)9!9Vd2U%U2;OZ`_h{ z!ZC4eXp&UEn!6p4kHIj#c7N=o<%#>v2Nq1W)rFx;Ld~=yPa|(m6hMnNLr1@+LN*Qm zB)q2&u1A#BwZt~HTsJ%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Samahani,huruhusiwi kulifikia tovuti hii." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Giza" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Payuka" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Maelezo ya jumla" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Seting" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Tovuti zote" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Ghairi kujibu" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Toa maoni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Hifadhi jina, barua pepe and tovuti yangu katika kivinjari hiki kwa muda ufwatao nitakapotoa maoni." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Hiari" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Saiti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Ghairi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Maoni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Jibu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Toka nje" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Anza" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Ongeza Kurasa Mpya" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Picha-dole" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Kichwa" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ndio" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "La" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Hariri" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Acha:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Kataa" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Hifadhi" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "Barua pepe" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Jina" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Idadi ya maoni yaonekanayo:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Maoni Mapya" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Gridi" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Orodha" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Kati" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Kulia" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Kushoto" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Bila" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Kichwa:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ta_IN.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ta_IN.mo index d0075ddcc666b6af844d1ef011307a2fc6dedca6..01db01821bdc7496a0a5a1e26f75994bfdd1a8c4 100644 GIT binary patch delta 1923 zcmYk+VN8`(9LMqV$Q1-GAmBylcDsN=fF?)FQVS?3)F^HLv#pGY98KXgFu-r3d95+&*;&o?n9yO5!z183#YBP;t9iGBN z_#t*;h#htZcHUTfl zLwEz*ac8A52XGwqW=psgzjyW3>v9v1pfc5q+G{Bs$LuLCG{7IY6H6II11FpZaTE0v z*5jLa7hXaQd<`|>b~cXwKORMz%nNugzKnX~FHsphwBDFI@pX*r`(NZjo8bzEJvw1F z>advwYr}o04o@I`m~*I9&tVzAzlM6F<=c$u!ZIrD*pGVSlc*(_#lP`W)L#3D*@pG~ z&vQXP<~~BDfzW2#M`$A27h2Oj!~=w~)K8GGV6*Xg2Zb#ZEP*PTum)Wz%rW?4c*o#R zZ5Ofy%-xJ1d_qj>R^dfVEwP=@T0Tgqu%tmDZ9xW<-j$*y3lRyTd8N_Go(z__6_pw7 zpOuo`@2>dbZWXQf|BKS4!k!Dh=N8l+=q9wLDm{eOze5$u!$cFYK^00Lv6;~KuW}E; zK4=TpbQ_fzp$*nZsA%oG2(6*^hstiEz%HzrvR#D-?Ob6~L2oiOG&we5!$ptV(V~8P zxu`Fe7#bf=n#9oY%;bbgBvYJ5j&aHi*N&v^;o?2kFWwzF@LVRHG=s^*$@E0+-ptXX zc+571H+e_wC*e^)UefLPnbO26|F^Y$o_(ca()yJR_Il+_zcA9^*^PDO{xem1o_%qB zTj=!9pM79EsypnN>R|2r#VG&) delta 3763 zcmZXVYjBj+8OP5;$ORHZ5;l=b3)EZNvHjrK?XDIGhhJz>V+&cnxeQ zGlrj8X1NxY&~JfNunk@d?}bJ1APmDVLypLpV>EQYaVUk~4JOPv%ky^r4Lko1)B(SN zGvObh6#w0h|I2dPbc|rU0#?GEQ2V-}*53!qINv1vhB3o%8WWE|oHHY^8XkjE@En{0 z&)NCcp%h)Td>b~=|E2B!8!CuX*@R7II+XrdP~&r8CFh$48a41HD22B}E!<}NolqNg zL3waDR7iVm{~_By47LB;P?06AJVF%RuZ$arl1*PYua^kOv^9;z+AKQg*LM6{H z;8J)QDuiLQiu0ikY_k1kSWAC3?1ddrde7SVAKLy;pd7vkb>6!b#D52k_Zg6f&BRRy zuYwGjtxy|wL(Sg6e_gef&9#As+-{(a2xy- zO8;gOZXL`F&>*_zStv`#p$vHs{uKTRu7qc11qOTwHD5y24C^i1pbUHvV!Js3*TV0^ zP4EwPei8Sib*+#{X3PK$=1dYk4UgCbi|T^$R;X;>59QGzC)=_q0{#UuWf~U*`nFj1LA|2G3yA+GG@f8!3LGJR zio{WfUUL_+AK8lBg6IiuL5dI+a?wvNwU;3d!kK0laxZcRax20s^beF#_aLpvZOGla ze_5{bd1Q|o6zrKS%4U_u0A_>bW=mbgM%(U#x~gu3Ao^dw9Z=EhK=k!fZYYZ6Yw)!q zul%B{R9TKF)0e74*%`pE$u09m+y5-=MeannazE7ixbSJ1Ec(h-dZFT)j8ajTNof7c z2L9ibGGQOmk4!<N>7#T0sQpkL*xHpFM_Te7kUtVi&fTo&lP{QG!}EZqG>nf-B7ZxD&FJ9%%+Io zB;5yM!(OIj@hzJM5{Z=SM4a@1JLsBCiNQfPo`&&sG(P0AGSVB3_nVeT@_y6e_C0@EEe?WDLD$(ym<33Q~y;8cNA~NVY=u0}?u|&W3 zap}gD9S@|ViFhPtIu5wW15x*&=^RMJUDFvG>c>K})9t}E$GWJ#g0Q`8@m^5+z_c{mN?i9h}Tw)VVIo-*`!IYbH`VvV6%Za;((oQ;x8Lb6hnoSqJ^_ng> zP4xOx-j~YmE9)BSPW2?C-EQu8W$Qy#djhp)Pa@gdnRHXBT*Hj^DNSF`XV2uvMpb7o zIQi_e`D`wqJ?;-ZrS{mv`D~VM?*59l(5};3q2<&}oXC$on$L~}tBn?B#|t~Ymd~Ee zXD9sWBWS*AEBz~by|dRGT7FC`#vb-f82d_aX3%-epW)2s3nz2tN!EH#%nOH%*AT8> zBnypi6~~_ZzYS9RqCYXgrn>Tc_VDB~uc>lj&GWvcn0O(d#cdiB-uBA>%nMH9Y(ExP z#bq?NZRWzzoU!1*$%vgR_&@4BIlI=oR9EI5t@=mph=1M-feng@f0Fk|^-6C+cXAua0vwv?vC+D57UR{fA zIHYy{t*}V9<$YBB`yJRf=>nH7l|d>Lu3LLp{l69jckc(QVCxkfxwmT;hBAZ=C)mWD z5L(<0QiPH5Ac?RK=P?CG9-myz@#lOqxiv21s_SLp5nZP?onR3f$R)z3{PAxJQ~moI z3ypde;SIA)c8GzWarj#VDSf^1T}KmsmH@tVEoAL9DV*fK^;?E11=pz>AE~kN6&ksx=Y~W71zuMafB*mh diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ta_IN.po b/projects/plugins/wpcomsh/languages/wpcomsh-ta_IN.po index e40b34f3b9a87..53dbfd568d3a5 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-ta_IN.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-ta_IN.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "மன்னிக்கவும், இந்த பக்கத்தினை அணுக உங்களுக்கு அனுமதி இல்லை." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "சொருகிகள்" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "அடர்" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "இளம்" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "மேலோட்ட விபரம்" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "அமைப்புகள்" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "ஆட்களங்கள்" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "எல்லா தளங்களும்" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "மறுமொழியை ரத்து செய்" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "%s -க்கு பதில் அளிக்கவும்" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "பின்னூட்டமொன்றை இடுக" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "நான் மறுபடி கருத்து பதிவிட எனது பெயர், மின்னஞ்சல் மற்றும் இணைய முகவரியை இந்த உலாவியில் சேமி" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "சந்தாசெய்" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "தொடர்ந்து படிக்கவும்." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "கட்டாயமற்றது" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "இணையத்தளம்" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "ரத்துசெய்க" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "வர்ட்ப்ரஸ்" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "பின்னூட்டம்" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "பதிலளிக்க" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "உடனடியாக" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "வெளியேறு" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "தொடங்கவும்" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "ஒரு தீம் தேர்ந்தெடுக்கவும்" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "நகம் அளவு சிறுபடம்" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "உங்கள் தளத்திற்கு பெயரிடுங்கள்" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "தலைப்பு" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "ஆம்" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "இல்லை" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "தொகுக்க" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "அதிகபட்ச எழுத்துரு சதவீதம்" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "குறைந்தளவு எழுத்துரு விகிதம்" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "தவிர்:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "வகை மேகம்" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "நிராகரி" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "வேர்ட்பிரஸ்.காம் இல் வலைப்பதிவு" @@ -1781,10 +1096,6 @@ msgstr "சேமி" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "தொலைபேசி" msgid "Email" msgstr "மின்னஞ்சல்" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "பெயர்" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr " எழுத்துரு பின்னணி வண்ணம்" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "அவதார் பிண்ணனி நிறம்:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "அவதாரங்கள் இல்லை" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(அதிகபட்சம் 15) " -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "காட்டவேண்டிய பின்னூட்டங்களின் எண்ணிக்கை:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "அண்மைய பின்னூட்டங்கள்" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "மேல்" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "பட்டியல்" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "நடுவு" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "வலது" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "இடம்" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "எதுவுமில்லை" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "சிறிது (64 பிக்சல்கள்)" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "புதிதாய் பதிக்கப்பட்டவை" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "அவதாரப்படத்தின் அளவு (பிக்செல்கள்):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "அனைத்து பதிவர்களையும் காட்டுக (எந்த பதிவும் எழுதாதவர்களும் உள்ளடங்கலாக)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "தலைப்பு:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-te.mo b/projects/plugins/wpcomsh/languages/wpcomsh-te.mo index 680fc00ef2812e1720af1cc9282ff97f9491027e..f387db19be0d2f824c048ba95eebc532cc7ca9e7 100644 GIT binary patch delta 2890 zcmZ|Pe@vBC9LMo<1wlkEzb-S6{y&hwn-ob!Co zdG60mhpGcVCPltxC>x11;!1=uyYa1P4wSrs#tgzyn1RJO4r_55zKCu-jWKu`Bk?+_ zi(fDiZ{bjkj19LNjljc6cR68sOa%Gwhi+6o5p_QeHIXb-X7W%Sj>lm*3$w8iHPPoC zUq)Wqyn>q0yQn>O1eKZZ-Q-^nT<3xYx`BG251Ets8+AXH*2$QN+Dtj94oW!a{w&ml z=Q;I7j>}N(o3IGiqbB|VY6*Md$-f5v%DHe72UGtR)p4(L{iaj@1C@z;r~#uA*r=F@ z>aY=&;x?p-S%;dy7Ss#9j(UC%>P7bjIMIxHkT1`i#v(k2<*28%Br{PR&PMI-I^<`3 z9ERW~r~U>iQ+rX*eU5IIF-I|-`gsPc!#?c5Kn1Neqt8$e9^;@1T||9`H&6q{c}O#Q zu^3xXYrYHB{y5g)Mbugs@X!h@M@{@ARJ$WM9#0_?BLC!j4i_@;C2YkbcpJ;`0I#PG z`*1SGP~llqj=EmYp%nc%77sc8gd?dBeIRTpE~CB@nWH(5`5ONcC)$-!{F|s_FJ|CG zr(TC;)P1No=|=7PFHmcE1xv6O^?VjLpT!c?{lmyy%u&?ymvIu_P@VD3NJiJ@DMqEJ z4Ao%`j=^oX5I@B!=oubvSB?6=XhIFN9rZ``rc*zLIn>XiCUytae;j#NyG-R@1I*@R zK6ar}`8BG;7}6jI<2dx9CQ^&dxE~AAlNoL|9rdPFs5Ndu-G2v1;2G4WzJ&8NA$^%UOqb;`spKyoi?I|}AagRikR+L7s5iWZk6;ozP7|)i23(Fe z@hB?w2Xn(7M=im{04HS8xTsCWEYwVw;={Neqj4X)@c)Y1JVDGNp8Qv%8Jw>mw0sW{ zn%rn&F0p{%{lhcTU^7*r=$}n*_aLG4-Y-g>ic+shDpUI8*!ZFSLlQ#eagLcpD^X5t zB<>e2%POKDQLOQmUKOQxHnEI|C7vc!Rulb0XW_NfK4>BMgA6TEvvY46Rud#DRJ2SR zhz>%TokJ`lw1HLpp(F3VoRcPkuOqY+q3ayhIwx(8WymsyikqX)IoC#tAhiBNoNM~8 zzhAV|*Aepweda1r#AC!%<$nUvKr|A$gg%v8LPeivB%$woJyAvQj~x1H;6G(LwWkRF zCPM#k`cf*1PNI%bsR?5Wa1t?bC5NR%389^wNVF40#2P}yODrJ<5cNc;*p#?W?1i}1 zc7c12-RI7-zq!}iHSuHZ?s&h=NXWErCuG=@35#t(Vzzsw-^^|4k6LDAKlM-3Qt*2QKc|e7B;)My8%J%CMaT2 z5WRvHu}DEH>cEDS$Fz=VJ5Fr}Y&*4#E$!fzI&J^3A}v#G?Px#Wa}Vfr+B5q*pL5PV z=l43ld&BU(d4FljobKCgyP-XgR3YcP8S^eYaVZ^bK#?(puo70oVQ@5@0jI!quo%7p zb>z6?Nr)=*KI{oUfTi$5H~@YQ*`G1}IjxODU^yHHd%zo^3{QppOat8zcn{R`cE`t{ z_B{#tnO$_<;cIXp?0|ZH0?Lu!!V>rgI1KydZw%^LsO%Fua1)e*rBIGFK^=_3zVJS% zNFQYhIb6~K#-;LH)nw_tDPzk>YCX}aO?BiIxBra$h;P&Jg|TE}`QN5(=ao&Xj3 z0;m+;1uutb*bDB0+W!)iq1T`c{{Tw=+fe&XxcNz#QEE=Pg+Ie9n1ATz6R!0i9uyD1r@*prR2Yk!80sK;rHE!cie`PPzpbS z+>-e_EP(lJ&WA-%^Af0igP;s~P?28_`I&3!2EiGy1}=lj#KyklUxTeI$m3@nUvS(D zG3b0|HUjC9Y(Wf;hTNsynJMMse4 zZYYHbD23XmNH@CqHpd-M`**=n@BqXIa~diW=b#+?6v~nOe&M_)tYDrgWgr8?-Gh2J z9}A^m0+iwDa2{-cQurOH6u%CYp<_@E{}9TdUqVHC21?JzQ2Rb{^DiJ7$(SCLwiK2@ z9T*H1!3f6*@Dk?ppd!2-PKO(zYT!7O;h#f(<}{rgI1l^79)zj+WsoG8tD(+KgT;B= z|4as#v2X{w7r|DTguj6DdpTnww>%TSK|1nPtK zd$<|)rc#f=9dHtyJ2))HZ7?GPFEEe;SvVg43`$XVtZ03Z;}|%R`K|C8xW%yx4r6}K zaRA;dWj+z={I?<3ZH~eb@C4M`^Jz8rFGJ;?G0kuU#Ay>iMRpLj!_OdR%tPc``(J>Q zU?;pBo`=d<75Ag_BcWcmo8a~EcBpe(;6re)dp=}nCiJj=Xqf7mP>L4Aad4%ZzXY#h zei*7)|LFKvs0@ArWvHN*&o`VxcQtH=3*mF{M))z*{;TT3FYTlZ19`dRc_9opFvcq4Z=HFi^^x;b{0U zl*dP)4~wzFwVE_kQ3a4}n;%0d`~d2X&p{Pw!4=`YiI8AT9Lj+JPKW!U_ML^3_5Rmh z8G5=LaxLZ|H-8c8DvrV%;M;I9%%g&ChD)Ffd>8TpnG;Zs{K?I~fJ%Ag$k5R{pq@8E zIrJc`z`l8!fg;-v{{?>o<;c5SxH9t($G&Vrr>TcZ@nWb!?SP=)EzD7l(-I(W%C5AhKJ#JcoNEBDff3B zyb|_=_rg5*46+PS<5q29-v(tflTWuCc?8k@D5YuzABupbn?2{OY2EN63hMP}=staz* zv>;OvwQUH+Z(5OV$YTfzGAU#>@=Zk7^aK*s{gWm09I^^|6j8ey8D&S|UAv+E2j$n@ zB;lxUJ+*27Mz|%jfPt>45h-+w`u3|`8^T_d?Avy`;}WPU--J{l%}5ea>xDdvG-yIo z)!$`DVcpDeSW#%= zj`q&?$`b_uN)tnkqj>)6eJc&mEj+2(q57k5G=Bl#1I{Z-l1gwj+&a3Fc zaM7l$dYwB5-kQ4MDH!!6S+OCA(s?VsA0bAXdV{ zbk&1}pr-o#VB91ndVg%;qwXsu5VTeDUn>9g!YTe>x_7V)ABc?z2@fBX)6R2VUVaT1 zK_L?aZgUH`qB|x@_5dpzI?vWzm0yXoJVOCD67J@D6=4vms|v2GI}~JV`d4EA@P&=a p{{?$p!I`=RykDb{DR}|KUr|8@QO7PB$?1x^&a}PU*)Xgr|36!kxk3N{ diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-te.po b/projects/plugins/wpcomsh/languages/wpcomsh-te.po index 1a34d00805ef4..e3366f4b81cba 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-te.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-te.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "క్షమించండి, ఈ పేజీని మీరు చూడలేరు." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "ప్లగిన్లు" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "రంగుల ఎంపిక" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "ముదురు" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "లేత" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "పారదర్శకం" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "సూర్యాస్తమయం" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "అవలోకనం" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "వర్డ్‌ప్రెస్.కామ్" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "అమరికలు" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "కొనుగోళ్ళు" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "ఈమెయిళ్ళు" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "డొమైన్లు" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "పథకాలు" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "అన్ని సైట్లు" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "దోషం:మీ ఫేస్‌బుక్ లో ప్రవేశించి చాలాసేపయ్యింది." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "స్పందనను రద్దుచేయి" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "వ్యాఖ్యానించండి" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "మీ ఈమెయిలు చిరునామా ఇవ్వండి" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "చదవుట కొనసాగించు" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "ఐచ్చికం " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "వెబ్‌సైటు" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "రద్దుచేయి" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "కొత్త వ్యాఖ్యలను నాకు ఈమెయిలు పంపించు" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "వారానికి" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "వర్డ్‌ప్రెస్" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "వ్యాఖ్య" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "స్పందించండి" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "రోజూ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "తక్షణం" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "నిష్క్రమించు" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "ఓ వ్యాఖ్య రాయండి…" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "మొదలుపెట్టండి" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "ఓ అలంకారాన్ని ఎంచుకోండి" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "నఖచిత్రం" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "మీ బ్లాగు పేరు " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "శీర్షిక" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "శుభ్రపరుచు" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "అవును" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "కాదు" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "మార్చు " #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "మరింత సమాచారం కోసం నొక్కండి" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "గరిష్ట ఫాంటు శాతం:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "కనీస ఫాంట్ శాతం" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "వర్గపు ఐడీలు, కామాల చే వేరుపరచబడ్డవి" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "మినహాయించు:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "గరిష్టంగా చూపించాల్సిన వర్గాలు:" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "వర్గమేఘం" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "మూసివేయి" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "జీవిత చరిత్ర" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "ఫొటో" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "చిన్నగా చూపించండి" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "పెద్దదిగా చూపించు" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "విడ్జెటు శీర్షిక" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "వర్డ్‌ప్రెస్.కామ్‌లో ఓ ఉచిత వెబ్‌సైటు లేదా బ్లాగును సృష్టించుకోండి" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "వర్డ్‌ప్రెస్.కామ్ లో ఓ కొత్త వెబ్‌సైటు సృష్టించండి" @@ -1703,8 +1018,8 @@ msgstr "వర్డ్‌ప్రెస్‌.కామ్ చే శక్త #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "వర్డ్‌ప్రెస్.కామ్‌లో బ్లాగండి" @@ -1781,10 +1096,6 @@ msgstr "భద్రపరచు" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "ఫోన్" msgid "Email" msgstr "ఈమెయిలు" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "పేరు" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "ఎవరి వ్యాఖ్యలు చూపించాలి:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "పాఠ్యపు వెనుతలపు రంగు:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "అవతార వెనుతలపు రంగు:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "అవతారాలు లేవు" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(మహా అయితే 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "చూపించాల్సిన వ్యాఖ్యల సంఖ్య:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "ఇటీవలి వ్యాఖ్యలు" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "పై " #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "గడులు" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "జాబితా" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "ఇలా చూపించండి:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "చూపించవలసిన టపాల సంఖ్య:" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "పరిమాణం:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "అభిమత ఈ-మెయిల్ చిరునామా:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "మధ్యన" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "కుడి" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "ఎడమ" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "ఏదీకాదు" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "పెద్దది (128 పిక్సెళ్ళు)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "మధ్యస్తం (96 పిక్సెళ్ళు)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "చిన్నది (64 పిక్సెళ్ళు)" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "తాజాగా ప్రచురించబడినవి" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "అవతారం ప్రమాణము (పిక్సెల్):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "శీర్షిక:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-th.mo b/projects/plugins/wpcomsh/languages/wpcomsh-th.mo index 1fafe02980aed87ce166da5db773721f7faf6f8f..838f650a1e961e338e12462e28f133ab0a6391cd 100644 GIT binary patch delta 1857 zcmX}sX>6259LMq59t(SPrPsElEpFFRsXdVvltL>~k3~}#L^07A+wLMn+SPU&&#)RW zNPuWEYK&J52_C@&u?e=+7Yae+izfKOBbtykMvcKE#29L##P9Ff(aHXw&&)i}%rnpb znP-popJ>mWt0;NFP&N?_#I7P^()eKs2TIa!Oc*!g<#;b%kGnB~A7cQ|Vl94y8u|xT z;{x(CkwpcoQS&umi!nLVN~M#IB=R#k4w_&eYT|>=7qOJ~8@L$X#0oryWq1lN!?W&u z9yQO;uKk;9Uv&PBt=!-Em`xY9p;p?By3rcfUhmEiIuovc2(^Gakh#nbcm6>P(w;(+ zX`Xcbdre^BGSHTc;t+P=2wsKHVK>ep**3qRUeTYZaS>+a z-lhq4qfWdJ2VMIJk}NZa8g~XY?i^~|g&Y+Pyo6d&)sn&jR-^h;s0$xMWndp_!go;< zop9$r!&_*7iMmm|+&vg}(H=rQ&~DWDcij2hG?jI9e1hFr%&baf4_=A4BiS;KqbA;u zTF_y98jqnS>?M6l?EtR8yYVFMMV%k0Dm-8UHU0tQRL(p?Wi=fK-36zSIn58KfeW}5 zi%7>jZbS7ij}|sx7qX|ko9YR<{QojQjnih3SW9R#YLVR7`x9%{_kS}DHl*nxdWlY= zg;3Eh)_%~F*AXft%3MP<61+99=qqR^HWD`yD+v{4a5=G54a$ZB-Z93pRVi0tKY2S> zbzY%auL?zf$$T7MM%2FAu3S`^(>J1WMFB5=o2bWKTOU^+v5F`rw3F5lDs6;zgkG}# zwp8?j|0|_b60UI_YK6+TigqZQCF*?(dW-$UwS-EEZ4C6<;lOS7WT4-MgY|Y#u-ZNp z+~7}dAD-Hkwe!Iy8wstoTSMu{_N=*e=Ol;B{jr_nwm2NOJ>lM-&{7(CM#R_}8Vy_*jthVEo!!};^+Vs~|eqU(jKz??Ae&+rB%wd~|_SxC! wW;x9sVq-%tNlf5tccd*eFazobsmJpcdz literal 7979 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "การตลาด" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "ขอโทษครับ คุณไม่ได้รับอนุญาตให้เข้าถึงหน้านี้" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "ปลั๊กอิน" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "เฉดสี" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "มืด" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "สว่าง" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "พระอาทิตย์ตก" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "ภาพรวม" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "wordpress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "ตั้งค่า" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "การสั่งซื้อ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "อีเมล" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "โดเมน" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "ประเภทบริการ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "เว็บไซต์ทั้งหมด" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "ยกเลิกการตอบ" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "ส่งความเห็นที่ %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "ใส่ความเห็น" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "บันทึกชื่อ, อีเมล และชื่อเว็บไซต์ของฉันบนเบราว์เซอร์นี้ สำหรับการแสดงความเห็นครั้งถัดไป" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "สมัครเป็นสมาชิก" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "ใส่อีเมลล์ของคุณที่นี่" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "อ่านต่อ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "ทางเลือก" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "เว็บไซต์" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "ยกเลิก" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "ความเห็น" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "ตอบกลับ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "ออกจากระบบ" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "เริ่มได้" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "เลือกธีม" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "เพิ่มหน้าใหม่" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "รูปขนาดเล็ก" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "ตั้งชื่อบล็อกของคุณ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "ชื่อ" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "ใช่" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "ไม่" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "แก้ไข" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "ไม่รวม:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1469,24 +799,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "ปิด" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1623,47 +943,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "รูปภาพ" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "สร้างเว็บไซต์หรือบล็อกฟรีที่ WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "สร้างเว็บไซต์ฟรีที่ WordPress.com" @@ -1702,8 +1017,8 @@ msgstr "สนับสนุนโดย WordPress.com" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "บลอกที่ WordPress.com " @@ -1780,10 +1095,6 @@ msgstr "บันทึก" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "โทรศัพท์" msgid "Email" msgstr "อีเมล์" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "ชื่อ" @@ -1912,27 +1222,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "สีพื้นหลังอวตาร:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(มากสุด 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "จำนวนของความเห็นที่จะแสดง" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "ความเห็นล่าสุด" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "บน" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "แบบตาราง" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "รายชื่อ" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "ตรงกลาง" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "ขวา" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "ซ้าย" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "ไม่เลย" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "ปานกลาง (96 พิกเซล)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2090,7 +1400,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2102,28 +1412,28 @@ msgstr "เรื่องใหม่ล่าสุด" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "หัวข้อ:" @@ -2139,12 +1449,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-tir.mo b/projects/plugins/wpcomsh/languages/wpcomsh-tir.mo index cf5283e786d6f91e9b937c4a61c4a52f6a888c14..6356f469289b938f271551ebcc1988f8a845b004 100644 GIT binary patch delta 574 zcmXxhy-Pw-7{~FW*K7IGo4qY54vo=NYoQ_0&{9iFL!mV#WJLthr6t60y3|rjP_(&3 zP_(<$&|gqGMg%ss_WkMU;N#~$&pqed=iK`hYe&5IMCjZw#)t{xl}Hlh0Dp`&X7L9j zI1@A`jC0t7ISk=4y10V9xMu4csQFtq-?4eAn|tPn3x4LfTQDa$Kz@qa@WR%wY<`W} z@XlIChx`HKH2H*Tv_Vn(ykQ)hsQNc1@V8U0=Cx>z_&?;ULV<=}!_DDD?Zels}hC!Lg^aZ>l&&Qu^) cxolN$Th+%_rRFz6B|qyf`o5bBQ#`AgKLpM^>i_@% delta 819 zcmXxiPe>GD7{~E<$I;zQv(n7$4^4l(1koWP=#;I5QI`%;hagG^iFDUiB|9y28eQk& zAOsmiAlM-gEhwUH(WygSB8cDxFJeSNw+j0H^zmii`Ml5jzVpoU&g{?PT667NTR7`z z`>g-PZu-|87urbR+*!PXMSPA;_!e96oyDIpPyEI77!t2yBmTew{Mt8a6f- zQHfhoi8^e4KeE>yvbYY?qK;^q+UPa}-j{MvpmzG@3x!VkMvI)vn z;`^w02HSBCb<#zfe`CJKHs(Lt`U>tM{)OAIKy}K~Wga$n-fv2wjb0-EIq7%{{o2-bL4| z(nEE!&DP04g?4OCpgxh_hQ6`d4*C|l{#SY%I*5u^VXkLjAS%aqqtWr~Pp)qR>Zf0`m|Y9c X=k3<)N!Zt}@iRa9n2k<1*HiZ&`(uAF diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-tir.po b/projects/plugins/wpcomsh/languages/wpcomsh-tir.po index b6319b4a708a0..e46857c71fdfd 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-tir.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-tir.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "መልሲ ስረዝ" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "መርበብ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "ግደፍ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "ሓሳብ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "መልስ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "ውጻእ" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "ኣርእስቲ" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "እው" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "ኣይፋል" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "ኣተዓራርዮ" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "ካብዚ ወጻኢ፤" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1469,24 +799,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1623,47 +943,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1702,8 +1017,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1780,10 +1095,6 @@ msgstr "ኣቐምጥ" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "" msgid "Email" msgstr "ኢመይል" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "ስም" @@ -1912,27 +1222,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "ናይ ቀረባ ግዜ ሓሳባት" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "ማእኸል" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "የማን" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "ፀጋም" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "ዋላ ሓደ" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2090,7 +1400,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2102,28 +1412,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "ኣርእስቲ ፦" @@ -2139,12 +1449,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-tl.mo b/projects/plugins/wpcomsh/languages/wpcomsh-tl.mo index 16a501ee09c9021f7a2aba7fe249f14b35d98ed0..ad2242256c02a69cde06777c61688385e417519c 100644 GIT binary patch delta 2144 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-tl.po b/projects/plugins/wpcomsh/languages/wpcomsh-tl.po index 2b8374b3fe7cf..86ec47b3e708e 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-tl.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-tl.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Hindi mo maaaring bisitahin ang pahina na ito." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Mga Plugin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Madilim" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Maliwanag" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Sunset" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Overview" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Mga Setting " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Mga Sakop" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Lahat ng mga Site" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Pindutin ito para bawiin ang tugon." - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Mag-iwan ng tugon sa %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Mag-iwan ng puna" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "I-save ang aking pangalan, email, at website sa browser na ito para sa susunod na pagkakataong mag-comment ako." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Magpahatid" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Ipagpatuloy ang pagbabasa" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Opsiyonal" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Ikansela" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Komento" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Sagutin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Arawan" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Lumabas" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Magsimula" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Pumili ng tema" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Magdagdag ng bagong Pahina" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Thumbnail" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Pangalanan ang Iyong Blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Pamagat" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Oo" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Hindi" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Baguhin" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Ibukod:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "Kalipunan ng Kategoriya" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Alisin" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Larawan" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Lumikha ng libreng website o blog sa WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Sumulat ng Blog sa WordPress.com" @@ -1781,10 +1096,6 @@ msgstr "I-save" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "Telepono" msgid "Email" msgstr "Email" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Pangalan" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Kulay ng likuran ng teksto:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Kulay ng Likuran ng Avatar:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Walang mga Avatar" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(pinakamarami na ang 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Bilang ng punang maipapakita:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Kamakailang puna" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "sa" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Grid" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Listahan" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Sukat:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Sentro" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Kanan" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Kaliwa" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Wala" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Maliit (64 pixels) " @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Sukat ng Avatar (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Ipakita lahat ng may-akda (kabilang ang mga hindi nakasulat ng anumang paskil)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Pamagat:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-tlh.po b/projects/plugins/wpcomsh/languages/wpcomsh-tlh.po index c415c4dd5744b..b59f0947c9ba8 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-tlh.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-tlh.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1469,24 +799,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1623,47 +943,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1702,8 +1017,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1780,10 +1095,6 @@ msgstr "" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "" msgid "Email" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "" @@ -1912,27 +1222,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2090,7 +1400,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2102,28 +1412,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "" @@ -2139,12 +1449,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-tr_TR.mo b/projects/plugins/wpcomsh/languages/wpcomsh-tr_TR.mo index 4e638939ba7ee3fe8ef8fc509dd833075dc3c416..d3da712d11d62bc8d0575cac15e2fa2d107d8d21 100644 GIT binary patch delta 8788 zcmZYD30zfW`oQsX5nOOV1qD&zDx$KwBOop)poIvE=7QS=E^y^?!MmuqT{E{dHGR#Q z$rRHTD|NE#Xp=fxfN5z>ku_Oa+G19dWz$~c{GNLb^Kt(F^XcLHzVA8bJ@5Ox?>S&! zKiFc|;Q;TI&VdhU9CJ*X)&m3EYFZQJuewO9rlt1OwAPr0!8jKCU>>$ZC-z4#hT{Q@ z#xod)AK_pOj?%PlI1)o}Iu>)AR!$+5hF7o*ub@0Tn_k9Z5q7{mNMG6^Y=f_2SGCHOXag}4Gf>*6V<()45jXt)EV!#yYi*^kn}UojKk!WP)I zmp-sa6d?3s5q(5G9i*d9wzQoqos zuR^(Q3l6|Nn1!#QJUEn%F$tqlu5+LnS7IX8VJu!i*)zBLkbfCjcUt9!WDLYnC`&TV zFb{*MPe&Q>9Aud_2g=^rVz>`SQ9p(S_&rL>b4Zu;pN|nZ&!{iyOa3M08)%S$>_`67 zj`1T1KS0UE$0!|qi)+x-PoK#;l$jhvdC(=40bRj4cnf7h1zaTOry0)08`R6a6q+bZ zW&vdYvGMv1sVKXBB+5*SP&UyrlmTX-bexZE@gAdIj51T3p#x=rE|iq-MtSXy zq1=BC&&m7$It3ZwACvS8pF$bPOUUwRpP(6o+3GTY1eBSMLg_dM{qM8kLX?5uhwX4T z%Jom94DdM|iN`Tm-v93@1kfN`Iv84@q`U)4%91e*b5K4wMJOFPQD(9jB@-(#1UI4# z^kM9dhmbc=J8!gqg_6rHp8VDLVXi@Ww-94AQ%1_B?G5WQg;p|#g~lw*C@Xue#J_R z;Cm|_twBlo4wU{5qul=z%1mE3+ApCD>;_5(e@!9(a-nQR89;lK8@l5d>}6Pt;neq| z4CsVWe+wl8U!g3~ZR~8A+?;HO>+(m|JWeI~Ien<*9LJ7 zU%^;CM$;NGJ(Dz}{0=?_C-F^mjni+;$;*S*>my`cS!rJM+xpr^1F2UGXre0&a>j23#A{_8UzOQa+dgr~8ky#I|9f@!#blkpvt8{%^HT|5L^Q6Gb{R1;9va0bezU4SvT z1UKL#D4Q~NqW*nIMY(=7nsGA9CUoLNdH>f@kQ z3r?J*r}QwAb*(mE-(06r_Qp+=_W1=29-lzT^iA~2$fh#wcr3$k+=c=86v~VbqHMO4 z#`z|clz)lxJupqtQyqnJU4~IF#3fuIx6q>1LqYSVN*$$c$WwV|^8Q?kWg>PeP{0YO+ z#H-R3z1=9tnhZpFU?$3Il8a_6KuOs`lufi1WfNXPN%^~&h&NE)g08dl0jHz9RhcL= zo@lhs!{OA+kj#0tJrv}9d=6!#&!dd|GDhI%D5*0Q@m0il9Ec@28h7AOd<*5iHoPif z7><&eMC^{KC>fZFGSN90D(`{9I0#Q+2+!AUN&#=9j4))L{<=gM#-prh2Fk#)FazhJ zqIu1v9uoESNo3SN6ik->8 z0WSsFd?#%B=4-;f)W5?7j9j2+AP40&U5N64)hHcrKv}x|C<8u)(%+jX8T$g|b^Zp2+Cf{ zLg}X%Wq{jIGWrCzk@x>F1vb9+JkBE};Z^*_f{PvOXw0n9H=T*^rQG-wN=HWw&lEzZOCLxiN~RJ}HhT`r+fa;Q^8PO|F4&CnyWoIv!EsEWei0=zKcl2J(9Ood9@q|d zp|l^s&Ugl;pC**lUqczdb&SOTkDj^y7|!#x0Td)<<53UV5~(+@j)DlM^QSufnBlH z65S}2O*hOiA7#Kcl)Z5TWkN5Y?5$Ug_BSz%`g=G8zga^5rK3Kz`r3>_dC)AB&9o5N zB$^l7;{7NydI-DVDcpfgn2r@o`4b%X^W%GrTE^E9!}uEA!XNND-dMq}XnbQO`Ii%~ z%Q~>xURuSgN3s51{m(}bP3%0D&J%o|mcL5*A>v$YDuh$2h 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-tr_TR.po b/projects/plugins/wpcomsh/languages/wpcomsh-tr_TR.po index 15706ac43bb60..d6bbf896a0e8a 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-tr_TR.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-tr_TR.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "%1$s yazarının %3$s yorumu" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "Gravatar’ınızı profil sayfanızdan değiştirebilirsiniz." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Pazarlama" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Üzgünüm, bu sayfaya erişmenize izin verilmiyor." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Eklentiler" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "Sitenizi WordPress.com'un eski panosuyla yönetin." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "Varsayılan stil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "Sitenizi WP-Admin'le yönetin." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "Klasik stil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "Yönetici Arayüzü Stili" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Eklentileri keşfedin" @@ -72,424 +42,10 @@ msgstr "Sitenizin işlevselliğini ve özelliklerini iyileştirebilecek çeşitl msgid "Flex your site's features with plugins" msgstr "Sitenizi eklentilerle esnetin" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "Tema Vitrini" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "Temalara göz atın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "WordPress.com temalarının dünyasına girin. Sitenize hayat vermeye hazır hızlı ve güzel tasarımları keşfedin." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "Siteniz için mükemmel temayı bulun" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "Akılda kalıcı birkaç sözcükle okurlarınızı yorum yapmaya teşvik edin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "Yorumlarda blokları etkinleştir" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "Ziyaretçilerin yorum yapmak için WordPress.com veya Facebook hesaplarını kullanmalarına izin verin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "Yorumlar formunuz için şık bir karşılama ve renk düzeni ayarlayın." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Renk Şeması" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "Karşılama Metni" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "Bloklara İzin Ver" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Koyu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Açık" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Şeffaf" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Mağazanızı yayınlayın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Alan adı ekle" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "İşletmenizi büyütün" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Satış vergisi alın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "WooPayments ile ödeme alın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Ürünlerinizi ekleyin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Mağazanızı özelleştirin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Gün batımı" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Sakura" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Henüz Yağmış Kar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Alacakaranlık" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Karşılaştır" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Klasik Koyu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Klasik Parlak" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Klasik Mavi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Aquatic" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Genel görünüm" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "“%s” öğesini Jetpack Social aracılığıyla paylaşın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "Paketlerin, alan adlarının, e-postaların vb. ayarlarına erişmek için kenar çubuğundaki \"Barındırma\" seçeneğine tıklayın." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Ayarlar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "Para kazanın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "İzleme" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Yapılandırma" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Satın Alınanlar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "E-postalar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Alan Adları" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "Eklentiler" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Paketler" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "Barındırma" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Tüm Siteler" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "Hata: Lütfen tekrar yorun yapmayı deneyin." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "Hata: Facebook girişinizin süresi doldu." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Cevabı iptal et" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "%s için bir cevap yazın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Yorum bırakın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Bir dahaki sefere yorum yaptığımda kullanılmak üzere adımı, e-posta adresimi ve web site adresimi bu tarayıcıya kaydet." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "Yorum başarıyla gönderildi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Abone Olun" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "E-posta adresinizi girin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "Blok gönderileriyle ilgili güncellemeler almak mı istiyorsunuz? Gelişmelerden haberdar olmak için aşağıdaki düğmeye tıklayın!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "Hiçbir şeyi kaçırmayın!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Okumaya devam edin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "Okumaya devam etmek ve tüm arşive erişim kazanmak için hemen abone olun." - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "%s sitesinden daha fazla şey keşfedin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "Yorumunuz yükleniyor..." - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "Sizi gelişmelerden haberdar edelim!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "İsteğe Bağlı" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Web sitesi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "Cevap yazın…" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Vazgeç" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Yeni yorumlar için e-postalar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Yeni yazıları bana e-postayla gönder" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Beni yeni yazılardan haberdar et" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Haftalık" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Yorum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Cevapla" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Günlük" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Anında" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Adres hiçbir zaman paylaşılmayacaktır)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Çıkış" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "%s üzerinden oturum açıldı" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "Yorum yapmak için oturum açın." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "Cevap yazmak için oturum açın." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "Bir yorum ekleyin. (oturum açma isteğe bağlı)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "Bir yanıt bırakın. (oturum açma isteğe bağlı)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "Web Sitesi (isteğe bağlı)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "E-posta (adres hiçbir zaman paylaşılmayacaktır)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "Bu sitedeki blog gönderileri için web bildirimleri ve mobil bildirimler alın." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "Bir yorum eklemek için oturum açın veya adınız ve e-postanızı girin." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "Bir yanıt bırakmak için oturum açın veya adınız ve e-postanızı girin." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Yorum Yapın..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Başlayın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "Medium, Substack, Squarespace, Wix ve daha fazlasından gönderileri ve yorumları içe aktarmak için WordPress.com'un kılavuzlu içe aktarıcısını kullanın." - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "Jetpack tarafından desteklenen daha fazla yazma ayarı için %1$sJetpack Ayarları%2$s'nı ziyaret edin." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "Planlanmış Güncellemeler" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "Alan adlarınızın e-posta adresini doğrulayın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Site kurulumu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "Sensei kurulumunu tamamlayın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "Mağaza kurulumunu tamamlayın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Sitenizin tasarımını güncelleyin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Yazıları paylaşıma aç" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Mobil uygulamayı yükleyin" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "Hiçbir dosya geri yüklenmedi." @@ -563,134 +119,6 @@ msgstr "Bir içe aktarım zaten çalışıyor." msgid "The backup import has been cancelled." msgstr "Yedekleme içe aktarımı iptal edildi." -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "Siteniz için sıradaki adımlar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "Sitenize Abonelik Bloku ekleyin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "Mevcut abonelerinizi içeri aktarın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "Site ölçümlerini görüntüle" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "SSH ayarla" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "Özel bir eklenti kurun" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Bir tema seçin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "Destekleyicileriniz için bir teklif oluşturun" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "Ödeme almak için bir Stripe hesabı bağlayın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "Hakkında sayfanızı ekleyin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "Ücretli Haber Bülteni paketinizi yönetin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "Sosyal medya hesaplarınızı bağlayın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "Abonelerinizi yönetme" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "3 blog gönderisi yazın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "İlk 10 abonenizi elde edin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "Aboneler kipini etkinleştirin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "Karşılama mesajını özelleştirin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "Haber bülteninizle para kazanın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "Hakkında sayfanızı güncelleyin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "İçerik taşıyın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "E-posta adresinizi doğrulayın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "Yeni gönderi ve sayfanın oluşturulmasını ve mevcut gönderiler ile sayfaların düzenlenmesini önleyip yorumları site çapında kapatır." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "Kilitli Modu Aç" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "Kilitli Mod" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "Siteyi sahiplenmek için belirlediğiniz kişinin ölüm belgesinin bir kopyasıyla şuradan bizimle iletişime geçmesini istiyoruz: %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "Siz vefat ettiğinizde sitenizle ilgilenecek kişiyi belirleyin." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "Eski İletişim Kişisi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "Gelişmiş Sahiplik" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "\"Herkes kaydolabilir\" seçeneği şu anda etkin. Şu anki varsayılan rol: %1$s. %4$s Açık kayıt gerekli değilse lütfen bu seçeneği devre dışı bırakmayı göz önünde bulundurun." @@ -720,149 +148,37 @@ msgstr "Dosya mevcut değil" msgid "Could not determine importer type." msgstr "Aktarma aracı türüne karar verilemedi" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "Siteni paylaş" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "Sayfa düzenleme" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "Siteniz premium stiller içeriyor. Bunları yayımlamak ve bir sürü başka özelliğin kilidini açmak için şimdi yükseltin." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "Alan adınızı özelleştirin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Yeni sayfa ekle" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Sitenize daha fazla ziyaretçi yönlendirin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Sitenize bir isim verin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "Ücretsiz bir yıllık alan adınızı talep edin" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "Hediye Et" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Küçük resim" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "Duyuru'yu kullanarak “%s” öğesini paylaşın" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "Paylaş" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "Planı yükselt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "Ücretli Haber Bülteni oluşturun" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "Ödeme yöntemini ayarlayın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Alan adı seçin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "Blogunuzu açın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "Site tasarımını düzenleyin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "Sitenizi kurun" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Blogunun İsmi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "Sitenizi kişiselleştirin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "İlk videonuzu yükleyin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "Video sitenizi kurun" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Sitenizi yayınlayın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "Bağlantı ekle" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "Bağlantı Profildenizi Kişiselleştirin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "Bir tasarım seçin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Yazmaya başlayın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "İlk yazınızı yazın" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "Abone ekleyin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Bir paket seçin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "Haber Bülteninizi Kişiselleştirin" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "%1$s sınıfı yüklenemiyor. Lütfen düzenleyiciyi kullanarak içerdiği paketi ekleyin ve Jetpack otomatik yükleyiciyi gerekli hale getirdiğinizden emin olun" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Metin alan adı takma adları, %1$s kancasından önce kaydedilmelidir. Bu bildirim %2$s alan adı tarafından tetiklendi." #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "\"%s\" komut dosyası wp-i18n'ye bağlıdır ancak \"textdomain\" belirtmez" @@ -1063,27 +379,27 @@ msgstr "Çok şanslısınız! Tema tasarımcılarınız sizin için özel yazı msgid "Uncheck to disable" msgstr "Etkisizleştirmek için onayı kaldırın" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "Spotify Akışı Kimliği" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "Apple Podcasts Akışı Kimliği" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Başlık:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Podcast RSS Akışı" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "Spotify'da dinleyin" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "Apple Podcasts'de dinleyin" @@ -1095,98 +411,114 @@ msgstr "Podcastinizle ilgili bilgiler verip ziyaretçilere iTunes üzerinden siz msgid "Podcast" msgstr "Podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "iTunes kategorisi seç:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Podcast kategorisini ayarlayın" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Podcast anahtar kelimelerini ayarlayın" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Podcast görselini ayarlayın" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "Temiz" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Evet" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Hayır" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Podcast açık olarak ayarlayın" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "Podcast telif hakkını ayarlayın" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "Podcast özeti" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Podcast yapımcısını belirle" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "Podcast alt başlığını ayarlayın" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "Podcast başlığını ayarlayın" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "Bu, iTunes veya podcast hizmetine ilettiğiniz URL'dir." -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Podcast akışınız: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Podcast kategorisi seçin:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Podcast için blog kategorisi" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Podcast kategorisi 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Podcast kategorisi 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Podcast kategorisi 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Podcast anahtar kelimeleri" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Podcast görseli" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Açık olarak işaretle" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Podcast telif hakkı" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Ortam akışı özeti" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Podcast yetenek adı" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "Ortam akışı alt başlık" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "Ortam akışı başlığı" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Düzenle" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Evim" @@ -1428,31 +758,31 @@ msgstr "Disk alanı kotası" msgid "Disk space used" msgstr "Kullanılan disk alanı" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "Daha fazla bilgi için tıklayın" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "Alt kategorilerdeki ögeleri sayarak ana toplamı bulun." -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "En büyük font yüzdeye göre:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "En az yazı tipi yüzdesi:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Virgülle ayrılmış kategori ID kimlikleri" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Ayrı tut:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Gösterilecek kategorilerin azami sayısı:" @@ -1470,24 +800,14 @@ msgstr "Bulut biçiminde en çok kullanılan kategorileriniz." msgid "Category Cloud" msgstr "Kategori Bulutu" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack bağlantısı kesildi ve site özel. Site görünürlük ayarlarını yönetmek için Jetpack'i yeniden bağlayın." - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "Görünürlüğü güncelle" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Siteyi başlat" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Gizle" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Şu anda %2$s yükleme limitinizin %1$s kadarını kullanıyorsunuz (%%%3$s)." @@ -1624,47 +944,47 @@ msgstr "En yeni Instagram fotoğraflarınızı görüntüleyin." msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Biyografi" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Başlık" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Fotoğraf" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "İsmi Gösterme" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "Küçük Görüntüle" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "Orta Ölçekli Göster" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "Büyük Ölçekli Göster" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "Çok Büyük Ölçekli Göster" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "about.me URL'iniz" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Bileşen başlığı" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "about.me bileşeni 1 Temmuz 2016'dan itibaren kullanılamayacaktır. Bu tarihten sonra bu bileşen about.me profilinize bir link görüntüleyecektir. Lütfen bu bileşeni kaldırın." @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "about.me profilini küçük resim ile görüntüle" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "İstenen veriler alınamıyor." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "WordPress.com'da ücretsiz bir web sitesi ya da blog oluşturun" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "WordPress.com 'da ücretsiz bir web sitesi kurun" @@ -1703,8 +1018,8 @@ msgstr "WordPress.com tarafından desteklenmektedir" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "WordPress.com'da Blog Oluşturun" @@ -1781,10 +1096,6 @@ msgstr "Kaydet" msgid "Activate & Save" msgstr "Etkinleştirin ve Tasarruf Edin" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "Sitenizin görünürlük ayarlarını yönetin" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "Bu eklenti, Wordpress.com tarafından yüklenmiştir ve paket aboneliğinizde sunulan özellikleri sunar." @@ -1898,8 +1209,7 @@ msgstr "Telefon" msgid "Email" msgstr "E-posta" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "İsim" @@ -1913,27 +1223,27 @@ msgstr "Rezervasyon Talebi" msgid "Reservations" msgstr "Rezervasyonlar" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Şuradaki yorumları göster:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Metin arkaplan rengi:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Avatar arkaplan rengi:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Avatar Yok" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(en fazla 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Gösterilecek yorum sayısı:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "Son Yorumlar" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "Yakın bir tarihte herhangi bir gönderi beğenmediniz. Bir gönderi beğendiğinizde, Beğendiğim Gönderiler ile bunları görüntüleyebilirsiniz." -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr " " #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%2$s üzerinde %1$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "Yazarın beğendiklerini göster:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Kılavuz" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Liste" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Görüntüleme şekli:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "Gösterilecek gönderi sayısı (1-15 arası):" @@ -2019,62 +1329,62 @@ msgstr "Oyladım" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "Okuyucularınıza “Oy Verdim” etiketiyle oy verdiğinizi gösterin." -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "Gravatar’dan sonra görüntülenecek metin. İsteğe bağlıdır ve sizi veya blogunuzun ne hakkında olduğunu tanımlamak için kullanılabilir." -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar bağlantısı. Bu, biri sizin Gravatar’ınıza tıkladığında kullanılacak olan isteğe bağlı bir URL’dir:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar hizası:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Boyut:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Özel E-Posta Adresi" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "Bir kullanıcı seçin veya \"özel\"i seçip özel bir e-posta adresi girin." -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Merkez" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Sağ" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Sol" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Hiçbiri" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "Çok Büyük (256 piksel)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "Büyük (128 piksel)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Orta (96 piksel)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "Küçük (64 piksel)" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Bir Gravatar resmi ekleyin" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "Kenar çubuğunuzda görüntülenecek bir resim seçin:" @@ -2103,28 +1413,28 @@ msgstr "Henüz Yayımlandı" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Kenar çubuğunuzda Yeni Basılmış bir rozet görüntüleyin" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Avatar Boyutu (piksel):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Bütün yazarları göster (hiç yazısı olmayanlar dahil)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Başlık:" @@ -2140,12 +1450,12 @@ msgstr "Yazar avatar görsellerini tablo biçiminde göster." msgid "Author Grid" msgstr "Yazar Tablosu" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Özel Site" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Bu site özel." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ug_CN.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ug_CN.mo index be3cb6fde05afd9946b392ef7b0b5ef1d524e770..35658b850910e6c647256a872ced02e90dfd8946 100644 GIT binary patch delta 2214 zcmXxkeN5F=9LMo<6;MH*E|+-5OBjhF4~j}xBvdG$(I}GUa@Rn)iw6ayxuq9d0*gOt zoUDIrvrR@hYRhZ=;cU$^Yt~k4%Xy{zBixL(EL-_stM}(}IJ@8bI_GzPzw`M0-79rp zRfcbS<4zk&E0Is!nP*HGC*%2|ytlxZ#rQrh!B21#-oO;hS!m26T!vgSt1ue_7>CW6 ziFi)-&kO{mSak6Z2-V*xmg3lKJ8Ujf(Tu*p3j7|m0$xtD3{tTgYfwAYg_^)9 zYTyZ6ffrCKyp5XJJm2i|8K{ZZVj=EAHrI4vqTc`GRP?%x;EOnpT5&r6Ld?aiz+9|D z4b+O4@DysI^`yA&Z$jlr2$iJ0sIwkK-8YVp;6>C9+`=-w|8X3&Zm2?aP>;{yR!%svHt@$Fjk&+3MHk+H&4VWoF6JtDqUMB zVU(1+)S!?WW(P5!(Any^=8BS28LqNt7PH&A4xe;&(L7hzHq8|!hZ1omp$u&$RN{#3 zL^+|1UvGb3w8mB?Hrdw_x7(S-(z2s{{XJd&#;#zf)4#E;t+&0eFJKzl4+f8R_M3)K z-{H>SF@I-!_o4odfE`ZiwErc2lyb1&>b8F_J`lgVqo=#w9!ajXk>pZO zo2^bcY(GwU#|BgPNA9Nn>d6WA1`mW@Fws|{BR4Nj4M$Ji8k#!o-`w16mv{&4H{KI= zG9zH`XZWnoS7OI}-bjZp$rBmO+~gU{%D2T?d3I;kkICn!-iW?RoQ#e{hwSm}6E-1d b!1m^PBX8%%c_N?Yt@GHFg8Pv`;R4V9CmZMx literal 8001 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 N^-&pq1o5xt{|D=#euMx3 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ug_CN.po b/projects/plugins/wpcomsh/languages/wpcomsh-ug_CN.po index 53c082a14c1ea..714dccebb1765 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-ug_CN.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-ug_CN.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "كەچۈرۈڭ، سىزنىڭ بۇ بەتكە ئېرىشىشىڭىزگە رۇخسەت بېرىلمىگەن." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "قىستۇرمىلار" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "ئۇسلۇب مىسالى" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "رەڭ ئىسخېمىسى" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "قېنىق" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "سۇس" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "كۈنپېتىش" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "قىسقىچە تونۇشتۇرۇش" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "تەڭشەكلەر" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr " سەپلىمىلەر" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "تور ئادرېسلىرى" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "بارلىق توربەتلەر" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "جاۋابنى بىكار قىل" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "%s ئۈچۈن جاۋاب قايتۇرۇش" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "باھا يېزىش" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "كىيىكى قېتىم پىكىر بېرگەندە ئ‍شلىتىس ئۈچۈن مىنىڭ ئ‍سمىمنى، ئېلېكتىرونلۇق پوچتا ئادىرسىمنى ۋە تور ئادىرسىمنى توركۆرگۈش ساخلىۋالسۇن" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "خەتلىنىش" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "ئوقۇشنى داۋاملاشتۇرۇش" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "ئىختىيارى" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "تور بېكەت" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "ئىناۋەتسىز" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "ھەپتىلىك" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "باھا" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "جاۋاب" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "چېكىنىش" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "باشلاش" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "يېڭى بەت قوش" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "كىچىك كۆرۈنۈش" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "تېما" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "ھەئە" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "ياق" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "تەھرىرلەش" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "چىقىرىۋېتىش:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "كاتېگورىيە بۇلۇتى" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "يوشۇرۇش" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "WordPress.com دىكى بلوگ" @@ -1781,10 +1096,6 @@ msgstr "ساقلا" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "تېلېفون" msgid "Email" msgstr "ئېلېكتىرونلۇق خەت" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "ئىسىم" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "تېكىستنىڭ تەگلىك رەڭگى:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "ئاۋاتار تەگلىك رەڭگى:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "ئاۋاتار كۆرسىتىلمىسۇن" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(ئەڭ كۆپ بولغاندا 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "كۆرسىتىلىدىغان باھا سانى:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "يېقىنقى باھالار" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr " " #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "كاتەكچە" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "تىزىملىك" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "گراۋاتارنىڭ ئورنى:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "رازمېرى:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "ئۆزى بەلگىلىگەن ئېلخەت ئادرېسى:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "ئوتتۇرىغا توغرىلاش" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "ئوڭغا توغرىلاش" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "سولغا توغرىلاش" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "يوق" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "ئالاھىدە چوڭ (256 پىكسېل)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "چوڭ (128 پىكسېل)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "ئوتتۇراھال (96 پىكسېل)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "كىچىك (64 پىكسېل)" @@ -2091,7 +1401,7 @@ msgstr "گراۋاتار" msgid "Insert a Gravatar image" msgstr "گراۋاتار سۈرىتى قىستۇرۇش" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "يېڭىدىن يوللانغانلار" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "تېمىسى:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-uk.mo b/projects/plugins/wpcomsh/languages/wpcomsh-uk.mo index 532d33fc56508887c427fbb4d6e9968ed0e00ed0..7eec7070256470ec9509d4b6e6d593fc01b8f106 100644 GIT binary patch delta 4093 zcmZwIdvKK19mesq5CRy1TuF$5Ea8%XX9HKrO=KYtA)q{!(FPjV=Xwll-e>Vov}>oXo-}^b|eb0Mt z?>U=mt2aCyx}F@j+mQAXSwvh9V}6OB_vS(>>toE_I1cl0DrTb}2jKJA4`0V}JcWJn z4yuU+3JI8oJ#jE*;0WY-$dq?xOa;dApc>O~0d~h{kw3G7%V6Au>G&GP<9X*#Q3Jh* zz3{3le~KEwEgX(tVgcqb>NNT{v&d*<^_Yx))W|o)Dj3s-g_IAW8oG?CcOCgNf8nBm zdlEa}i+3g>i)k`Z1M;HY8{zIxz<%^^%3XyjOrg907os24@Fn;Bvhy0Mp&Rb`ZPd)~ zxN`3#I-%Sb^?n&@r5-@7+(W2=J&7SbSWHG08=TFk`vIg)vj&IZPE^Nlp;qiYj4e6p z{i}EvUdL|uM_2wFwP$Xl>ZQ|&+RsX6{k4QcxS@tebGZknqDHvbxfIo5GxBFvI=4Gt zMfRIHf*SBS)IdH&4e%;zbN?RIUw4*S?Wd%${u1O_zzwAP3%wk1lHjtRC^^HC7q@+E_!bU>i&GxCkQPfqYiyI3zwrRzJprwi>Lu! zLCxR>YK8uRY9NkYHNynd3T8V;p;l-d>KIpG4OXHiaugrd`TvxR8qQ;#wbbLeX!BH| zI-ZMEF+QYEvljI&U&MiU1oi$UUcA1<_C}^HesBL|3oeQ zOd8jKLl_!K<^UOu=mVU9pP&yj2Xzi?9S))l@oG8oewe@g&vH+JRF1Hz^8CH{utR7<_ZqMo2b)~M1ikk z2B3~(sVk4i(UhxE9q&M`@LtsK!kfsSiH5jNCG&Sw#R)vs(maML&%s=*b?$VAQJ>@* z>Jxe>Xy&8vKAepD)+>?8n%7XjjPEd@DnV< zL`F3pr{hH2gxWjrA%DihG8W+o9EDGy2D%mX-cjV(hRjVe+7w@*epu4zU7unIF2Ewx z4BAjLIE*^SZ{xlA5&jIj(RwfZIja6;)P(-#>`7&vl1$X^#c9p;LM`ED)aE>h8rT_($IG}Aui{MfF8-@+lduKSDHjdn^K9vn`WXf@d}}Dy_rzbzEPUjiCKl(oH`*| zdaZ&|tG@q2GVCGKraPofL=R#sQAN}c?Zi`rQuj_`dqY{B2Bj8)A4D^Tu*6DY7s39E zeU21VT1;^0VxR08eSdvRrALUDV>x49!WUd#On3R`Q15i5^<)ZMp*QX(wzx9;)_lw5 z{5FwKBoT2$SDH-5wk2)0`N`!8 z4Z#L~b4{an%Iw*;J-NxIr?eym{LS?NGsWN3&|L4G?e{m^)YK+>Fg4FcQ)k(cX_M{F zv=aNfw2)oVf5*UznwEN>si@!@0etR-w-W=~TU+XG=OI^TJ`s-?I0zrBv8wdux)4df9%c$GpUs2cC z>Rs+%ii!Tr`RlZtZbI{9(n~-ut{nDVFKVX>s#ei*zyc27)s}nmf z^ZjtqJw+bdm^Isen3dDJpw{2yWx)RM(1DM4>oX?5c&xX$czkK;_>z+Fj_mtAHfiv? zy=q%q8X6lLYVD+)92?9zXP+7J=Zx=0-ijQLu8X!uH$>aKk+;dLkDQCP+oWOr?ZsiE z?WtjVJ$vkh;o0`s@CR+r+zX!lcF>ps_Ezp;dpU23eR;$e;WH!iJr72XN6th}Motr_ zOymcV^U-yYvyqPI1{2vAZI2w)jp)YcRueg(9#x&&r%mMhk)!n2Bfr>A&p&O46l8^G z6!i4iwS}3sqwtN4SE#oux;1iM)x3=EjIxmqJFRG8!5(iU9P8_31 literal 15451 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-uk.po b/projects/plugins/wpcomsh/languages/wpcomsh-uk.po index b2abef1a4d9fe..f1089c67a7577 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-uk.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-uk.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WordPress.com - Site Helper package. msgid "" msgstr "" -"PO-Revision-Date: 2024-05-21 20:10:05+0000\n" +"PO-Revision-Date: 2024-06-17 11:55:22+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Маркетинг" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "На жаль, вам не дозволено переглядати цю сторінку." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Плаґіни" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Кольори" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Темний" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Світлий" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "Прозорий" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "Запустіть свій магазин" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Додати домен" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "Збільшуйте свій бізнес" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "Збирайте податок з продажів" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "Отримуйте оплату за допомогою WooPayments" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "Додайте свої товари" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "Налаштувати магазин" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Захід сонця" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Сакура" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Порошковий сніг" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Сутінки" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Контраст" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Класичний яскравий" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Класичний синій" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Огляд" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Налаштування" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "Конфігурація" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Покупки" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Email'и" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Домени " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Плани" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Всі сайти" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Скасувати відповідь" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Залишити відповідь на %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Написати коментар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Зберегти моє ім'я, e-mail, та адресу сайту в цьому браузері для моїх подальших коментарів." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Підписатись" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Введіть свою e-mail адресу" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Продовжити читання" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Необов’язково" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Сайт" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Скасувати" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Щотижнево" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Коментар" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Відповідь" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Щоденно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Негайно" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Адреса ніколи не буде доступна публічно)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Вийти" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "Написати коментар..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Початок роботи" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "Встановити мобільний застосунок" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Виберіть тему" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Додати нову сторінку" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Мініатюра" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Ім'я Вашого Блогу" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Заголовок" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "Подкаст" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "Оберіть категорію iTunes:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "Встановити категорію подкасту" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "Встановити ключові слова подкасту" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "Встановити зображення подкасту" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Так" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Ні" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "Встановити подкаст як відвертий" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "Встановити автора подкасту" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "Ваш канал подкастів: %1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Обрати категорію подкастів:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Категорія подкастів 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Категорія подкастів 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Категорія подкастів 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Ключові слова подкасту" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Зображення подкасту" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "Позначити як відверте" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1300,8 +632,6 @@ msgid "Edit" msgstr "Редагувати" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1429,31 +759,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "Ідентифікатори категорій, розділені комами" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Виключити:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "Найбільша кількість категорій для показу:" @@ -1471,24 +801,14 @@ msgstr "" msgid "Category Cloud" msgstr "Хмара категорій" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Пропустити" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Наразі ви використовуєте %1$s з %2$s дискового простору (%3$s%%)." @@ -1625,47 +945,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "Біографія" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "Заголовок" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Фото" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "Не відображати ім’я" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "Ваше посилання about.me" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "Назва віджета" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1682,19 +1002,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Створити безкоштовний сайт або блог на WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "Створити безкоштовний сайт на WordPress.com" @@ -1704,8 +1019,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Блог на WordPress.com " @@ -1756,7 +1071,7 @@ msgstr "Тема" #: footer-credit/footer-credit-optimizations.php:119 msgid "Proudly powered by WordPress" -msgstr "" +msgstr "З гордістю працює на WordPress" #: customizer-fixes/customizer-fixes.php:26 msgid "Save Settings" @@ -1782,10 +1097,6 @@ msgstr "Зберегти" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1899,8 +1210,7 @@ msgstr "Телефон" msgid "Email" msgstr "Електрона пошта" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Ім`я" @@ -1914,27 +1224,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "Показати коментарі з:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Колір фону для текстів: " -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Фоновий колір аватара:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Немає аватарів" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(максимум 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Показувати таку кількість коментарів:" @@ -1956,37 +1266,37 @@ msgid "Recent Comments" msgstr "Останні коментарі" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "на" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%1$s на %2$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Сітка" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Перелік" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "Відображати як:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2020,62 +1330,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Посилання Gravatar. Це необов’язкове посилання, яке буде використовуватися коли хтось натисне на ваш Gravatar:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Вирівнювання Gravatar:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "Розмір:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "Користувацька e-mail адреса:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Центр" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Праворуч" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Ліворуч" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Жодного" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "Середній (96 пікселів)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2092,7 +1402,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "Вставити зображення Gravatar" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2104,28 +1414,28 @@ msgstr "Свіжа преса" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "Відображати значоч \"Свіжа преса\" у вашій бічній колонці" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Назва:" @@ -2141,12 +1451,12 @@ msgstr "Показати сітку аватарів авторів." msgid "Author Grid" msgstr "Сітка авторів" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Це приватний сайт." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-ur.mo b/projects/plugins/wpcomsh/languages/wpcomsh-ur.mo index 2d9a0c38a8f1421c3184cad5f3499285ed53da34..de90bfccc1c3fbc108f47b553028938cd8582544 100644 GIT binary patch delta 1959 zcmXxke@vBC9LMnkLUsWW@G8H%S3uN=kdUGRCDhO;BSmX%xu|=EyMSAHEw|S0Zjm|0 zYH?`GA8U;*aiuv%4Ch+T^>eLOtF=9syRx>*jsB@W)U7|N_vhZ@+5Mi^`SCpGoadb9 zxr-aG*2RA=$$8U|dWb3_mTgQJzs?~eJ${2R0qn;vOkg2?iaz`Sm*P*TTYkrtxQI(o zofJ)uGan16mtejzaTB1x&oq!}fELWfHoOrxVF`BQGJF)5W5wZb>}3m zr~jy{e}Y=jm*``D^DPBUm~BTl%m=zP!k2P z66;a(bUC-8ytg09*QAgM4 z>_qkNR)3Z;d-K@;hiDk&P0)nru^KNT*O*JF2^Wz?n`@}8RHFv2LiIP1t-yBFOWcck z35QYRyzKg4LxwO@xC%cgVE^kVeC94#MBVr=YC=EzuZ2}3O{Na@_BW#j?!-;lgZ#`G znXY>awZL~#_n$*uf5G{c^T#*^KOMighAXHi(JZ>rkEK|Nnz)5b??4x7z+HGdK8Ct} z(zPE)J;+H{{|Ghi7pMnLVGYJLn$D^gZ^Bm81bt*>7($NKyoj3cReS;`ke|6irk%9mDhVnhnIQ1Sf0O5K21Ibkg^KJ!$*b5<7^^ggz-HZQtGL zk}>6|r`8!NHDyTW_qejY0HxI#Obhl9L08xNb|(=aBH3i@nAu1uttaD z3O^Yhi3PVrhllZi4HYzGh3w^meRl7%6BW-#VzKbEX3x{1{#e*N90?7CW5K>iY$!b2 zR#=^FCyUnDZ;E>D&f?91)5%fqY|xtudNZknHyunRQWM6TPfd6qdS_D!n<%NV-<5=I z_lkMnDR0_4nHpa>Z|nRuw$ER0kNOX-O(v2@l824=o;Q~~k{b7BjCaPHPL8I=Q;8t0 ur@T4Fp0LMP4i+b0@y_Ua?_AK0|M{wmvvZ|YS$3hU&K8&ZXFJLpv;GH&p!q=n literal 6762 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "معاف کیجیے گا، آپ کو اس صفحے تک رسائی کی اجازت نہیں ہے۔" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "پلگ انز" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "رنگوں کا امتزاج" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "تاریک" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "ہلکا" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "شفاف" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "دومین شامل کریں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "غروب آفتاب" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "مجموعی جائزہ" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "ترتیبات" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "خریداریاں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "ڈومینز" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "پلانز" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "تمام سائٹس" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "جواب منسوخ کریں" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "تبصرہ کریں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "اس براؤزر میں میرا نام، ای میل، اور ویب سائٹ محفوظ رکھیں اگلی بار جب میں تبصرہ کرنے کےلیے۔" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "سبسکرائب کریں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "اپنا ای میل ایڈریس لکھیں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "پڑھنا جاری رکھیں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "اختیاری" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "ویب‌ سائٹ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "منسوخ کریں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "تبصرہ کریں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "جواب دیں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "روزانہ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "لاگ آؤٹ" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "شروع کریں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "تھیم منتخب کریں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "نیا صفحہ شامل کریں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "اپنی سائٹ پر ٹریفک لائیں" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "تھمب نیل" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "آپ کے بلاگ کا نام" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "عنوان" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "جی ہاں" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "جی نہیں " -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "ترمیم کریں" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "میرا سرورق" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "علیحدہ کریں:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "برخاست کریں" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "انسٹاگرام" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "تصویر" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "WordPress.com پر بلاگ" @@ -1781,10 +1096,6 @@ msgstr "محفوظ کریں" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "فون" msgid "Email" msgstr "ای میل" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "نام" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "دکھانے کے لیے تبصروں کی تعداد:" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "حالیہ تبصرے" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "پر" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "گرڈ" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "فہرست" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "سائز:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "درمیان" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "دائیں" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "بائیں" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "کچھ نہیں" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "حالیہ پریسڈ" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "عنوان:" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-uz_UZ.mo b/projects/plugins/wpcomsh/languages/wpcomsh-uz_UZ.mo index 3166fe0bfc89edd552120374073fd9961dac4683..e4885abeb20fc6089ff39ef3a4e0ddbd980340f0 100644 GIT binary patch delta 1477 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" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Marketing" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Kechirasiz, sizga bu saytga kirishga ruxsat berilmagan." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plaginlar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "To'q" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Yengil" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Umumiy ma'lumot" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Sozlanmalar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Emaillar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Barcha saytlar" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Javobni bekor qilish" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Keyingi marta fikr bildirishim uchun bu brauzerda mening ismim, email va saytim manzili saqlansin." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Ixtiyoriy" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Sayt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Bekor qilish" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "комментарий" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Javob berish" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Chiqish" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Boshlash" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Mavzuni tanlang" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Minatyura" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Sarlavha" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Ha" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Yo'q" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "Tahrirlash" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Istisno:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1469,24 +799,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Bekor qilish" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1623,47 +943,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1702,8 +1017,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1780,10 +1095,6 @@ msgstr "Saqlash" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "Telefon raqami" msgid "Email" msgstr "E-mail" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Nom" @@ -1912,27 +1222,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Sharhlar soni:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "Yangi sharhlar" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Список" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Center" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "O'ng" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Chap" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Mavjud emas" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2090,7 +1400,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2102,28 +1412,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Sarlavha:" @@ -2139,12 +1449,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-vi.mo b/projects/plugins/wpcomsh/languages/wpcomsh-vi.mo index 57e4770a3ad1f52a3ea50c2ef64e9bbbb12f95bc..003aa90d069265a538f5bb524d49a530ace01bea 100644 GIT binary patch delta 2929 zcmYk+d2EzL9LDhhiyW2$g^DeOzAZ-uu~a$aP^8>Ki$JSZRAk$3cNg1zN%yVTs9B?l zfDpA>Bh16Tv0MsN(pgTu5GjV{)++hhqhn;6j{>&6tNTBR}&dm%jKO4#AJ{ z3OtSc%sDPOcpeLkNt&Di##B*Jg!FChM7?kgszV<&mdBh=q6V}bFT=f9fv@6t{KnPy z<)#KQ6zAgzRL5&j0|{qL(gB%1RCHiJOyVHifcf~0yMGV|Qhv?de;3D6{uHmobExM> zF*QztwCQL>nU#kk-hMMsX)JXTB26zDJ!yIw<-$u3XaenCP zKS9m>bLVMy|9fO{%#YX`|G=aw{&Wp`Gd*?O7e`ux4s6DMh9yO~_D;7bu zUymBtgYN#r$j@x%qWim0&+i+^{_DZF-Hqd@4oB>{_ za>_Si6W)sIs2e$C<``<}zeGKM&fPzs$NFo=eHg_G%tbBTYUF2{x#$$%i;Tf+z|r_L z>bVqZ1&*N(?+FayDV&5;1{<>gn@~%B!1)U1_F^lOWOT}p(u+R7FK`w9hFXalrmc?a zQ6q0g)vrSxy8CfFK93sc3DnA*MJ@3UxETLM4RF!W>`E?0y*Ig~>=tnpXPomD$pUAN==h4GK?E4^n z|CMC)qB*FB)mVgesG0bvm3avD;%89<>U8%HIgg^Y>;&p8eTCQIIn=0#cgKNg2PVWqS0B^u4n8GIf1vR5OULsc^Uzdpy z%L%0#Vk|MA(7{x?LHmD4HlMj_bZn1VMpO_t6W0?;_hd1Pa5Yg*jB$0^CLK~GE%n7o zE1|^XGyfekQLCk|Dx&?LNGL7IlKI0}Oa3;ZjHoAc;`I-v?WiTLCKeJGQVE$E#8RU2 zLM7@TD@BQG37wzY2_^j@CFgLNN@%$+PPbCf9_c(NP0nKO#+8KjSxKLq(v4X%pW0pI z8;Lqs*U!l=Ws11?DR}k7erCYL?HO^@`o4AQ!YyVGolGFZkTrz(``g|7? zIvYwl)H*-2hz3GuD@?2+IK!qovnFIhghyOOj3O?i9GB5oGJ%*!*qpp2c5U9x{o;PS zqt$Ou*w6Ah?S?^B1N_!lJmS^*e%#g%j$9gU4z;%g_N&1QZPgIZzB6RGos(Z;XXIDf zWd5dPb*L>8Hr1i_cw^K{!~*3z{Pw_9hnu;?5?uU<7mJ&ka3T?+ZB2)_*l!J+Wg%U{ z_XS=e2(L?+Wj;Tz>fTTgYEvoBUB9h0)MA#kw>E^^Jipm%^jllQ@gU&^zL$vl>t_x( z%cE+^HSo=Hzo{{l2pGSu9adhjGTcaGZ=QR|tc*pXfqikM4+vd0TI+hkE;-*jq!+-nNi?xHjHz=%ct zYtyO2>%7LEF1x!pF|a0`dZW>M|EYBMrg+p&8yU4ejy)$l> zM$_H9W0__=*(1DFKFvI6pwlhJ$pJ#U0Y9Q%>LsQ**T@fwym_#ZZBPE z2b7hTy}u=v?tU!p1yMhp>WrDinTOJ;eetMU1e+|Y@aAT!TiVm9SK?l4x_f8Li$~L` z7XsFc#xeVQS%uv=y4)Tcz0!^wbJOK@yv=6}AqLi%?tUrcHBi%ac+5k+ZA1Cct|!XN Gd;JF;$C?8G literal 10420 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-vi.po b/projects/plugins/wpcomsh/languages/wpcomsh-vi.po index e31cd888881f4..13dc856821eb8 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-vi.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-vi.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "Tiếp thị" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Xin lỗi, bạn không được phép truy cập vào trang này." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "Plugin" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "Khám phá plugin" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "Tông màu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Màu tối" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "Nhẹ nhàng" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "Thêm tên miền" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "Hoàng hôn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "Hoa anh đào" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "Bột tuyết" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "Đêm thu" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "Tương phản" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "Đen cổ điển " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "Sáng cổ điển" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "Xanh cổ điển" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "Thủy sinh" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "Tổng quan" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "Các cài đặt" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "Thanh toán" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "Emails" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "Tên miền" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "Gói" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Tất cả blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "Hủy" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "Gửi phản hồi cho %s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Bình luận về bài viết này" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "Lưu tên, email và trang web của tôi trong trình duyệt này cho lần bình luận kế tiếp." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "Theo dõi" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "Nhập địa chỉ email" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "Đọc tiếp" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "Tùy chọn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "Website" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "Hủy bỏ" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "Email cho tôi các bình luận mới" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "Email cho tôi các bài viết mới" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "Thông báo cho tôi khi có bài viết mới" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "Tuần" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "Bình luận" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Trả lời" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "Ngày" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "Lập tức" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(Địa chỉ sẽ được ẩn)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "Đi ra khỏi nhà THchansan" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "Tham gia" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "Thiết lập blog" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "Sửa thiết kế blog của bạn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "Bật chia sẻ bài viết" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "Chọn một theme" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "Thêm trang mới" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "Tăng lượt truy cập đến blog của bạn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "Đặt tên blog của bạn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "Ảnh thu nhỏ" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "Chọn tên miền" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "Tên blog của bạn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "Khởi chạy trang web của bạn" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "Bắt đầu viết" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "Chọn một gói" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Tựa đề" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Có" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Không" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "Chọn chuyên mục podcast" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "Sửa" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "Tổng quan" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "Ngoại trừ:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1469,24 +799,14 @@ msgstr "" msgid "Category Cloud" msgstr "Mây chuyên mục" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "Khởi động blog" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "Hủy" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "Bạn đang sử dụng %1$s trong tổng số %2$s tối đa được cho phép (%3$s%%)." @@ -1623,47 +943,47 @@ msgstr "" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "Hình ảnh" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "Không thể tìm nạp dữ liệu yêu cầu." -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "Tạo một website miễn phí hoặc 1 blog với WordPress.com" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1702,8 +1017,8 @@ msgstr "Tạo trên Wordpress.com." #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "Blog tại WordPress.com" @@ -1780,10 +1095,6 @@ msgstr "Lưu lại" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "Điện thoại" msgid "Email" msgstr "Thư điện tử" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Tên" @@ -1912,27 +1222,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "Chọn màu nền cho chữ:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "Chọn màu nền cho ảnh đại diện" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "Không sử dụng ảnh đại diện" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(nhiều nhất là 15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "Số bài được hiển thị:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "Bình luận mới nhất" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "trên" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Dạng lưới" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "Danh sách" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Center" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Phải" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Trái" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "Trống" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2090,7 +1400,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2102,28 +1412,28 @@ msgstr "Mới đăng" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "Kích thước ảnh đại diện (px):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "Thể hiện toàn bộ tên tác giả (bao gồm cả những tác giả chưa có bài viết nào)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "Tiêu đề" @@ -2139,12 +1449,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "Trang Riêng Tư" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "Đây là trang riêng tư." diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-yi.po b/projects/plugins/wpcomsh/languages/wpcomsh-yi.po index 644d2def7cfff..8eb9b8fa46097 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-yi.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-yi.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-yor.mo b/projects/plugins/wpcomsh/languages/wpcomsh-yor.mo index 1e6763bfafd70f22f3de488ddee8f024da79406d..9fca04eb6ba1e659695e783d47e16986b390d6bf 100644 GIT binary patch delta 517 zcmX}oF)RaN6u|NC+AHVkN-q%$HX)XZ$v`AEFrCC=lNgQ!ZIf#gW32{}I&6kc5~+k( zgw2g+t3;S2CKe|DcOEZ&_v?G#*S_z*miyu~pM3k+5I#9XcF19J#^OO-Vi~W{#!u|R zFYHE>`RzNZr}`-S2GtSmkE#>Mr)f$&b8MW_g=s8N&uYJdS?W3#8M>qWJ(_Z$19b2R zd+`)KJjWiq(e-<+AFx3G5p&Epue#w4<-{Laf1^vCWy%~DPzD8<#}(u}>32vEDf=a4 zu!P*Ig#2%ja~~x~j(lJX>a=Z0>w{MnZsU4r$n?FqXIhX(d delta 682 zcmX}pPe>F|9KiA4xVounre#DWyrZ`e4LTLNp&@0EP?v~i-M6x}yA!ihix6nwMIvDt zBoIB=$%7uMQ|9emJ$33(fpm`oFG5h?-}>?~zxSEnZ{NIs`=hjd98U8@|4Yoz&mqb=>v!KX{V7jY$I5Z%(e)PrbQgXb$K_ zomiVL)KBQb{~HID(>^(ieT3cw*LvLaFVRDtA#^i(P#G;0Ox4y+?O8tE4X$1oEtk!7 zDX}#fD@U`Ev(?1LawCkNq<@1!6F#>lG&519!VhxG7898YD^{i=xoe-6=RORzJPd{> z^3iNQGSguxDILw@7TiYcwyWY6>X9k99UfEM-}$)rGH&+iTIOc|c**R4dL0vPtM1;< WSyOY{>9@>4cHC{&+*W#+dHfHdE@@~0 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-yor.po b/projects/plugins/wpcomsh/languages/wpcomsh-yor.po index e294693763855..69e547daf207c 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-yor.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-yor.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "Má bínú, a ò gbà ọ́ láàyè láti wo ojú ìwé yìí." -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "Àwo dúdú fẹ́rẹ́" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "Gbogbo Saiti" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "Fi ọrọìwòye sílẹ̀" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "Fèsì" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "Àkòrí" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "Bẹ́ẹ̀ni" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "Rárá" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1299,8 +631,6 @@ msgid "Edit" msgstr "Ṣàtúnṣe" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1428,31 +758,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1470,24 +800,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1624,47 +944,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1681,19 +1001,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1703,8 +1018,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1781,10 +1096,6 @@ msgstr "Fipamọ́" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1898,8 +1209,7 @@ msgstr "" msgid "Email" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "Orúkọ" @@ -1913,27 +1223,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "" @@ -1955,37 +1265,37 @@ msgid "Recent Comments" msgstr "" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "Gírìdì" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2019,62 +1329,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "Àárín" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "Ọ̀tún" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "Òsì" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2091,7 +1401,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2103,28 +1413,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "" @@ -2140,12 +1450,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-zh.mo b/projects/plugins/wpcomsh/languages/wpcomsh-zh.mo index 6c7e9d715209d3cf1abc5a0f4be1a0100c42be25..371da76b193113d8a8657c9f51ab7b6e49abd138 100644 GIT binary patch delta 757 zcmXZZKP&@L90%~<>Gk}rKS%v-qJt()EE)r0AQmJvl9~)nZfM#j+M{jQG**k@NE%`h zivblvB0|g^89E3Ht$|oX3>|!b*WWMqd!Kv1yL<25dnc}9L-s{icM0K~SwVwX zsUd2Dt8fZ#zXoWlQXJI}HOK?GAfAyfeYe;P zd4PV=C-p(tiTaS#r^R{53kr!#5EmI}c>D;gSF%Jg+%%(*!t6TSg#6)-xGx@x$6{W* zhP*>}VnOOf@l`B|Uyv8_!(x8=lLr;ZTjjuS@(V7=3u%Mhuv_{8aTN0V6VjiB{M~}M z2;~&*opbY8NRB>a7cyIih6m^KZ%1IsF6Ulvm{d delta 1057 zcmYk4OK4M35Qe9DsBQYLk2cyiYH*Q-wqOyZh?t!&EJoBtQEuWjy>fFC(uZ`F_&|J> z&|Iy>(u&YZ1>0C!D#mINT)1+jpdi`Uo7`^HjT@ohKV?LR{P#O^=A4<6Ip=f5OjW8- z@48PgKePktEFTPwK3h?r4r0I?yM(7fF5E4QfL!1bh?QxBB=ukxVxj>z;QP>Ld0rv<4GQU^YA?y?e!4$XT7zVuY zlmyNS&x4JazbJl6cmw2pL*hRWPJokn4;?x>JRrul3G|b1I`2PGitb3 zn?L6~UgotjBgMs=WY69%jxA8>%3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "插件" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "发表评论" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "訂閱" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "繼續閱讀" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "可选" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "网址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "取消" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "回复" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 -msgctxt "Share the post on social networks" -msgid "Share" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +msgctxt "Share the post on social networks" +msgid "Share" msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "" msgid "Uncheck to disable" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "标题" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "是" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "否" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "编辑" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "" @@ -1469,24 +799,14 @@ msgstr "" msgid "Category Cloud" msgstr "" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1623,47 +943,47 @@ msgstr "" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "" @@ -1702,8 +1017,8 @@ msgstr "" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "" @@ -1780,10 +1095,6 @@ msgstr "保存" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "" msgid "Email" msgstr "电子邮件" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "名称" @@ -1912,27 +1222,27 @@ msgstr "" msgid "Reservations" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "文字背景的顏色:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(最多15)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "列表" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "无" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "" @@ -2090,7 +1400,7 @@ msgstr "" msgid "Insert a Gravatar image" msgstr "" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "" @@ -2102,28 +1412,28 @@ msgstr "" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "标题:" @@ -2139,12 +1449,12 @@ msgstr "" msgid "Author Grid" msgstr "" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-zh_CN.mo b/projects/plugins/wpcomsh/languages/wpcomsh-zh_CN.mo index 474bb82a62dd82e911eea1b197e2033a5c421c27..4c039929ff4ecbd6f23f0552baac436a426e18e6 100644 GIT binary patch delta 8695 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 literal 46905 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 UhXM^}sNISZr@76u_|q)^4?yqW$^ZZW diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-zh_CN.po b/projects/plugins/wpcomsh/languages/wpcomsh-zh_CN.po index 9afc712866944..cf5aff04fba2c 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-zh_CN.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-zh_CN.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "%1$s 于 %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "您可以通过自己的个人资料页面修改 Gravatar。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "营销" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "抱歉,您不能访问此页面。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "插件" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "使用WordPress.com的旧仪表盘来管理您的站点。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "默认样式" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "使用WP-Admin来管理您的站点。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "经典风格" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "管理员界面样式" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "探索插件" @@ -72,424 +42,10 @@ msgstr "使用可增强站点功能的各种免费和付费插件。" msgid "Flex your site's features with plugins" msgstr "使用插件灵活调整站点功能" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "主题陈列窗" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "探索主题" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "深入探索 WordPress.com 主题的世界。 发现令人惊叹的响应式设计,为您的站点注入活力。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "为您的站点找到恰到好处的主题" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "能鼓励您的读者发表评论的几个抢眼词语" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "在评论中启用区块" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "让访客使用 WordPress.com 或 Facebook 账户添加评论" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "使用巧妙的问候文本和配色方案调整您的评论表单。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "配色方案" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "问候文本" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "允许使用区块" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "深色" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "浅色" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "透明" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "推出您的商店" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "添加域" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "拓展业务" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "收取销售税" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "通过 WooPayments 收款" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "添加产品" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "自定义您的商店" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "日落" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "樱花" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "点点细雪" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "黄昏" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "对比度" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "经典黑暗" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "经典亮" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "经典蓝" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "水生" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "概述" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "通过 Jetpack Social 共享“%s”" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "要访问套餐、域名、电子邮件等项目的相关设置,请点击边栏中的“托管服务”。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "设置" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "货币化" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "监测" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "配置" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "购买" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "电邮" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "域" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "加载项" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "套餐" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "主机" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "所有站点" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "错误:请再次尝试评论。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "错误:您的 Facebook 登录信息已过期。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "取消回复" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "为 %s 发表评论" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "留下评论" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "在此浏览器中保存我的显示名称、邮箱地址和网站地址,以便下次评论时使用。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "评论发送成功" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "订阅" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "输入您的电子邮箱地址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "想要接收博文更新动态? 点击下方按钮即可保持关注!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "避免错过任何内容!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "繼續閱讀" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "立即订阅以继续阅读并访问完整档案。" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "了解 %s 的更多信息" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "正在加载您的评论..." - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "我们将及时为您提供最新消息!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "可选" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "网站地址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "写回复…" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "取消" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "针对新评论的电子邮件" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "通过电子邮件向我发送新文章" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "有新文章时通知我" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "每周" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "评论" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "回复" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "每日" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "立即" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(地址永远不会公开)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "注销" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "已通过 %s 登录" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "登录以发表评论。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "登录以发表评论。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "发表评论。(可选择登录)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "发表评论。(可选择登录)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "网站(可选)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "电子邮件(地址永远不会公开)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "接收有关此站点上发布的文章的 Web 版和手机版通知。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "登录或提供您的名称及电子邮件地址,以发表评论。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "登录或提供名称及电子邮件,以发表评论。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "撰写评论..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "从这里开始" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "使用 WordPress.com 的引导式导入程序,导入来自 Medium、Substack、Squarespace 和 Wix 等的文章与评论。" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "访问“%1$sJetpack 设置%2$s”,了解更多 Jetpack 支持的写作设置。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "已排程的更新" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "验证域的电子邮件地址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "站点设置" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "完成 Sensei 设置" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "完成商店设置" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "更新您的站点设计" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "启用文章共享" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "安装移动版应用程序" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "没有文件还原。" @@ -563,134 +119,6 @@ msgstr "导入已在进行中。" msgid "The backup import has been cancelled." msgstr "备份导入已取消。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "您站点的下一步工作" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "添加“订阅区块”到您的站点" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "导入现有订阅者" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "查看站点指标" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "设置 SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "安装自定义插件" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "选择主题" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "为您的支持者设置一个优惠" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "关联 Stripe 账户以收款" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "添加“关于”页面" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "管理您的付费时事通讯套餐" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "连接社交媒体帐户" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "管理您的订阅者" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "撰写 3 篇文章" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "获得您的前 10 名订阅者" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "启用订阅者模式" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "自定义欢迎消息" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "通过您的新闻稿赚取收益" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "更新您的“关于”页" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "迁移内容" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "验证电子邮件地址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "阻止创建新文章和页面,阻止编辑现有文章和页面,并全站关闭评论。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "启用锁定模式" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "锁定模式" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "如需获得站点的所有权,您指定的人需要通过 %s 与我们联系,并提供已故联系人的死亡证明复印件。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "选择某人在您去世后照顾您的站点。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "已故联系人" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "增强所有权" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "“任何人都可以注册”选项当前处于激活状态。 当前默认角色为 %1$s。 %4$s 如果不需要开放注册,请考虑禁用此选项。" @@ -720,149 +148,37 @@ msgstr "文件不存在" msgid "Could not determine importer type." msgstr "无法确定导入程序的类型" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "共享您的站点" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "编辑页面" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "您的站点包含高级样式。 立即升级以发布并解锁大量其他功能。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "自定义您的域名" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "添加新页面" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "提高您站点的流量" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "为您的站点命名" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "认领您的免费一年期域名" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr " 送礼" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "缩略图" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "通过 Publicize 共享“%s”" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "共享" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "升级套餐" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "创建付费新闻稿" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "设置付款方式" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "选择域" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "发布博客" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "编辑站点设计" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "设置您的站点" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "为您的博客取名" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "站点个人化" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "上传您的第一个视频" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "设置您的视频站点" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "启动您的站点" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "添加链接" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "个人化自介链接" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "选择设计" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "开始撰写" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "撰写您的第一篇文章" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "新增订户" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "选择套餐" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "个人化电子报" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "无法加载类 %1$s。请使用创建器添加包含该类的包,并确保您需要使用 Jetpack 自动加载器" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "应先注册 textdomain 别名,然后再使用 %1$s 钩子。此通知由 %2$s 域触发。" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "脚本“%s”取决于 wp-i18n,但不指定“textdomain”" @@ -1063,27 +379,27 @@ msgstr "您真幸运!您的主题设计师会为您选择特殊字体,而您 msgid "Uncheck to disable" msgstr "取消选中以禁用" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "Spotify Feed ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "Apple Podcasts Feed ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "标题:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "播客 RSS Feed" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "使用 Spotify 收听" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "收听 Apple Podcasts" @@ -1095,98 +411,114 @@ msgstr "显示关于您播客的信息,并允许访客通过 iTunes 关注" msgid "Podcast" msgstr "博客" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "选择 iTunes 分类:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "设置播客分类" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "设置播客关键字" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "设置播客图像" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "不含成人内容" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "是" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "不" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "将播客设置为含成人内容" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "设置播客版权" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "设置播客摘要" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "设置播客作者" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "设置播客副标题" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "设置播客标题" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "这是您提交给 iTunes 或播客服务的 URL。" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "您的播客 Feed:%1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "选择播客分类:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "播客的博客分类" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "播客分类 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "播客分类 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "播客分类 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "播客关键字" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "“播客”图像" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "标记为含成人内容" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "播客版权" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "播客摘要" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "播客主持人名称" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "播客副标题" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "播客标题" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "编辑" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "我的主页" @@ -1427,31 +757,31 @@ msgstr "磁盘空间配额" msgid "Disk space used" msgstr "已用磁盘空间" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "点击了解更多信息" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "将子类别中的项目计算到父级总计中。" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "最大字体比例:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "最小字体比例:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "类别 ID(以逗号分隔)" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "除了:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "待显示的类别的最大数量:" @@ -1469,24 +799,14 @@ msgstr "您最常用的云格式类别。" msgid "Category Cloud" msgstr "分类" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "已断开与 Jetpack 的连接,且站点为私人站点。重新连接 Jetpack 以管理站点可见性设置。" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "更新可见性" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "发布站点" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "不再显示" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "您目前使用了 %1$s,上传限制为 %2$s,即占上传限制的 %3$s%%。" @@ -1623,47 +943,47 @@ msgstr "显示最新的 Instagram 照片。" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "传记" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "大标题" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "照片" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "不显示名称" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "显示小图" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "显示中图" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "显示大图" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "显示 X 大图" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "您的 about.me URL" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "小工具标题" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "自 2016 年 7 月 1 日起,about.me 小组件将无法再使用。在此日期之后,该小组件将显示一个简单的文本链接,指向您的 about.me 个人资料。请删除此小组件。" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "以缩略图形式显示您的 about.me 个人资料" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "无法提取所请求的数据。" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "通过访问 WordPress.com 创建免费网站或博客" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "通过访问 WordPress.com 创建免费网站" @@ -1702,8 +1017,8 @@ msgstr "由 WordPress.com 提供支持" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "在WordPress.com的博客" @@ -1780,10 +1095,6 @@ msgstr "保存" msgid "Activate & Save" msgstr "激活并保存" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "管理您的站点可见性设置" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "此插件通过 WordPress.com 安装,提供套餐订阅中的功能。" @@ -1897,8 +1208,7 @@ msgstr "电话" msgid "Email" msgstr "电子邮箱" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "名称" @@ -1912,27 +1222,27 @@ msgstr "预订查询" msgid "Reservations" msgstr "预订" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "显示以下来源的评论:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "文本背景颜色:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "头像背景颜色:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "无头像" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(至多15篇)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "显示评论的数量:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "近期评论" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "您最近还没有为任何文章点过赞。点赞后,此我点赞的博客小工具将显示这些文章。" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "于" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%2$s 上的 %1$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "待显示的作者的赞:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "网格" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "列表" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "显示为:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "待显示的帖子数量(1 到 15 个):" @@ -2018,62 +1328,62 @@ msgstr "我已投票" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "向您的读者展示您已使用“我已投票”贴纸投票。" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "在 Gravatar 后显示的文本。这是可选项,可用于描述您自己或您的文章内容。" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar 链接。这是有人点击您的 Gravatar 时将使用的可选 URL:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar 对齐:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "大小:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "自定义电子邮件地址:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "选择用户或选择“自定义”,并输入一个自定义电子邮件地址。" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "中" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "右" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "左" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "无" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "超大图(256 像素)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "大图(128 像素)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "中图(96 像素)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "小图(64 像素)" @@ -2090,7 +1400,7 @@ msgstr "头像" msgid "Insert a Gravatar image" msgstr "插入一张 Gravatar 图像" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "选择要在边栏中显示的图像:" @@ -2102,28 +1412,28 @@ msgstr "最新出版" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "在您的边栏显示新压印的徽章" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "头像大小(像素):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "显示所有作者(包括未写过任何文章的作者)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "标题:" @@ -2139,12 +1449,12 @@ msgstr "显示作者头像网格。" msgid "Author Grid" msgstr "作者网格" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "私人站点" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "此站点是私人站点。" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-zh_HK.mo b/projects/plugins/wpcomsh/languages/wpcomsh-zh_HK.mo index cb11347797c737178b6529703bb06af67b6893db..376ffb03ef6de35b4a562959270730576b140443 100644 GIT binary patch delta 5141 zcmX}u2~<~A0>|--h^e3wY6>p=K@f2xHWP6}#TLyiD^0RcFqsHQz%A>aPKi27=G8Vv zGZKTzH8M+SnyeYO$}*?Zm^w8HNZRRi=IAu1#^(F`zf14<<8$wQ@Bi-h-v96B^+9hf z_Fsr-yTx#vA-zdMJ7anU8I#jVt;QU?(U|sl96RD^48!v{0KdZ?*fqkKXdHxzI0;j* z93!z7yWZdKg?GC4g-D;K1bgBt)aR?5HK_aS zMRoWlX5k48#;|UIj!ihm(7%bMz@$x<^ET8Br=n(_gM%>NwLgm?)VHAqwgWZL_b>%d zVt>4jLouFF==@C7fF9(JCb$?Q=-)g+K{I&PS%v&FHT=;o97dMP9C!6Eu?zJkOu}n8 z0sG(Nb@VXm{1WtG1;%47YRf)BR^R*w{kpIt8>l6VLJcI^nTVQcDvrhsoQ6v=@Jyh# z;56!nmr>VWM-99!Cw2b_)b+8*E|@`hKaT0i`m5uu?t*IP>!=&Pi8_B2^>BTJ+L|k_ z{lAz<{kp3U;7QW}hoH9f2@J=lkujO)Py^h9f%`|Y{<`oe4cenmQ1!E@j=ym>p*p(k z&Ua_yk5TW9^lch32Ct)*+SkkLU?OU-XQQsmMNMG2Yp?KAP)E<;DBO&J*9_ZGKkw>a zqgLQD>iSULRSh&8HSiv&8TCUhF~cwxXSnuq)Xdj7D{(4y|7Hr66fUAhTH423vd2(+ zxE?j2mrx_GLCxe1S3ik-)O?BB>#N8jnUKETUPq%omx>y|Skwe2dhLEQiGn(s1CXb*H9n0jSba|W}pT<54Cb-xCU3D1|HhayH8)#b@8Z`x&^fr zlbo~AuMgx?2*#zT6l4cVjB#J_XgG;wK6@C?e;Bz z<)B{2BGl{XkLUf@iRWq1Lsf?w&=Kd~Q8T`Ty75n_8+YmNbsUe{^8pwZ#0*hy!vr1_ zISn=Q9OSt)C8&q95_x<~Z364B!ciJhu?hA1L=Eu1I)|Zda4%|09>#XK7`2p-JJ&g% zM-6ZX>bgUy`@N5v;Ca;Nt~rDKiQdB%jv85aybY5uuqD`m`U=#IR-TJV)X`)?F?L%=0`ZFo8ji$ggRJscqP)mLs)#2Bu88o}|`bpG{I-v#- zLQws0n@!#o^`o4oUWbIM(C4mHCo$a81f5B3H&7}dda)Y9gm2DBW*aHX@- zS%sOj*Wv`ch+3IMde?+fQ3JXI+v)fJJ_@>VE{5R}Y>!W&I^KXYaXYHxtIl7X!9%_4 zI-<_^K_AAU?w9S_XP~xVHflgiF-PzJDtEy@Q6FeReWm`})x&uw^$_+!b&!m@Zn!fW z^{mWr=kLLrso(GFmG~9)EvPMgl#_BD`c-(9f@a!)>fn^S;0x?R{RdQszq<2b$=+9V zSJX^qq6RP*b=^GlVXP%Ur_?s2kKccRB0b`9sd5sF|O^ z*?0jpk>P1x$5T-E$wj`s%|g`PuXE??oDF_gIOY5o>c&?wu;h3H^{{lW-VHUg801Yf zX|DbN>T`=w9j`!r{`c4&H{x8}iHy~R4D;SLe+GpqG~A8)zz)=i_v1AD+_lHu;@vnI z)zNV0IMfzQ#uCgy-REQMjAv25iY=(?+74%s*bUhlzp0?05pPFb@EU4{2VMPy^DK6w z{X5jd_A6?j!5PdF<8eCH;R5^_b^W{%-WSgj)aPnY{ncTZo~C`S;a%s4&XcH_o<_~+ z9O?!w*a^RP=YK}sFobU%oe#rM3`e#1cJ2L8E0Tag*p}R@r@8g0qcD@)LG-hFCz(iE zkIk+y2S0J;lg|6_4`e5~ooFSrDmwOhn76T#+(X`VZT|Zyu*HGBR$HF_xP#Z-ENQJc zSKw4vZorOY7m0Lj+0I9t+we2e)zw?!aWKcV|94TyA@7rUL{BR}^X4gXD``CnC{&Rs z*RU2pa%Fxp0*AiutI2Zm0LdkKd&sdl`9yWRVj@$9}SpY*B?{sYl?y`YImL{`YW=J206%OGcA?GKT1Q zo$MwL5&bswBl>?r5z+CNz+dkd?itGKiQe;ZWD?Oagz(asG*vj>BkDhJjOFixq@MI7 zFOgoP^;k`z!d2dJ4nV!CIxN{h-Xd?3KaoF@+2l#`D*2q~IN+hbe)AZA*SUsFEG7?= zc4Q4XMP4JnBU4BW2_rRR7CB57lfL8?@@F!FEF^PDA<;3PJV(OGG4cZOwa$M5l@fB4 zl#xzk1{q2Q6CGVV%-wj9tRl6pEy3B!NLT2FDdb~U{{RP))8r8Oo7TSr(Xoh>l9$O= zq9c*~m24uq_GzM{Kj};!CvoIMa)zXnXrd$5!;Hs`D);kc<&_tfl~NeLu%Iw+QGStq z;ifBgdyo0HQ_p7GK5~xT7@2CXM8ukc^=YwV`kuFO(R=K<=%MYG6_=Np$@vRxhA+b|_noj)V)oe3 z*xT*g*opRVY+mTJg~dhrhQDRSc3i)2dKBl)&n+!8(>#5p<@3r4$_n#sa@;`sP~2F% zKW?!7HZH;57$0j_#!roEy};a+U*;=upYlF(A^w2f*8hR}&I$Jh)t3$E9%Q#9UI{HL z_KhnqEhx$_Ew!fy#=SA<$6ypjn|B;)+_<5+cK@dIYA9ytcxg%RJq?Y18h;J=M*7pKPw$W4ub^+PzJ+FSfk0-o8IF(f&B{ zPCIGTAp7{JUiRftu{LdVaqr)*Fqdli_)FgB+=up!-en8MET}&}W=v3hQdVM+oj2~= auuB#7jaybXZ?0v)cI)_o^`DI&-{${d5u=>| delta 7882 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-zh_HK.po b/projects/plugins/wpcomsh/languages/wpcomsh-zh_HK.po index c925a11fd3bae..314a846041ebe 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-zh_HK.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-zh_HK.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "行銷" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "抱歉,你沒有權限存取此頁面。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "外掛" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "" @@ -72,424 +42,10 @@ msgstr "" msgid "Flex your site's features with plugins" msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "佈景主題範例" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "色彩配置" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "深" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "淺" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "透明的" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "新增網域" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "日落" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "櫻花" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "粉雪" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "傍晚" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "對比" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "經典暗黑" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "經典亮色" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "經典藍色" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "概觀" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "設定" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "購買項目" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "電子郵件" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "網域" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "方案一覽" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "主機服務" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "全部網誌" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "取消回覆" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "發表留言" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "在瀏覽器中儲存顯示名稱、電子郵件地址及個人網站網址,以供下次發佈留言時使用。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "訂閱" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "輸入你的電子郵件地址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "繼續閱讀" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "選用設定" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "個人網站網址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "取消" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "新留言的電子郵件" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "有新文章時透過電子郵件通知我" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "有新文章時通知我" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "每星期" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "評論" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "回覆" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "每日" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "即時" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(電子郵件地址不會被公開)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "登出" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "開始使用" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "驗證網域的電子郵件地址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "網站設定" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "" @@ -563,134 +119,6 @@ msgstr "" msgid "The backup import has been cancelled." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "選擇佈景主題" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "" @@ -720,149 +148,37 @@ msgstr "" msgid "Could not determine importer type." msgstr "" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "新增頁面" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "刺激網站流量" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "為你的網站取個名字" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "縮圖尺寸" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "共享" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "升級方案" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "選擇網域" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "為你的網誌命名" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "推出你的網站" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "選擇方案" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "無法載入類別 %1$s。請使用編輯器新增包含它的套件,並確認你要求的是 Jetpack Autoloader" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" @@ -1063,27 +379,27 @@ msgstr "真幸運!你的佈景主題設計者已選擇特定字型,你無法 msgid "Uncheck to disable" msgstr "取消勾選即可停用" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "標題:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "" @@ -1095,98 +411,114 @@ msgstr "" msgid "Podcast" msgstr "播客節目" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "大眾內容" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "是" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "否" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "設定播客副標題" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "設定播客標題" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "播客副標題" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "播客標題" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "編輯" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "我的首頁" @@ -1427,31 +757,31 @@ msgstr "" msgid "Disk space used" msgstr "" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "按一下以取得更多資訊" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "將子類別項目計入上層項目總數。" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "字體最大百分比:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "最小字體百分比:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "類別 ID,以逗點分隔" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "排除:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "類別顯示數上限:" @@ -1469,24 +799,14 @@ msgstr "你在雲端格式中最常使用的類別。" msgid "Category Cloud" msgstr "分類雲" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "更新能見度" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "推出網站" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "隱藏" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "" @@ -1623,47 +943,47 @@ msgstr "顯示最新的 Instagram 相片。" msgid "Instagram" msgstr "" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "個人簡介" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "標題" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "照片" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "不要顯示名稱" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "顯示小型" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "顯示中型" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "顯示大型" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "顯示超大型" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "你的about.me網址" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "小工具標題" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "在 WordPress.com 建立免費網站或網誌" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "在 WordPress.com 建立免費網站" @@ -1702,8 +1017,8 @@ msgstr "由 WordPress.com 建置" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "在WordPress.com寫網誌" @@ -1780,10 +1095,6 @@ msgstr "儲存" msgid "Activate & Save" msgstr "" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "" @@ -1897,8 +1208,7 @@ msgstr "電話號碼" msgid "Email" msgstr "電子郵件" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "名稱" @@ -1912,27 +1222,27 @@ msgstr "訂位詢問" msgid "Reservations" msgstr "訂位" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "顯示下列來源的留言:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "文字的背景色:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "頭像的背景顏色:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "沒有頭像" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(最多 15 篇)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "顯示幾篇評論:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "近期評論" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "你最近尚未對任何文章說讚。按讚以後,這個我按讚的文章小工具就會顯示這些內容。" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "於" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "「%1$s」對「%2$s」留言" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "顯示作者的讚:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "網格" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "列表" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "顯示為:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "文章顯示數 (1 到 15):" @@ -2018,62 +1328,62 @@ msgstr "" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "顯示在 Gravatar 之後的文字。此為選填,可用來描述你自己或網誌內容。" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar 連結。此 URL 為選填,以供有人點擊你的 Gravatar 時使用:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar 對齊:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "大小:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "自訂 Email 地址:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "選擇一個使用者或挑選 \"自定義\" ,然後輸入一個自定的 email 地址。" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "置中" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "靠右" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "左" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "無" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "超大型 (256 像素)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "大型 (128 像素)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "中型 (96 像素)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "小型 (64 像素)" @@ -2090,7 +1400,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "插入一張 Gravatar 影像" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "在你的側欄中選擇一張圖片:" @@ -2102,28 +1412,28 @@ msgstr "熱門文章" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "在側欄中顯示「最新發佈」的徽章" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "大頭貼尺寸 (像素):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "顯示所有作者 (包括沒有撰寫任何文章的作者)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "標題:" @@ -2139,12 +1449,12 @@ msgstr "顯示作者頭像圖片網格。" msgid "Author Grid" msgstr "作者網格" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "私人網站" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-zh_SG.mo b/projects/plugins/wpcomsh/languages/wpcomsh-zh_SG.mo index f7a9e4543e359163a0fb2cfd9619c7a06cf703d4..eb009f0d51261c77a03c39b0d437f4aa0a1ec687 100644 GIT binary patch delta 8660 zcmZA530zfG9>DSYSX=-R1r;}ZikKp}VWhY(pymRIsJRO~@F4>7z&#(53a+WgT}g** zQ^E9^TADVMmS#DlrP*R-0#Z$mHcpu>^ZUPhnDI0B!=LXt=iYnnIsbd^eGk-qj|)3J zoHrVKZ86xUS`4EVdifg070N#}kygX#)!H!XVQ=)o!Pp*0qaWsBM|5H{d>Px|Ti6M| z#vbSsVi?V_A2!4Zn8ImB28BQxE?_#|K)H4-y$r_5=#S4KeHrCgA3wmR_z8O94;YPi zu`YJB8U}MQx?v0Ki_$&;8{u>e=K9853ew?f?Pin?pFj)U-H^u(rZ&4IN* zevD51k_?Q*I+&`>M9I`#luRzg&R8t%T;Fg}@W!`LE_4oMcN-5aqb_ z*cG3{q4*KXg#%d_W3Ua%aoK3ar5J&GFbprEteJc5$-j)OC9QHo7xcpZD7R#Yb~JiZ zpMWypsmN_MvQgH~dTkl@r+y3*@IFe)<4BkEACJK}UDp?MAper`5*lP6&m%v^F@AaD zmnfO|7Nvu`xEw8ynKN05GLwTS7y1NcKsRtI-b0yC0tdrM&WIg=d~3#PBIaVGQhql9mk_Dj@R`Rl$qMK*(d{aprpJM<*_@4a{l}H zzC8bzD98x6N16w|f-;b|k=tk7LM!^P)MWsjQD)j7rQ;~|y8Q=~jQ%NdeZ#vO=|o@bXyF358kcuBjEUHg`>~$=vwE5{`57f+f1+F{;BnJX zZ8SnPy9gUnUxQ9rt-C15frn5s@Fq&?-bYFCC%XP4%4ftwoQ=V}Z>6K< zC@J5J(q9G2`ER4l^pbA>1Z7|~C>eYhP5$LTS&A}%1}G=A#DUmWn}W@#KaVn?le+#f zN(O#FxkZ0s6AbEQUML);y{|SAWq|2=|Ds;xpGVYKOGA4+ic-I>>z3Z;2^~;I9)tck zN;?@P1DV(d7okkx7)mBj>H2%x4^jHLf?cuFNkKYj5@XIJ3}rF(LU~SyqNHk!t|uW6 zgfSJH;u_4wGK|1LMj^LmAl|@(cplgEHH>#KnWcXkoAbSj4i1Df^wa}VeY!q zxM3EI2bji=py6f;7h(_UPMm>9kjWT#U!OTmYRiW1JH_zD2p%;N6GWQl7gIY1^uu}`;%@rMjOTy+5^!ObMYGH<4hbi#!P7i zl67NYyt%l}psbBMDD5*67(Bj+lIc6>l#z{N+Toav&2S@n;43IIK8Ui|PU-zuP*VOq z%KN}F)=YH>%5i;lJqbgo&&5W#0RylMJ_$$glucHj~4$7yh-#BxE;p51^JkOCd$UX0ik6|48S@?n> zQeT{GT7t65w_pQ2jxwXO7=%|*X8b+MaX#bu0*VnR6Pt>SaUS-?RZa>r@^iQpuc927 zJi$CL8)ab2P}>t%?vd{IWJPzdtwvn&IAh5LApM` zp3znfAxC>cd#$l92D9@U7=!G(4UzA%Bj

    a?|%}d|3s9DOhd`=EVJEdY@i@1 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 delta 20359 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 h4PWxKTz>YI@I`3no~W%Z%3$s" msgstr "%1$s 于 %3$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "您可以通过自己的个人资料页面修改 Gravatar。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "营销" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "抱歉,您不能访问此页面。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "插件" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "使用WordPress.com的旧仪表盘来管理您的站点。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "默认样式" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "使用WP-Admin来管理您的站点。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "经典风格" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "管理员界面样式" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "探索插件" @@ -72,424 +42,10 @@ msgstr "使用可增强站点功能的各种免费和付费插件。" msgid "Flex your site's features with plugins" msgstr "使用插件灵活调整站点功能" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "主题陈列窗" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "探索主题" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "深入探索 WordPress.com 主题的世界。 发现令人惊叹的响应式设计,为您的站点注入活力。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "为您的站点找到恰到好处的主题" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "能鼓励您的读者发表评论的几个抢眼词语" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "在评论中启用区块" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "让访客使用 WordPress.com 或 Facebook 账户添加评论" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "使用巧妙的问候文本和配色方案调整您的评论表单。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "配色方案" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "问候文本" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "允许使用区块" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "深色" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "浅色" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "透明" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "推出您的商店" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "添加域" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "拓展业务" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "收取销售税" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "通过 WooPayments 收款" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "添加产品" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "自定义您的商店" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "日落" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "樱花" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "点点细雪" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "黄昏" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "对比度" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "经典黑暗" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "经典亮" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "经典蓝" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "水生" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "概述" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "通过 Jetpack Social 共享“%s”" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "要访问套餐、域名、电子邮件等项目的相关设置,请点击边栏中的“托管服务”。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "设置" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "货币化" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "监测" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "配置" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "购买" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "电邮" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "域" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "加载项" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "套餐" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "主机" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "所有站点" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "错误:请再次尝试评论。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "错误:您的 Facebook 登录信息已过期。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "取消回复" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "为 %s 发表评论" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "留下评论" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "在此浏览器中保存我的显示名称、邮箱地址和网站地址,以便下次评论时使用。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "评论发送成功" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "订阅" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "输入您的电子邮箱地址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "想要接收博文更新动态? 点击下方按钮即可保持关注!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "避免错过任何内容!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "繼續閱讀" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "立即订阅以继续阅读并访问完整档案。" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "了解 %s 的更多信息" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "正在加载您的评论..." - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "我们将及时为您提供最新消息!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "可选" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "网站地址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "写回复…" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "取消" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "针对新评论的电子邮件" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "通过电子邮件向我发送新文章" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "有新文章时通知我" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "每周" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "评论" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "回复" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "每日" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "立即" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(地址永远不会公开)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "注销" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "已通过 %s 登录" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "登录以发表评论。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "登录以发表评论。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "发表评论。(可选择登录)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "发表评论。(可选择登录)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "网站(可选)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "电子邮件(地址永远不会公开)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "接收有关此站点上发布的文章的 Web 版和手机版通知。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "登录或提供您的名称及电子邮件地址,以发表评论。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "登录或提供名称及电子邮件,以发表评论。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "撰写评论..." - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "从这里开始" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "使用 WordPress.com 的引导式导入程序,导入来自 Medium、Substack、Squarespace 和 Wix 等的文章与评论。" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "访问“%1$sJetpack 设置%2$s”,了解更多 Jetpack 支持的写作设置。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "已排程的更新" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "验证域的电子邮件地址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "站点设置" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "完成 Sensei 设置" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "完成商店设置" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "更新您的站点设计" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "启用文章共享" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "安装移动版应用程序" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "没有文件还原。" @@ -563,134 +119,6 @@ msgstr "导入已在进行中。" msgid "The backup import has been cancelled." msgstr "备份导入已取消。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "您站点的下一步工作" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "添加“订阅区块”到您的站点" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "导入现有订阅者" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "查看站点指标" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "设置 SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "安装自定义插件" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "选择主题" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "为您的支持者设置一个优惠" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "关联 Stripe 账户以收款" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "添加“关于”页面" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "管理您的付费时事通讯套餐" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "连接社交媒体帐户" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "管理您的订阅者" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "撰写 3 篇文章" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "获得您的前 10 名订阅者" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "启用订阅者模式" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "自定义欢迎消息" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "通过您的新闻稿赚取收益" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "更新您的“关于”页" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "迁移内容" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "验证电子邮件地址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "阻止创建新文章和页面,阻止编辑现有文章和页面,并全站关闭评论。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "启用锁定模式" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "锁定模式" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "如需获得站点的所有权,您指定的人需要通过 %s 与我们联系,并提供已故联系人的死亡证明复印件。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "选择某人在您去世后照顾您的站点。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "已故联系人" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "增强所有权" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "“任何人都可以注册”选项当前处于激活状态。 当前默认角色为 %1$s。 %4$s 如果不需要开放注册,请考虑禁用此选项。" @@ -720,149 +148,37 @@ msgstr "文件不存在" msgid "Could not determine importer type." msgstr "无法确定导入程序的类型" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "共享您的站点" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "编辑页面" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "您的站点包含高级样式。 立即升级以发布并解锁大量其他功能。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "自定义您的域名" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "添加新页面" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "提高您站点的流量" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "为您的站点命名" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "认领您的免费一年期域名" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr " 送礼" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "缩略图" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "通过 Publicize 共享“%s”" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "共享" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "升级套餐" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "创建付费新闻稿" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "设置付款方式" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "选择域" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "发布博客" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "编辑站点设计" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "设置您的站点" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "为您的博客取名" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "站点个人化" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "上传您的第一个视频" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "设置您的视频站点" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "启动您的站点" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "添加链接" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "个人化自介链接" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "选择设计" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "开始撰写" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "撰写您的第一篇文章" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "新增订户" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "选择套餐" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "个人化电子报" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "无法加载类 %1$s。请使用创建器添加包含该类的包,并确保您需要使用 Jetpack 自动加载器" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "应先注册 textdomain 别名,然后再使用 %1$s 钩子。此通知由 %2$s 域触发。" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "脚本“%s”取决于 wp-i18n,但不指定“textdomain”" @@ -1063,27 +379,27 @@ msgstr "您真幸运!您的主题设计师会为您选择特殊字体,而您 msgid "Uncheck to disable" msgstr "取消选中以禁用" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "Spotify Feed ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "Apple Podcasts Feed ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "标题:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "播客 RSS Feed" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "使用 Spotify 收听" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "收听 Apple Podcasts" @@ -1095,98 +411,114 @@ msgstr "显示关于您播客的信息,并允许访客通过 iTunes 关注" msgid "Podcast" msgstr "博客" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "选择 iTunes 分类:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "设置播客分类" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "设置播客关键字" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "设置播客图像" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "不含成人内容" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "是" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "不" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "将播客设置为含成人内容" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "设置播客版权" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "设置播客摘要" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "设置播客作者" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "设置播客副标题" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "设置播客标题" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "这是您提交给 iTunes 或播客服务的 URL。" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "您的播客 Feed:%1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "选择播客分类:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "播客的博客分类" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "播客分类 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "播客分类 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "播客分类 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "播客关键字" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "“播客”图像" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "标记为含成人内容" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "播客版权" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "播客摘要" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "播客主持人名称" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "播客副标题" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "播客标题" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "编辑" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "我的主页" @@ -1427,31 +757,31 @@ msgstr "磁盘空间配额" msgid "Disk space used" msgstr "已用磁盘空间" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "点击了解更多信息" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "将子类别中的项目计算到父级总计中。" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "最大字体比例:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "最小字体比例:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "类别 ID(以逗号分隔)" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "除了:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "待显示的类别的最大数量:" @@ -1469,24 +799,14 @@ msgstr "您最常用的云格式类别。" msgid "Category Cloud" msgstr "分类" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "已断开与 Jetpack 的连接,且站点为私人站点。重新连接 Jetpack 以管理站点可见性设置。" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "更新可见性" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "发布站点" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "不再显示" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "您目前使用了 %1$s,上传限制为 %2$s,即占上传限制的 %3$s%%。" @@ -1629,47 +949,47 @@ msgstr "显示最新的 Instagram 照片。" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "传记" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "大标题" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "照片" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "不显示名称" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "显示小图" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "显示中图" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "显示大图" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "显示 X 大图" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "您的 about.me URL" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "小工具标题" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "自 2016 年 7 月 1 日起,about.me 小组件将无法再使用。在此日期之后,该小组件将显示一个简单的文本链接,指向您的 about.me 个人资料。请删除此小组件。" @@ -1686,19 +1006,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "以缩略图形式显示您的 about.me 个人资料" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "无法提取所请求的数据。" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "通过访问 WordPress.com 创建免费网站或博客" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "通过访问 WordPress.com 创建免费网站" @@ -1708,8 +1023,8 @@ msgstr "由 WordPress.com 提供支持" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "在WordPress.com的博客" @@ -1786,10 +1101,6 @@ msgstr "保存" msgid "Activate & Save" msgstr "激活并保存" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "管理您的站点可见性设置" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "此插件通过 WordPress.com 安装,提供套餐订阅中的功能。" @@ -1903,8 +1214,7 @@ msgstr "电话" msgid "Email" msgstr "电子邮箱" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "名称" @@ -1918,27 +1228,27 @@ msgstr "预订查询" msgid "Reservations" msgstr "预订" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "显示以下来源的评论:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "文本背景颜色:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "头像背景颜色:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "无头像" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(至多15篇)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "显示评论的数量:" @@ -1960,37 +1270,37 @@ msgid "Recent Comments" msgstr "近期评论" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "您最近还没有为任何文章点过赞。点赞后,此我点赞的博客小工具将显示这些文章。" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "于" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "%2$s 上的 %1$s" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "待显示的作者的赞:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "网格" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "列表" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "显示为:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "待显示的帖子数量(1 到 15 个):" @@ -2024,62 +1334,62 @@ msgstr "我已投票" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "向您的读者展示您已使用“我已投票”贴纸投票。" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "在 Gravatar 后显示的文本。这是可选项,可用于描述您自己或您的文章内容。" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar 链接。这是有人点击您的 Gravatar 时将使用的可选 URL:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar 对齐:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "大小:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "自定义电子邮件地址:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "选择用户或选择“自定义”,并输入一个自定义电子邮件地址。" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "中" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "右" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "左" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "无" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "超大图(256 像素)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "大图(128 像素)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "中图(96 像素)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "小图(64 像素)" @@ -2096,7 +1406,7 @@ msgstr "头像" msgid "Insert a Gravatar image" msgstr "插入一张 Gravatar 图像" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "选择要在边栏中显示的图像:" @@ -2108,28 +1418,28 @@ msgstr "最新出版" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "在您的边栏显示新压印的徽章" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "头像大小(像素):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "显示所有作者(包括未写过任何文章的作者)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "标题:" @@ -2145,12 +1455,12 @@ msgstr "显示作者头像网格。" msgid "Author Grid" msgstr "作者网格" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "私人站点" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "此站点是私人站点。" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-zh_TW.mo b/projects/plugins/wpcomsh/languages/wpcomsh-zh_TW.mo index 99ce9f8de9272207a65ec0134a3fdaef6ef5cfd1..3f0631c2ac0c8ab9be5063c2f54b6a20da25fab6 100644 GIT binary patch delta 8670 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 literal 47152 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 diff --git a/projects/plugins/wpcomsh/languages/wpcomsh-zh_TW.po b/projects/plugins/wpcomsh/languages/wpcomsh-zh_TW.po index 23ac8e675533a..2642184ca7c4a 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh-zh_TW.po +++ b/projects/plugins/wpcomsh/languages/wpcomsh-zh_TW.po @@ -22,44 +22,14 @@ msgid "%1$s on %3$s" msgstr "「%3$s」上的 %1$s" #. translators: %s is a link to the WordPress user profile. -#: widgets/class-gravatar-widget.php:206 +#: widgets/class-gravatar-widget.php:205 msgid "You can modify your Gravatar from your profile page." msgstr "你可以從個人檔案頁面修改自己的 Gravatar。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:152 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:153 -msgid "Marketing" -msgstr "行銷" - #: support-session.php:224 support-session.php:236 msgid "Sorry, you are not allowed to access this page." msgstr "很抱歉,目前的登入身分沒有存取這個頁面的權限。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:622 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:623 -msgid "Plugins" -msgstr "外掛程式" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Use WordPress.com’s legacy dashboard to manage your site." -msgstr "利用 WordPress 傳統儀表板來管理你的網站。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:29 -msgid "Default style" -msgstr "預設樣式" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Use WP-Admin to manage your site." -msgstr "利用 WP-Admin 來管理你的網站。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:28 -msgid "Classic style" -msgstr "經典樣式" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:26 -msgid "Admin Interface Style" -msgstr "管理員介面風格" - #: wpcom-plugins/plugins.php:42 msgid "Explore plugins" msgstr "探索外掛程式" @@ -72,424 +42,10 @@ msgstr "存取各式各樣的免費與付費外掛程式,強化網站的功能 msgid "Flex your site's features with plugins" msgstr "運用外掛程式展示你的網站功能" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:62 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:63 -msgid "Theme Showcase" -msgstr "佈景主題範例" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 -msgid "Explore themes" -msgstr "探索佈景主題" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:36 -msgid "Dive deep into the world of WordPress.com themes. Discover the responsive and stunning designs waiting to bring your site to life." -msgstr "深入了解 WordPress.com 佈景主題。 探索可自動調整版面的精美設計,讓網站更加生靈活現。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:35 -msgid "Find the perfect theme for your site" -msgstr "為你的網站找出最適合的佈景主題" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:220 -msgid "A few catchy words to motivate your readers to comment" -msgstr "使用一些吸引人的字詞來激發你的讀者對文章進行評論。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:182 -msgid "Enable blocks in comments" -msgstr "在留言中啟用區塊" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:171 -msgid "Let visitors use a WordPress.com or Facebook account to comment" -msgstr "讓訪客使用 WordPress.com 或 Facebook 帳號留言" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:160 -msgid "Adjust your Comments form with a clever greeting and color-scheme." -msgstr "你可使用活潑的問候語和顏色樣式來調整你的「留言」表單。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:140 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:252 -msgid "Color Scheme" -msgstr "色彩配置" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:124 -msgid "Greeting Text" -msgstr "問候語" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:108 -msgid "Allow Blocks" -msgstr "允許區塊" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:95 -msgid "Verbum" -msgstr "Verbum" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 -msgid "Dark" -msgstr "深色" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 -msgid "Light" -msgstr "淺色" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 -msgid "Transparent" -msgstr "透明的" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:802 -msgid "Launch your store" -msgstr "推出你的商店" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:792 -msgid "Add a domain" -msgstr "新增網域" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:782 -msgid "Grow your business" -msgstr "拓展業務" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:772 -msgid "Collect sales tax" -msgstr "收取銷售稅" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:762 -msgid "Get paid with WooPayments" -msgstr "透過 WooPayments 收取款項" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:752 -msgid "Add your products" -msgstr "新增產品" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:742 -msgid "Customize your store" -msgstr "自訂你的商店" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:126 -msgid "Sunset" -msgstr "日落" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:114 -msgid "Sakura" -msgstr "櫻花" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:102 -msgid "Powder Snow" -msgstr "粉雪" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:90 -msgid "Nightfall" -msgstr "傍晚" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:78 -msgid "Contrast" -msgstr "對比" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:66 -msgid "Classic Dark" -msgstr "經典暗色系" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:54 -msgid "Classic Bright" -msgstr "經典亮色" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:42 -msgid "Classic Blue" -msgstr "經典藍色" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php:30 -msgid "Aquatic" -msgstr "水藍色" - -#: feature-plugins/nav-redesign.php:43 feature-plugins/nav-redesign.php:44 -msgid "Overview" -msgstr "概觀" - -#. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:174 -msgid "Share “%s” via Jetpack Social" -msgstr "透過 Jetpack Social 分享「%s」" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:469 -msgid "To access settings for plans, domains, emails, etc., click \"Hosting\" in the sidebar." -msgstr "若要存取方案、網域和電子郵件等設定,可在側邊欄按一下「主機服務」。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:467 -msgid "WordPress.com" -msgstr "WordPress.com" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:162 -msgid "Settings" -msgstr "設定" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:370 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:371 -msgid "Monetize" -msgstr "獲利 " - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:143 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:144 -msgid "Monitoring" -msgstr "監控中" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:134 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:135 -msgid "Configuration" -msgstr "組態" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:125 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:126 -msgid "Purchases" -msgstr "購買項目" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:116 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:117 -msgid "Emails" -msgstr "電子郵件" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:108 -msgid "Domains" -msgstr "網域" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:98 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:99 -msgid "Add-ons" -msgstr "附加服務" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:89 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:90 -msgid "Plans" -msgstr "方案一覽" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:69 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:70 -msgid "Hosting" -msgstr "主機服務" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:204 -msgid "All Sites" -msgstr "所有網誌" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 -msgid "Error: please try commenting again." -msgstr "錯誤:請嘗試重新留言。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 -msgid "Error: your Facebook login has expired." -msgstr "錯誤:你的 Facebook 登入已過期。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 -msgid "Cancel reply" -msgstr "取消回覆" - -#. translators: % is the original posters name -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 -msgid "Leave a reply to %s" -msgstr "回覆給%s" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 -msgid "Leave a comment" -msgstr "發表留言" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 -msgid "Save my name, email, and website in this browser for the next time I comment." -msgstr "請在此瀏覽器中保存我的姓名、電子郵件和網站,便於我下次發表迴響。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 -msgid "Comment sent successfully" -msgstr "已成功傳送留言" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 -msgid "Subscribe" -msgstr "訂閱" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 -msgid "Enter your email address" -msgstr "輸入你的電子郵件地址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 -msgid "Interested in getting blog post updates? Simply click the button below to stay in the loop!" -msgstr "是否有興趣接收網誌文章更新內容? 只要點選下方按鈕即可掌握最新動態!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 -msgid "Never miss a beat!" -msgstr "絕不錯過任何內容!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 -msgid "Continue reading" -msgstr "繼續閱讀" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 -msgid "Subscribe now to keep reading and get access to the full archive." -msgstr "立即訂閱即可持續閱讀,還能取得所有封存文章。" - -#. translators: %s is the name of the site -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 -msgid "Discover more from %s" -msgstr "探索 %s 更多內容" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 -msgid "Loading your comment..." -msgstr "正在載入你的留言…" - -#. translators: Success message of a modal when user subscribes -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 -msgid "We'll keep you in the loop!" -msgstr "我們會持續發送最新動態!" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 -msgid "Optional" -msgstr "選用設定" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 -msgid "Website" -msgstr "個人網站" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 -msgid "Write a reply..." -msgstr "撰寫回應…" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 -msgid "Cancel" -msgstr "取消" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 -msgid "Email me new comments" -msgstr "將新留言以電子郵件寄給我" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 -msgid "Email me new posts" -msgstr "有新文章時透過電子郵件通知我" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 -msgid "Notify me of new posts" -msgstr "有新文章時通知我" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 -msgid "Weekly" -msgstr "每週" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 -msgid "WordPress" -msgstr "WordPress" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 -msgid "Comment" -msgstr "迴響" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 -msgid "Reply" -msgstr "回應" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 -msgid "Daily" -msgstr "每天" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 -msgid "Instantly" -msgstr "即時" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 -msgid "(Address never made public)" -msgstr "(電子郵件地址不會公開)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 -msgid "Log out" -msgstr "登出" - -#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 -msgid "Logged in via %s" -msgstr "已透過 %s 登入" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 -msgid "Log in to leave a comment." -msgstr "如要留言,請先登入。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 -msgid "Log in to leave a reply." -msgstr "登入以發表回覆。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 -msgid "Leave a comment. (log in optional)" -msgstr "留言。(可選擇是否登入)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 -msgid "Leave a reply. (log in optional)" -msgstr "留言回覆。(可選擇是否登入)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 -msgid "Website (optional)" -msgstr "網站 (選填)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 -msgid "Email (address never made public)" -msgstr "電子郵件地址 (絕不會公開)" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 -msgid "Receive web and mobile notifications for posts on this site." -msgstr "接收這個網站的網頁版和行動版文章通知。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 -msgid "Log in or provide your name and email to leave a comment." -msgstr "若要留言,請登入或提供你的名稱與電子郵件地址。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 -msgid "Log in or provide your name and email to leave a reply." -msgstr "登入或提供你的名稱與電子郵件以留言回覆。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 -msgid "Write a comment..." -msgstr "發表迴響…" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 -msgid "Get started" -msgstr "開始使用" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 -msgid "Use WordPress.com’s guided importer to import posts and comments from Medium, Substack, Squarespace, Wix, and more." -msgstr "運用 WordPress.com 的引導式匯入工具,從 Medium、Substack、Squarespace、Wix 等網站匯入文章和留言。" - #: notices/feature-moved-to-jetpack-notices.php:21 msgid "Visit %1$sJetpack Settings%2$s for more writing settings powered by Jetpack." msgstr "前往「%1$sJetpack 設定%2$s」,深入了解 Jetpack 的編寫設定。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:599 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:600 -msgid "Scheduled Updates" -msgstr "已排程的更新" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:730 -msgid "Verify the email address for your domains" -msgstr "驗證網域的電子郵件地址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 -msgid "Site setup" -msgstr "網站設定" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:720 -msgid "Finish Sensei setup" -msgstr "完成 Sensei 設定" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:710 -msgid "Finish store setup" -msgstr "完成商店設定" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:693 -msgid "Update your site's design" -msgstr "更新你網站的設計" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:684 -msgid "Enable post sharing" -msgstr "啟用文章分享功能" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:675 -msgid "Install the mobile app" -msgstr "安裝行動應用程式" - #: imports/utils/class-filerestorer.php:167 msgid "No files are restored." msgstr "無檔案還原。" @@ -563,134 +119,6 @@ msgstr "已在執行一項匯入作業。" msgid "The backup import has been cancelled." msgstr "已取消匯入備份。" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 -msgid "Next steps for your site" -msgstr "你網站的下一步驟" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:665 -msgid "Add the Subscribe Block to your site" -msgstr "將訂閱區塊新增至網站" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:651 -msgid "Import existing subscribers" -msgstr "匯入已有的訂戶" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:642 -msgid "View site metrics" -msgstr "檢視網站指標" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:633 -msgid "Set up ssh" -msgstr "設定 SSH" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:621 -msgid "Install a custom plugin" -msgstr "安裝自訂外掛程式" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:609 -msgid "Choose a theme" -msgstr "選擇佈景主題" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:594 -msgid "Set up an offer for your supporters" -msgstr "為支持者設定折扣" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:574 -msgid "Connect a Stripe account to collect payments" -msgstr "連結 Stripe 帳號收取款項" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:559 -msgid "Add your About page" -msgstr "新增「關於」頁面" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:549 -msgid "Manage your paid Newsletter plan" -msgstr "管理付費電子報方案" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:541 -msgid "Connect your social media accounts" -msgstr "連結你的社交媒體帳號" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:527 -msgid "Manage your subscribers" -msgstr "管理訂閱者" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:514 -msgid "Write 3 posts" -msgstr "撰寫 3 篇文章" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:499 -msgid "Get your first 10 subscribers" -msgstr "獲得前 10 位訂閱者" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:487 -msgid "Enable subscribers modal" -msgstr "啟用訂閱者互動視窗" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:475 -msgid "Customize welcome message" -msgstr "自訂歡迎訊息" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:465 -msgid "Earn money with your newsletter" -msgstr "用電子報賺取收益" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:408 -msgid "Update your About page" -msgstr "更新「關於」頁面" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:246 -msgid "Migrate content" -msgstr "搬移內容" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:167 -msgid "Verify email address" -msgstr "驗證電子郵件地址" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 -msgid "Prevents new post and page from being created as well as existing posts and pages from being edited, and closes comments site wide." -msgstr "防止建立新文章或頁面以及編輯現有文章或頁面,並且關閉整個網站的留言功能。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 -msgid "Enable Locked Mode" -msgstr "啟用鎖定模式" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 -msgid "Locked Mode" -msgstr "鎖定模式" - -#. translators: link to the help page: https://wordpress.com/help -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 -msgid "To take ownership of the site, we ask that the person you designate contacts us at %s with a copy of the death certificate." -msgstr "若要接管網站所有權,我們要求你指定的對象於 %s 與我們聯絡,並攜帶一份死亡證明書。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 -msgid "Choose someone to look after your site when you pass away." -msgstr "選擇一個你身故後的網站管理人。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 -msgid "Legacy Contact" -msgstr "舊版聯絡資訊" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 -#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 -msgid "Enhanced Ownership" -msgstr "擁有權提升" - #: notices/anyone-can-register-notice.php:79 msgid "The \"Anyone can register\" option is currently active. The current default role is %1$s. %4$s Please consider disabling this option if open registration is not needed." msgstr "「任何人都能註冊」選項目前已啟用。 目前的預設角色為 %1$s。 %4$s 若不需要開放註冊,請考慮停用此選項。" @@ -720,149 +148,37 @@ msgstr "檔案不存在" msgid "Could not determine importer type." msgstr "無法判斷匯入工具類型" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:457 -msgid "Share your site" -msgstr "分享你的網站" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:427 -msgid "Edit a page" -msgstr "編輯頁面" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1717 -msgid "Your site contains premium styles. Upgrade now to publish them and unlock tons of other features." -msgstr "你的網站包含進階版樣式。 立即升級,即可發佈這些樣式,並解鎖多種其他功能。" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:442 -msgid "Customize your domain" -msgstr "自訂你的網域" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:395 -msgid "Add a new page" -msgstr "新增頁面" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:385 -msgid "Drive traffic to your site" -msgstr "刺激網站流量" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:146 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:371 -msgid "Give your site a name" -msgstr "為你的網站取個名字" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:77 -msgid "Claim your free one-year domain" -msgstr "索取一年免費網域" - #: frontend-notices/gifting-banner/gifting-banner.php:138 #: frontend-notices/gifting-banner/gifting-banner.php:160 msgctxt "verb" msgid "Gift" msgstr "餽贈" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 msgid "Thumbnail" msgstr "縮圖尺寸" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:171 +#. translators: post title +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +msgid "Share “%s” via Publicize" +msgstr "透過 Publicize 分享「%s」" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 msgctxt "Share the post on social networks" msgid "Share" msgstr "分享" -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1161 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1732 -msgid "Upgrade plan" -msgstr "方案升級" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:194 -msgid "Create paid Newsletter" -msgstr "建立付費電子報" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:216 -msgid "Set up payment method" -msgstr "設定付款方式" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:88 -msgid "Choose a domain" -msgstr "選擇網域" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:328 -msgid "Launch your blog" -msgstr "推出你的網誌" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:44 -msgid "Edit site design" -msgstr "編輯網站設計" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:362 -msgid "Set up your site" -msgstr "設定你的網站" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:336 -msgid "Name your blog" -msgstr "為你的網誌命名" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:348 -msgid "Personalize your site" -msgstr "網站個人化" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:307 -msgid "Upload your first video" -msgstr "上傳你的第一支影片" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:300 -msgid "Set up your video site" -msgstr "設定你的影音網站" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:159 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:261 -msgid "Launch your site" -msgstr "推出你的網站" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:269 -msgid "Add links" -msgstr "新增連結" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:281 -msgid "Personalize Link in Bio" -msgstr "個人化自介連結" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:57 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:67 -msgid "Select a design" -msgstr "選取設計" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:180 -msgid "Start writing" -msgstr "開始撰寫" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:103 -msgid "Write your first post" -msgstr "撰寫第一篇文章" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:233 -msgid "Add subscribers" -msgstr "新增訂戶" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:123 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:135 -msgid "Choose a plan" -msgstr "選擇方案" - -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:204 -msgid "Personalize newsletter" -msgstr "個人化電子報" - -#: vendor/automattic/jetpack-config/src/class-config.php:189 +#: vendor/automattic/jetpack-config/src/class-config.php:135 msgid "Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader" msgstr "無法載入類別 %1$s。請使用編輯器新增包含它的套件,並確認你要求的是 Jetpack Autoloader" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:571 +#: vendor/automattic/jetpack-assets/src/class-assets.php:553 msgid "Textdomain aliases should be registered before the %1$s hook. This notice was triggered by the %2$s domain." msgstr "Textdomain 別名應於 %1$s 勾點前註冊。%2$s 網域已觸發此通知。" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:405 +#: vendor/automattic/jetpack-assets/src/class-assets.php:388 msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "指令碼「%s」視 wp-i18n 而定,但不指定「textdomain」" @@ -1063,27 +379,27 @@ msgstr "真幸運!你的佈景主題設計者已選擇特定字型,你無法 msgid "Uncheck to disable" msgstr "取消勾選即可停用" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 msgid "Spotify Feed ID" msgstr "Spotify 摘要 ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 msgid "Apple Podcasts Feed ID" msgstr "Apple Podcast 摘要 ID" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 msgid "Title" msgstr "標題:" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 msgid "Podcast RSS Feed" msgstr "Podcast RSS 摘要" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 msgid "Listen on Spotify" msgstr "在 Spotify 上聆聽" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Apple Podcasts" msgstr "在 Apple Podcast 上聆聽" @@ -1095,98 +411,114 @@ msgstr "顯示你的 Podcast 相關資訊,並允許訪客透過 iTunes 追蹤" msgid "Podcast" msgstr "播客節目" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 msgid "Select iTunes category:" msgstr "選擇 iTunes 類別:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 msgid "Set podcast category" msgstr "設定 Podcast 類別" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 +msgid "Set podcast keywords" +msgstr "設定 Podcast 關鍵字" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 msgid "Set podcast image" msgstr "設定 Podcast 圖片" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 msgid "Clean" msgstr "大眾內容" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 msgid "Yes" msgstr "是" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 msgid "No" msgstr "不" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 msgid "Set podcast as explicit" msgstr "將 Podcast 設為包含敏感內容" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 msgid "Set podcast copyright" msgstr "設定 Podcast 著作權" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 msgid "Set podcast summary" msgstr "設定 Podcast 摘要" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 msgid "Set podcast author" msgstr "設定 Podcast 作者" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 +msgid "Set podcast subtitle" +msgstr "設置播客副標題" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 msgid "Set podcast title" msgstr "設置播客標題" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "這是你提交給 iTunes 或 Podcast 服務的 URL。" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 msgid "Your podcast feed: %1$s" msgstr "你的 Podcast 摘要:%1$s" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 msgid "Select podcast category:" msgstr "選擇 Podcast 類別:" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 msgid "Blog category for podcasts" msgstr "Podcast 的網誌類別" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 msgid "Podcast category 3" msgstr "Podcast 類別 3" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 msgid "Podcast category 2" msgstr "Podcast 類別 2" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 1" msgstr "Podcast 類別 1" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 +msgid "Podcast keywords" +msgstr "Podcast 關鍵字" + +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 msgid "Podcast image" msgstr "Podcast 圖片" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Mark as explicit" msgstr "設為包含敏感內容" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Podcast copyright" msgstr "Podcast 著作權" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast summary" msgstr "Podcast 摘要" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "Podcast 演出者名稱" +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 +msgid "Podcast subtitle" +msgstr "播客副標題" + #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:22 msgid "Podcast title" msgstr "播客標題" @@ -1298,8 +630,6 @@ msgid "Edit" msgstr "編輯" #: private-site/logged-in-banner.php:163 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:80 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:81 msgid "My Home" msgstr "我的首頁" @@ -1427,31 +757,31 @@ msgstr "磁碟空間配額" msgid "Disk space used" msgstr "已使用的磁碟空間" -#: widgets/class-wpcom-category-cloud-widget.php:210 +#: widgets/class-wpcom-category-cloud-widget.php:211 msgid "Click for more information" msgstr "按一下以取得更多資訊" -#: widgets/class-wpcom-category-cloud-widget.php:208 +#: widgets/class-wpcom-category-cloud-widget.php:209 msgid "Count items in sub-categories toward parent total." msgstr "將子類別項目計入上層項目總數。" -#: widgets/class-wpcom-category-cloud-widget.php:200 +#: widgets/class-wpcom-category-cloud-widget.php:201 msgid "Maximum font percentage:" msgstr "字體最大百分比:" -#: widgets/class-wpcom-category-cloud-widget.php:194 +#: widgets/class-wpcom-category-cloud-widget.php:195 msgid "Minimum font percentage:" msgstr "最小字體百分比:" -#: widgets/class-wpcom-category-cloud-widget.php:189 +#: widgets/class-wpcom-category-cloud-widget.php:190 msgid "Category IDs, separated by commas" msgstr "分類 ID,以逗點分隔" -#: widgets/class-wpcom-category-cloud-widget.php:187 +#: widgets/class-wpcom-category-cloud-widget.php:188 msgid "Exclude:" msgstr "排除:" -#: widgets/class-wpcom-category-cloud-widget.php:181 +#: widgets/class-wpcom-category-cloud-widget.php:182 msgid "Maximum number of categories to show:" msgstr "分類顯示數上限:" @@ -1469,24 +799,14 @@ msgstr "你在雲端格式中最常使用的分類。" msgid "Category Cloud" msgstr "分類雲" -#: private-site/private-site.php:171 -msgid "Jetpack is disconnected & site is private. Reconnect Jetpack to manage site visibility settings." -msgstr "Jetpack 已中斷連線,且網站為私人網站。 重新連線 Jetpack 以管理網站的能見度設定。" - #: private-site/logged-in-banner.php:81 msgid "Update visibility" msgstr "更新能見度" #: private-site/logged-in-banner.php:85 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:293 msgid "Launch site" msgstr "推出網站" -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:261 -#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:472 -msgid "Dismiss" -msgstr "隱藏" - #: wpcomsh.php:909 msgid "You are currently using %1$s out of %2$s upload limit (%3$s%%)." msgstr "上傳限制為 %2$s,你目前已使用 %1$s (%3$s%%)。" @@ -1623,47 +943,47 @@ msgstr "顯示最新的 Instagram 相片。" msgid "Instagram" msgstr "Instagram" -#: widgets/class-aboutme-widget.php:148 +#: widgets/class-aboutme-widget.php:149 msgid "Biography" msgstr "個人簡介" -#: widgets/class-aboutme-widget.php:141 +#: widgets/class-aboutme-widget.php:142 msgid "Headline" msgstr "標題" -#: widgets/class-aboutme-widget.php:134 +#: widgets/class-aboutme-widget.php:135 msgid "Photo" msgstr "照片" -#: widgets/class-aboutme-widget.php:130 +#: widgets/class-aboutme-widget.php:131 msgid "Don't Display Name" msgstr "不要顯示名稱" -#: widgets/class-aboutme-widget.php:128 +#: widgets/class-aboutme-widget.php:129 msgid "Display Small" msgstr "顯示小型" -#: widgets/class-aboutme-widget.php:126 +#: widgets/class-aboutme-widget.php:127 msgid "Display Medium" msgstr "顯示中型" -#: widgets/class-aboutme-widget.php:124 +#: widgets/class-aboutme-widget.php:125 msgid "Display Large" msgstr "顯示大型" -#: widgets/class-aboutme-widget.php:122 +#: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "顯示超大型" -#: widgets/class-aboutme-widget.php:111 +#: widgets/class-aboutme-widget.php:112 msgid "Your about.me URL" msgstr "你的 about.me 網址" -#: widgets/class-aboutme-widget.php:104 +#: widgets/class-aboutme-widget.php:105 msgid "Widget title" msgstr "小工具標題" -#: widgets/class-aboutme-widget.php:97 +#: widgets/class-aboutme-widget.php:98 msgid "The about.me widget will no longer be available after July 1, 2016. After this date, the widget will display a simple text link to your about.me profile. Please remove this widget." msgstr "about.me 小工具自 2016 年 7 月 1 日起停用。屆時小工具會顯示簡單文字連結,讓使用者連結到你的 about.me 個人檔案。請移除這個小工具。" @@ -1680,19 +1000,14 @@ msgid "Display your about.me profile with thumbnail" msgstr "以縮圖顯示 about.me 個人檔案" #: safeguard/utils.php:68 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1382 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1393 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1447 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1458 -#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1466 msgid "Unable to fetch the requested data." msgstr "無法擷取要求的資料。" -#: footer-credit/theme-optimizations.php:59 +#: footer-credit/theme-optimizations.php:62 msgid "Create a free website or blog at WordPress.com" msgstr "在 WordPress.com 建立免費網站或網誌" -#: footer-credit/theme-optimizations.php:54 +#: footer-credit/theme-optimizations.php:57 msgid "Create a free website at WordPress.com" msgstr "在 WordPress.com 建立免費網站" @@ -1702,8 +1017,8 @@ msgstr "由 WordPress.com 建置" #: block-theme-footer-credits/class-wpcom-block-theme-footer-credits.php:87 #: footer-credit/footer-credit/footer-credit.php:103 -#: footer-credit/theme-optimizations.php:52 -#: footer-credit/theme-optimizations.php:57 +#: footer-credit/theme-optimizations.php:55 +#: footer-credit/theme-optimizations.php:60 msgid "Blog at WordPress.com" msgstr "在WordPress.com寫網誌" @@ -1780,10 +1095,6 @@ msgstr "儲存" msgid "Activate & Save" msgstr "啟用並儲存" -#: private-site/private-site.php:178 -msgid "Manage your site visibility settings" -msgstr "管理網站的可見度設定" - #: wpcomsh.php:338 msgid "This plugin was installed by WordPress.com and provides features offered in your plan subscription." msgstr "此外掛程式已由 WordPress.com 安裝,並提供方案訂閱應有的功能。" @@ -1897,8 +1208,7 @@ msgstr "電話號碼" msgid "Email" msgstr "電子郵件" -#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 -#: widgets/class-aboutme-widget.php:118 +#: widgets/class-aboutme-widget.php:119 #: widgets/class-wpcom-widget-reservations.php:39 msgid "Name" msgstr "名稱" @@ -1912,27 +1222,27 @@ msgstr "訂位詢問" msgid "Reservations" msgstr "訂位" -#: widgets/class-wpcom-widget-recent-comments.php:476 +#: widgets/class-wpcom-widget-recent-comments.php:477 msgid "Show comments from:" msgstr "顯示下列來源的留言:" -#: widgets/class-wpcom-widget-recent-comments.php:471 +#: widgets/class-wpcom-widget-recent-comments.php:472 msgid "Text background color:" msgstr "文字的背景色:" -#: widgets/class-wpcom-widget-recent-comments.php:465 +#: widgets/class-wpcom-widget-recent-comments.php:466 msgid "Avatar background color:" msgstr "頭像的背景顏色:" -#: widgets/class-wpcom-widget-recent-comments.php:454 +#: widgets/class-wpcom-widget-recent-comments.php:455 msgid "No Avatars" msgstr "沒有頭像" -#: widgets/class-wpcom-widget-recent-comments.php:447 +#: widgets/class-wpcom-widget-recent-comments.php:448 msgid "(at most 15)" msgstr "(最多 15 篇)" -#: widgets/class-wpcom-widget-recent-comments.php:441 +#: widgets/class-wpcom-widget-recent-comments.php:442 msgid "Number of comments to show:" msgstr "顯示幾篇迴響:" @@ -1954,37 +1264,37 @@ msgid "Recent Comments" msgstr "近期迴響" #. translators: %s is a URL to the widgets settings page. -#: widgets/class-jetpack-posts-i-like-widget.php:277 +#: widgets/class-jetpack-posts-i-like-widget.php:278 msgid "You have not recently liked any posts. Once you do, this Posts I Like widget will display them." msgstr "你最近尚未對任何文章說讚。按讚以後,這個我按讚的文章小工具就會顯示這些內容。" -#: widgets/class-jetpack-posts-i-like-widget.php:265 +#: widgets/class-jetpack-posts-i-like-widget.php:266 msgid "on" msgstr "於" #. translators: %1$s is the post title, %1$s is the blog name. -#: widgets/class-jetpack-posts-i-like-widget.php:242 +#: widgets/class-jetpack-posts-i-like-widget.php:243 msgctxt "1: Post Title, 2: Blog Name" msgid "%1$s on %2$s" msgstr "「%1$s」對「%2$s」留言" -#: widgets/class-jetpack-posts-i-like-widget.php:117 +#: widgets/class-jetpack-posts-i-like-widget.php:118 msgid "Author's likes to display:" msgstr "顯示作者的讚:" -#: widgets/class-jetpack-posts-i-like-widget.php:99 +#: widgets/class-jetpack-posts-i-like-widget.php:100 msgid "Grid" msgstr "網格" -#: widgets/class-jetpack-posts-i-like-widget.php:98 +#: widgets/class-jetpack-posts-i-like-widget.php:99 msgid "List" msgstr "列表" -#: widgets/class-jetpack-posts-i-like-widget.php:96 +#: widgets/class-jetpack-posts-i-like-widget.php:97 msgid "Display as:" msgstr "顯示為:" -#: widgets/class-jetpack-posts-i-like-widget.php:91 +#: widgets/class-jetpack-posts-i-like-widget.php:92 msgid "Number of posts to show (1 to 15):" msgstr "文章顯示數 (1 到 15):" @@ -2018,62 +1328,62 @@ msgstr "我投票了" msgid "Show your readers that you voted with an \"I Voted\" sticker." msgstr "使用「我投票了」貼紙,向讀者表明你已投票。" -#: widgets/class-gravatar-widget.php:200 +#: widgets/class-gravatar-widget.php:199 msgid "Text displayed after Gravatar. This is optional and can be used to describe yourself or what your blog is about." msgstr "顯示在 Gravatar 之後的文字。此為選填,可用來描述你自己或網誌內容。" -#: widgets/class-gravatar-widget.php:199 +#: widgets/class-gravatar-widget.php:198 msgid "Gravatar link. This is an optional URL that will be used when anyone clicks on your Gravatar:" msgstr "Gravatar 連結。此 URL 為選填,以供有人點擊你的 Gravatar 時使用:" -#: widgets/class-gravatar-widget.php:189 +#: widgets/class-gravatar-widget.php:188 msgid "Gravatar alignment:" msgstr "Gravatar 對齊:" -#: widgets/class-gravatar-widget.php:178 +#: widgets/class-gravatar-widget.php:177 msgid "Size:" msgstr "大小:" -#: widgets/class-gravatar-widget.php:175 +#: widgets/class-gravatar-widget.php:174 msgid "Custom Email Address:" msgstr "自訂 Email 地址:" -#: widgets/class-gravatar-widget.php:162 +#: widgets/class-gravatar-widget.php:161 msgid "Select a user or pick \"custom\" and enter a custom email address." msgstr "選擇一個使用者或挑選 \"自定義\" ,然後輸入一個自定的 email 地址。" -#: widgets/class-gravatar-widget.php:157 +#: widgets/class-gravatar-widget.php:156 msgid "Center" msgstr "置中" -#: widgets/class-gravatar-widget.php:156 +#: widgets/class-gravatar-widget.php:155 msgid "Right" msgstr "靠右" -#: widgets/class-gravatar-widget.php:155 +#: widgets/class-gravatar-widget.php:154 msgid "Left" msgstr "靠左" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 -#: widgets/class-gravatar-widget.php:154 -#: widgets/class-widget-top-clicks.php:162 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: widgets/class-gravatar-widget.php:153 +#: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "無" -#: widgets/class-gravatar-widget.php:151 +#: widgets/class-gravatar-widget.php:150 msgid "Extra Large (256 pixels)" msgstr "超大型 (256 像素)" -#: widgets/class-gravatar-widget.php:150 +#: widgets/class-gravatar-widget.php:149 msgid "Large (128 pixels)" msgstr "大型 (128 像素)" -#: widgets/class-gravatar-widget.php:149 +#: widgets/class-gravatar-widget.php:148 msgid "Medium (96 pixels)" msgstr "中型 (96 像素)" -#: widgets/class-gravatar-widget.php:148 +#: widgets/class-gravatar-widget.php:147 msgid "Small (64 pixels)" msgstr "小型 (64 像素)" @@ -2090,7 +1400,7 @@ msgstr "Gravatar" msgid "Insert a Gravatar image" msgstr "插入一張 Gravatar 影像" -#: widgets/class-wpcom-freshly-pressed-widget.php:83 +#: widgets/class-wpcom-freshly-pressed-widget.php:84 msgid "Choose an image to display in your sidebar:" msgstr "在你的側欄中選擇一張圖片:" @@ -2102,28 +1412,28 @@ msgstr "熱門文章" msgid "Display a Freshly Pressed badge in your sidebar" msgstr "在側欄中顯示「最新發表」的徽章" -#: widgets/class-widget-authors-grid.php:142 -#: widgets/class-wpcom-widget-recent-comments.php:452 +#: widgets/class-widget-authors-grid.php:143 +#: widgets/class-wpcom-widget-recent-comments.php:453 msgid "Avatar Size (px):" msgstr "大頭貼尺寸 (像素):" -#: widgets/class-widget-authors-grid.php:137 +#: widgets/class-widget-authors-grid.php:138 msgid "Display all authors (including those who have not written any posts)" msgstr "顯示所有作者 (包括沒有撰寫任何文章的作者)" -#: widgets/class-gravatar-widget.php:160 -#: widgets/class-jetpack-i-voted-widget.php:81 -#: widgets/class-jetpack-posts-i-like-widget.php:86 -#: widgets/class-jetpack-widget-twitter.php:138 +#: widgets/class-gravatar-widget.php:159 +#: widgets/class-jetpack-i-voted-widget.php:82 +#: widgets/class-jetpack-posts-i-like-widget.php:87 +#: widgets/class-jetpack-widget-twitter.php:139 #: widgets/class-music-player-widget.php:87 widgets/class-pd-top-rated.php:152 -#: widgets/class-widget-authors-grid.php:131 -#: widgets/class-widget-top-clicks.php:72 -#: widgets/class-wpcom-category-cloud-widget.php:175 -#: widgets/class-wpcom-freshly-pressed-widget.php:79 -#: widgets/class-wpcom-tag-cloud-widget.php:123 -#: widgets/class-wpcom-widget-recent-comments.php:435 -#: widgets/class-wpcom-widget-reservations.php:60 -#: widgets/tlkio/class-tlkio-widget.php:75 +#: widgets/class-widget-authors-grid.php:132 +#: widgets/class-widget-top-clicks.php:73 +#: widgets/class-wpcom-category-cloud-widget.php:176 +#: widgets/class-wpcom-freshly-pressed-widget.php:80 +#: widgets/class-wpcom-tag-cloud-widget.php:124 +#: widgets/class-wpcom-widget-recent-comments.php:436 +#: widgets/class-wpcom-widget-reservations.php:61 +#: widgets/tlkio/class-tlkio-widget.php:76 msgid "Title:" msgstr "標題:" @@ -2139,12 +1449,12 @@ msgstr "顯示作者頭像圖片網格。" msgid "Author Grid" msgstr "作者網格" -#: private-site/private-site.php:650 +#: private-site/private-site.php:616 msgid "Private Site" msgstr "私人網站" -#: private-site/private-site.php:460 private-site/private-site.php:577 -#: private-site/private-site.php:809 +#: private-site/private-site.php:426 private-site/private-site.php:543 +#: private-site/private-site.php:775 msgid "This site is private." msgstr "此網站已設為私人。" diff --git a/projects/plugins/wpcomsh/languages/wpcomsh.pot b/projects/plugins/wpcomsh/languages/wpcomsh.pot index d0bf178f5da06..5d3c2ed2705a0 100644 --- a/projects/plugins/wpcomsh/languages/wpcomsh.pot +++ b/projects/plugins/wpcomsh/languages/wpcomsh.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: WP.com Site Helper\n" "Report-Msgid-Bugs-To: help@wordpress.com\n" -"POT-Creation-Date: 2024-06-10 10:54+0300\n" +"POT-Creation-Date: 2024-07-02 13:37+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -50,6 +50,8 @@ msgid "Save Settings" msgstr "" #: feature-plugins/additional-css.php:45 feature-plugins/additional-css.php:48 +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:130 +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:244 msgid "CSS" msgstr "" @@ -66,7 +68,7 @@ msgid "Home" msgstr "" #. translators: 1: opening anchor tag; 2: closing anchor tag. -#: feature-plugins/full-site-editing.php:127 +#: feature-plugins/full-site-editing.php:124 #, php-format msgid "" "Heads up! Your site is currently in Coming Soon mode. If you want search " @@ -75,7 +77,7 @@ msgid "" msgstr "" #. translators: 1: opening anchor tag; 2: closing anchor tag. -#: feature-plugins/full-site-editing.php:130 +#: feature-plugins/full-site-editing.php:127 #, php-format msgid "" "Heads up! Search engines are currently discouraged from indexing your site. " @@ -106,12 +108,14 @@ msgid "" "your plan subscription." msgstr "" +#. translators: Message about how a managed plugin is updated. #. translators: Message about how a managed theme is updated. #. translators: Information about how a managed plugin is updated, for debugging purposes. #. translators: Information about how a managed theme is updated, for debugging purposes. #: feature-plugins/managed-plugins.php:506 #: feature-plugins/managed-plugins.php:517 #: feature-plugins/managed-plugins.php:528 +#: feature-plugins/managed-plugins.php:539 msgid "Updates managed by WordPress.com" msgstr "" @@ -550,47 +554,50 @@ msgstr "" msgid "Switch user" msgstr "" -#: private-site/logged-in-banner.php:81 +#: private-site/logged-in-banner.php:86 msgid "Update visibility" msgstr "" -#: private-site/logged-in-banner.php:82 +#: private-site/logged-in-banner.php:87 msgid "Update" msgstr "" -#: private-site/logged-in-banner.php:85 +#: private-site/logged-in-banner.php:90 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:292 msgid "Launch site" msgstr "" -#: private-site/logged-in-banner.php:86 +#: private-site/logged-in-banner.php:91 msgid "Launch" msgstr "" -#: private-site/logged-in-banner.php:112 +#: private-site/logged-in-banner.php:117 msgid "Edit" msgstr "" -#: private-site/logged-in-banner.php:113 +#: private-site/logged-in-banner.php:118 msgid "Edit post" msgstr "" -#: private-site/logged-in-banner.php:113 +#: private-site/logged-in-banner.php:118 msgid "Edit page" msgstr "" -#: private-site/logged-in-banner.php:126 +#: private-site/logged-in-banner.php:131 msgid "Change" msgstr "" -#: private-site/logged-in-banner.php:127 +#: private-site/logged-in-banner.php:132 msgid "Change theme" msgstr "" -#: private-site/logged-in-banner.php:163 +#: private-site/logged-in-banner.php:168 msgid "Next steps" msgstr "" -#: private-site/logged-in-banner.php:163 +#: private-site/logged-in-banner.php:168 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:83 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:84 msgid "My Home" msgstr "" @@ -604,6 +611,11 @@ msgid "Private Site" msgstr "" #: safeguard/utils.php:68 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1381 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1392 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1446 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1457 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1465 msgid "Unable to fetch the requested data." msgstr "" @@ -628,118 +640,103 @@ msgid "Podcast title" msgstr "" #: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:25 -msgid "Podcast subtitle" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast talent name" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:28 msgid "Podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:31 msgid "Podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:34 msgid "Mark as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:40 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:37 msgid "Podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 -msgid "Podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:41 msgid "Podcast category 1" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:50 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:44 msgid "Podcast category 2" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:53 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:47 msgid "Podcast category 3" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:82 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:76 msgid "Blog category for podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:85 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:79 msgid "Select podcast category:" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:87 -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:321 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:81 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:292 +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:789 #: widgets/class-gravatar-widget.php:153 #: widgets/class-widget-top-clicks.php:163 msgid "None" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:103 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:97 #, php-format msgid "Your podcast feed: %1$s" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:104 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:98 msgid "This is the URL you submit to iTunes or podcasting service." msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:122 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:116 msgid "Set podcast title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:135 -msgid "Set podcast subtitle" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:149 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:130 msgid "Set podcast author" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:167 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:148 msgid "Set podcast summary" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:182 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:163 msgid "Set podcast copyright" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:192 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:173 msgid "Set podcast as explicit" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:195 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:176 msgid "No" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:196 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:177 msgid "Yes" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:197 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:178 msgid "Clean" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:208 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:189 msgid "Set podcast image" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:224 -msgid "Set podcast keywords" -msgstr "" - -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:316 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:287 msgid "Set podcast category" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:319 +#: vendor/automattic/at-pressable-podcasting/podcasting/settings.php:290 msgid "Select iTunes category:" msgstr "" @@ -753,27 +750,27 @@ msgid "" "iTunes" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:73 msgid "Listen on Apple Podcasts" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:83 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:78 msgid "Listen on Spotify" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:86 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:81 msgid "Podcast RSS Feed" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:102 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:97 msgid "Title" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:108 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:103 msgid "Apple Podcasts Feed ID" msgstr "" -#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:114 +#: vendor/automattic/at-pressable-podcasting/podcasting/widget.php:109 msgid "Spotify Feed ID" msgstr "" @@ -981,38 +978,918 @@ msgid "no-subset" msgstr "" #. translators: %s is the script handle. -#: vendor/automattic/jetpack-assets/src/class-assets.php:388 +#: vendor/automattic/jetpack-assets/src/class-assets.php:406 #, php-format msgid "Script \"%s\" depends on wp-i18n but does not specify \"textdomain\"" msgstr "" #. translators: 1: wp_default_scripts. 2: Name of the domain being aliased. -#: vendor/automattic/jetpack-assets/src/class-assets.php:553 +#: vendor/automattic/jetpack-assets/src/class-assets.php:572 #, php-format msgid "" "Textdomain aliases should be registered before the %1$s hook. This notice " "was triggered by the %2$s domain." msgstr "" -#: vendor/automattic/jetpack-config/src/class-config.php:135 +#: vendor/automattic/jetpack-config/src/class-config.php:189 #, php-format msgid "" "Unable to load class %1$s. Please add the package that contains it using " "composer and make sure you are requiring the Jetpack autoloader" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:170 +#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:73 +#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:95 +msgid "Enhanced Ownership" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:80 +msgid "Legacy Contact" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:97 +msgid "Choose someone to look after your site when you pass away." +msgstr "" + +#. translators: link to the help page: https://wordpress.com/help +#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/enhanced-ownership.php:102 +#, php-format +msgid "" +"To take ownership of the site, we ask that the person you designate contacts " +"us at %s with a copy of the death certificate." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:102 +msgid "Locked Mode" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:119 +msgid "Enable Locked Mode" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/100-year-plan/locked-mode.php:120 +msgid "" +"Prevents new post and page from being created as well as existing posts and " +"pages from being edited, and closes comments site wide." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:131 +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:247 +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:801 +msgid "Preprocessor" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:230 +msgid "Custom CSS" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:236 +msgid "Manage with Live Preview" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:241 +msgid "Custom CSS is now managed in the Customizer." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:334 +msgid "Set a different media width for full size images." +msgstr "" + +#. translators: the theme name and then the default width. +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:338 +#, php-format +msgid "" +" The default media width for the %1$s theme is %2$d pixel." +msgid_plural "" +" The default media width for the %1$s theme is %2$d pixels." +msgstr[0] "" +msgstr[1] "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:355 +msgid "Start Fresh" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:356 +msgid "On Mobile" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:358 +msgctxt "Toolbar button to see full CSS revision history" +msgid "See full history" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:359 +msgctxt "Toolbar button to get help with custom CSS" +msgid "Help" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:758 +msgid "Media Width" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:768 +msgid "Don't use the theme's original CSS." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:1169 +msgid "Select another theme to view its custom CSS." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:1171 +msgid "Select a theme…" +msgstr "" + +#. translators: how long ago the stylesheet was modified. +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:1181 +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:1193 +#, php-format +msgid "(modified %s ago)" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/custom-css/custom-css.php:1200 +msgid "Switch" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:37 +msgid "" +"Use WordPress.com’s guided importer to import posts and comments from " +"Medium, Substack, Squarespace, Wix, and more." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/import-customizations/import-customizations.php:39 +msgid "Get started" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:43 +msgid "Edit site design" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:56 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:66 +msgid "Select a design" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:76 +msgid "Claim your free one-year domain" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:87 +msgid "Choose a domain" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:102 +msgid "Write your first post" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:122 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:134 +msgid "Choose a plan" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:145 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:370 +msgid "Give your site a name" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:158 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:260 +msgid "Launch your site" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:166 +msgid "Verify email address" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:179 +msgid "Start writing" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:193 +msgid "Create paid Newsletter" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:203 +msgid "Personalize newsletter" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:215 +msgid "Set up payment method" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:232 +msgid "Add subscribers" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:245 +msgid "Migrate content" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:268 +msgid "Add links" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:280 +msgid "Personalize Link in Bio" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:299 +msgid "Set up your video site" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:306 +msgid "Upload your first video" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:327 +msgid "Launch your blog" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:335 +msgid "Name your blog" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:347 +msgid "Personalize your site" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:361 +msgid "Set up your site" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:384 +msgid "Drive traffic to your site" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:394 +msgid "Add a new page" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:407 +msgid "Update your About page" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:426 +msgid "Edit a page" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:441 +msgid "Customize your domain" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:456 +msgid "Share your site" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:464 +msgid "Earn money with your newsletter" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:474 +msgid "Customize welcome message" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:486 +msgid "Enable subscribers modal" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:498 +msgid "Get your first 10 subscribers" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:513 +msgid "Write 3 posts" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:526 +msgid "Manage your subscribers" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:540 +msgid "Connect your social media accounts" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:548 +msgid "Manage your paid Newsletter plan" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:558 +msgid "Add your About page" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:573 +msgid "Connect a Stripe account to collect payments" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:593 +msgid "Set up an offer for your supporters" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:608 +msgid "Choose a theme" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:620 +msgid "Install a custom plugin" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:632 +msgid "Set up ssh" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:641 +msgid "View site metrics" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:650 +msgid "Import existing subscribers" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:664 +msgid "Add the Subscribe Block to your site" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:674 +msgid "Install the mobile app" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:683 +msgid "Enable post sharing" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:692 +msgid "Update your site's design" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:709 +msgid "Finish store setup" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:719 +msgid "Finish Sensei setup" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:729 +msgid "Verify the email address for your domains" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:741 +msgid "Customize your store" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:751 +msgid "Add your products" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:761 +msgid "Get paid with WooPayments" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:771 +msgid "Collect sales tax" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:781 +msgid "Grow your business" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:791 +msgid "Add a domain" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:801 +msgid "Launch your store" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1160 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1731 +msgid "Upgrade plan" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad-task-definitions.php:1716 +msgid "" +"Your site contains premium styles. Upgrade now to publish them and unlock " +"tons of other features." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:36 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:50 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:65 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:78 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:91 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:107 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:119 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:132 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:145 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:159 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:176 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:190 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:204 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:245 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:261 +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:276 +msgid "Next steps for your site" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/launchpad/launchpad.php:291 +msgid "Site setup" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/replace-site-visibility/replace-site-visibility.php:32 +msgid "" +"Jetpack is disconnected & site is private. Reconnect Jetpack to manage site " +"visibility settings." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/replace-site-visibility/replace-site-visibility.php:37 +msgid "Manage your privacy settings" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:73 +msgid "Leave a Reply" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:80 +msgid "Light" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:81 +msgid "Dark" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:82 +msgid "Transparent" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:96 +msgid "Comments" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:103 +msgid "Verbum" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:116 +msgid "Allow Blocks" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:132 +msgid "Greeting Text" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:149 +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:262 +msgid "Color Scheme" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:170 +msgid "Adjust your Comments form with a clever greeting and color-scheme." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:181 +msgid "Let visitors use a WordPress.com or Facebook account to comment" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:192 +msgid "Enable blocks in comments" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-admin.php:230 +msgid "A few catchy words to motivate your readers to comment" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/assets/class-verbum-gutenberg-editor.php:30 +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:217 +msgid "Write a comment..." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:192 +msgid "Log in or provide your name and email to leave a reply." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:193 +msgid "Log in or provide your name and email to leave a comment." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:194 +msgid "Receive web and mobile notifications for posts on this site." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:195 +#: widgets/class-aboutme-widget.php:119 +#: widgets/class-wpcom-widget-reservations.php:39 +msgid "Name" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:196 +msgid "Email (address never made public)" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:197 +msgid "Website (optional)" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:198 +msgid "Leave a reply. (log in optional)" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:199 +msgid "Leave a comment. (log in optional)" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:200 +msgid "Log in to leave a reply." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:201 +msgid "Log in to leave a comment." +msgstr "" + +#. translators: %s is the name of the provider (WordPress, Facebook, Twitter) +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:203 +#, php-format +msgid "Logged in via %s" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:204 +msgid "Log out" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:205 +#: widgets/class-wpcom-widget-reservations.php:40 +msgid "Email" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:206 +msgid "(Address never made public)" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:207 +msgid "Instantly" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:208 +msgid "Daily" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:209 +msgid "Reply" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:210 +msgid "Comment" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:211 +msgid "WordPress" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:212 +msgid "Weekly" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:213 +msgid "Notify me of new posts" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:214 +msgid "Email me new posts" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:215 +msgid "Email me new comments" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:216 +msgid "Cancel" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:218 +msgid "Write a reply..." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:219 +msgid "Website" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:220 +msgid "Optional" +msgstr "" + +#. translators: Success message of a modal when user subscribes +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:222 +msgid "We'll keep you in the loop!" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:223 +msgid "Loading your comment..." +msgstr "" + +#. translators: %s is the name of the site +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:225 +#, php-format +msgid "Discover more from %s" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:226 +msgid "Subscribe now to keep reading and get access to the full archive." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:227 +msgid "Continue reading" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:228 +msgid "Never miss a beat!" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:229 +msgid "" +"Interested in getting blog post updates? Simply click the button below to " +"stay in the loop!" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:230 +msgid "Enter your email address" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:231 +msgid "Subscribe" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:232 +msgid "Comment sent successfully" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:233 +msgid "" +"Save my name, email, and website in this browser for the next time I comment." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:283 +msgid "Leave a comment" +msgstr "" + +#. translators: % is the original posters name +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:300 +#, php-format +msgid "Leave a reply to %s" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:301 +msgid "Cancel reply" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:390 +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:396 +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:403 +msgid "Error: your Facebook login has expired." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/class-verbum-comments.php:465 +msgid "Error: please try commenting again." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:31 +msgid "Admin Interface Style" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:33 +msgid "Classic style" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:33 +msgid "Use WP-Admin to manage your site." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:34 +msgid "Default style" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:34 +msgid "Use WordPress.com’s legacy dashboard to manage your site." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:168 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:309 +msgid "Dismiss" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:172 +msgid "Step {{currentStep}} of {{totalSteps}}" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:173 +msgid "Previous" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:174 +msgid "Next" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:175 +msgid "Got it!" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:217 +msgid "Upgrades is now Hosting" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:218 +msgid "" +"The Hosting menu contains the My Home page and all items from the Upgrades " +"menu, including Plans, Domains, Emails, Purchases, and more." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:224 +msgid "Hosting overview" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:225 +msgid "" +"Access the new site management panel and all developer tools such as hosting " +"configuration, GitHub deployments, metrics, PHP logs, and server logs." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:231 +msgid "All your sites" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:232 +msgid "" +"Click here to access your sites, domains, Reader, account settings, and more." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php:269 +msgid "Admin interface style changed." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-block-editor/class-jetpack-wpcom-block-editor.php:185 +msgid "Before we continue, please log in to your Jetpack site." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-block-editor/class-jetpack-wpcom-block-editor.php:200 +msgid "Logging In..." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-block-editor/class-jetpack-wpcom-block-editor.php:356 +msgid "Justify" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-block-editor/class-jetpack-wpcom-block-editor.php:357 +msgid "Underline" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-management-widget/class-wpcom-site-management-widget.php:155 +msgid "Site Management Panel" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-management-widget/class-wpcom-site-management-widget.php:172 +msgid "Your Site management widget requires JavaScript to function properly." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-management-widget/class-wpcom-site-management-widget.php:184 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:92 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:93 +msgid "Overview" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-management-widget/class-wpcom-site-management-widget.php:189 +msgid "" +"Get a quick overview of your plans, storage, and domains, or easily access " +"your development tools using the links provided below:" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-management-widget/class-wpcom-site-management-widget.php:191 +msgid "DEV TOOLS:" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-management-widget/class-wpcom-site-management-widget.php:197 +msgid "Deployments" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-management-widget/class-wpcom-site-management-widget.php:201 +msgid "Monitoring" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-management-widget/class-wpcom-site-management-widget.php:205 +msgid "Logs" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-management-widget/class-wpcom-site-management-widget.php:209 +msgid "Staging Site" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-management-widget/class-wpcom-site-management-widget.php:213 +msgid "Server Settings" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:72 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:73 +msgid "Hosting" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:101 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:102 +msgid "Plans" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:110 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:111 +msgid "Add-ons" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:119 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:120 +msgid "Domains" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:128 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:129 +msgid "Emails" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:137 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:138 +msgid "Purchases" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:146 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:147 +msgid "Marketing" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:155 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:156 +msgid "Settings" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:201 +msgid "All Sites" +msgstr "" + +#. translators: Hidden accessibility text. +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:249 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:253 +msgid "About WordPress" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:421 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:422 +msgid "Monetize" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:540 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:541 +msgid "Plugins" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:553 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:554 +msgid "Add New Plugin" +msgstr "" + +#. translators: Name of the Plugins submenu that links to the Plugins Marketplace +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:574 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:576 +msgid "Marketplace" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:595 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php:596 +msgid "Scheduled Updates" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:38 +msgid "Find the perfect theme for your site" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:39 +msgid "" +"Dive deep into the world of WordPress.com themes. Discover the responsive " +"and stunning designs waiting to bring your site to life." +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:41 +msgid "Explore themes" +msgstr "" + +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:68 +#: vendor/automattic/jetpack-mu-wpcom/src/features/wpcom-themes/wpcom-themes.php:69 +msgid "Theme Showcase" +msgstr "" + +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:191 msgctxt "Share the post on social networks" msgid "Share" msgstr "" #. translators: post title -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:173 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:194 #, php-format -msgid "Share “%s” via Publicize" +msgid "Share “%s” via Jetpack Social" msgstr "" -#: vendor/automattic/jetpack-post-list/src/class-post-list.php:190 +#: vendor/automattic/jetpack-post-list/src/class-post-list.php:211 msgid "Thumbnail" msgstr "" @@ -1047,11 +1924,6 @@ msgstr "" msgid "Your about.me URL" msgstr "" -#: widgets/class-aboutme-widget.php:119 -#: widgets/class-wpcom-widget-reservations.php:39 -msgid "Name" -msgstr "" - #: widgets/class-aboutme-widget.php:123 msgid "Display X-Large" msgstr "" @@ -1510,10 +2382,6 @@ msgstr "" msgid "Reservation Inquiry" msgstr "" -#: widgets/class-wpcom-widget-reservations.php:40 -msgid "Email" -msgstr "" - #: widgets/class-wpcom-widget-reservations.php:41 msgid "Phone" msgstr "" @@ -1566,17 +2434,17 @@ msgstr "" msgid "Height (in pixel):" msgstr "" -#: wpcom-plugins/plugins.php:39 +#: wpcom-plugins/plugins.php:44 msgid "Flex your site's features with plugins" msgstr "" -#: wpcom-plugins/plugins.php:40 +#: wpcom-plugins/plugins.php:45 msgid "" "Access a variety of free and paid plugins that can enhance your site's " "functionality and features." msgstr "" -#: wpcom-plugins/plugins.php:42 +#: wpcom-plugins/plugins.php:47 msgid "Explore plugins" msgstr "" From 4e70a30678da8de9a2bcd0ac0238f4bcbfac54cd Mon Sep 17 00:00:00 2001 From: Nate Weller Date: Sun, 7 Jul 2024 15:16:37 -0600 Subject: [PATCH 040/254] Protect: Add "routes" directory (#37941) --- .../changelog/add-protect-routing-improvements | 5 +++++ projects/plugins/protect/src/js/index.js | 8 ++++---- .../firewall-page => routes/firewall}/index.jsx | 12 ++++++------ .../firewall}/styles.module.scss | 0 .../scan-page => routes/scan}/in-progress.png | Bin .../scan-page => routes/scan}/index.jsx | 14 +++++++------- .../scan}/onboarding-steps.jsx | 0 .../scan-page => routes/scan}/styles.module.scss | 0 .../scan-page => routes/scan}/use-credentials.js | 0 .../scan}/use-status-polling.js | 0 10 files changed, 22 insertions(+), 17 deletions(-) create mode 100644 projects/plugins/protect/changelog/add-protect-routing-improvements rename projects/plugins/protect/src/js/{components/firewall-page => routes/firewall}/index.jsx (98%) rename projects/plugins/protect/src/js/{components/firewall-page => routes/firewall}/styles.module.scss (100%) rename projects/plugins/protect/src/js/{components/scan-page => routes/scan}/in-progress.png (100%) rename projects/plugins/protect/src/js/{components/scan-page => routes/scan}/index.jsx (93%) rename projects/plugins/protect/src/js/{components/scan-page => routes/scan}/onboarding-steps.jsx (100%) rename projects/plugins/protect/src/js/{components/scan-page => routes/scan}/styles.module.scss (100%) rename projects/plugins/protect/src/js/{components/scan-page => routes/scan}/use-credentials.js (100%) rename projects/plugins/protect/src/js/{components/scan-page => routes/scan}/use-status-polling.js (100%) diff --git a/projects/plugins/protect/changelog/add-protect-routing-improvements b/projects/plugins/protect/changelog/add-protect-routing-improvements new file mode 100644 index 0000000000000..582c1e9c0644f --- /dev/null +++ b/projects/plugins/protect/changelog/add-protect-routing-improvements @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updating project directory structure, organizational change. + + diff --git a/projects/plugins/protect/src/js/index.js b/projects/plugins/protect/src/js/index.js index 2be68105d6fa2..ad2bbcc3db090 100644 --- a/projects/plugins/protect/src/js/index.js +++ b/projects/plugins/protect/src/js/index.js @@ -2,10 +2,10 @@ import { ThemeProvider } from '@automattic/jetpack-components'; import * as WPElement from '@wordpress/element'; import React, { useEffect } from 'react'; import { HashRouter, Routes, Route, useLocation } from 'react-router-dom'; -import FirewallPage from './components/firewall-page'; import Modal from './components/modal'; -import ScanPage from './components/scan-page'; import { OnboardingRenderedContextProvider } from './hooks/use-onboarding'; +import FirewallRoute from './routes/firewall'; +import ScanRoute from './routes/scan'; import { initStore } from './state/store'; import './styles.module.scss'; @@ -40,8 +40,8 @@ function render() { - } /> - } /> + } /> + } /> diff --git a/projects/plugins/protect/src/js/components/firewall-page/index.jsx b/projects/plugins/protect/src/js/routes/firewall/index.jsx similarity index 98% rename from projects/plugins/protect/src/js/components/firewall-page/index.jsx rename to projects/plugins/protect/src/js/routes/firewall/index.jsx index 22275b2509d03..923f4d1cd425b 100644 --- a/projects/plugins/protect/src/js/components/firewall-page/index.jsx +++ b/projects/plugins/protect/src/js/routes/firewall/index.jsx @@ -16,17 +16,17 @@ import { Icon, arrowLeft, closeSmall } from '@wordpress/icons'; import moment from 'moment'; import { useCallback, useEffect, useState, useMemo } from 'react'; import API from '../../api'; +import AdminPage from '../../components/admin-page'; +import FirewallFooter from '../../components/firewall-footer'; +import ConnectedFirewallHeader from '../../components/firewall-header'; +import FormToggle from '../../components/form-toggle'; +import ScanFooter from '../../components/scan-footer'; +import Textarea from '../../components/textarea'; import { JETPACK_SCAN_SLUG, PLUGIN_SUPPORT_URL } from '../../constants'; import useAnalyticsTracks from '../../hooks/use-analytics-tracks'; import useProtectData from '../../hooks/use-protect-data'; import useWafData from '../../hooks/use-waf-data'; import { STORE_ID } from '../../state/store'; -import AdminPage from '../admin-page'; -import FirewallFooter from '../firewall-footer'; -import ConnectedFirewallHeader from '../firewall-header'; -import FormToggle from '../form-toggle'; -import ScanFooter from '../scan-footer'; -import Textarea from '../textarea'; import styles from './styles.module.scss'; const ADMIN_URL = window?.jetpackProtectInitialState?.adminUrl; diff --git a/projects/plugins/protect/src/js/components/firewall-page/styles.module.scss b/projects/plugins/protect/src/js/routes/firewall/styles.module.scss similarity index 100% rename from projects/plugins/protect/src/js/components/firewall-page/styles.module.scss rename to projects/plugins/protect/src/js/routes/firewall/styles.module.scss diff --git a/projects/plugins/protect/src/js/components/scan-page/in-progress.png b/projects/plugins/protect/src/js/routes/scan/in-progress.png similarity index 100% rename from projects/plugins/protect/src/js/components/scan-page/in-progress.png rename to projects/plugins/protect/src/js/routes/scan/in-progress.png diff --git a/projects/plugins/protect/src/js/components/scan-page/index.jsx b/projects/plugins/protect/src/js/routes/scan/index.jsx similarity index 93% rename from projects/plugins/protect/src/js/components/scan-page/index.jsx rename to projects/plugins/protect/src/js/routes/scan/index.jsx index 1eded9d655846..daa58442304c1 100644 --- a/projects/plugins/protect/src/js/components/scan-page/index.jsx +++ b/projects/plugins/protect/src/js/routes/scan/index.jsx @@ -4,17 +4,17 @@ import { Spinner } from '@wordpress/components'; import { useSelect, useDispatch } from '@wordpress/data'; import { __ } from '@wordpress/i18n'; import React, { useEffect } from 'react'; +import AdminPage from '../../components/admin-page'; +import AlertSVGIcon from '../../components/alert-icon'; +import ProgressBar from '../../components/progress-bar'; +import ScanFooter from '../../components/scan-footer'; +import SeventyFiveLayout from '../../components/seventy-five-layout'; +import Summary from '../../components/summary'; +import ThreatsList from '../../components/threats-list'; import useAnalyticsTracks from '../../hooks/use-analytics-tracks'; import { OnboardingContext } from '../../hooks/use-onboarding'; import useProtectData from '../../hooks/use-protect-data'; import { STORE_ID } from '../../state/store'; -import AdminPage from '../admin-page'; -import AlertSVGIcon from '../alert-icon'; -import ProgressBar from '../progress-bar'; -import ScanFooter from '../scan-footer'; -import SeventyFiveLayout from '../seventy-five-layout'; -import Summary from '../summary'; -import ThreatsList from '../threats-list'; import inProgressImage from './in-progress.png'; import onboardingSteps from './onboarding-steps'; import styles from './styles.module.scss'; diff --git a/projects/plugins/protect/src/js/components/scan-page/onboarding-steps.jsx b/projects/plugins/protect/src/js/routes/scan/onboarding-steps.jsx similarity index 100% rename from projects/plugins/protect/src/js/components/scan-page/onboarding-steps.jsx rename to projects/plugins/protect/src/js/routes/scan/onboarding-steps.jsx diff --git a/projects/plugins/protect/src/js/components/scan-page/styles.module.scss b/projects/plugins/protect/src/js/routes/scan/styles.module.scss similarity index 100% rename from projects/plugins/protect/src/js/components/scan-page/styles.module.scss rename to projects/plugins/protect/src/js/routes/scan/styles.module.scss diff --git a/projects/plugins/protect/src/js/components/scan-page/use-credentials.js b/projects/plugins/protect/src/js/routes/scan/use-credentials.js similarity index 100% rename from projects/plugins/protect/src/js/components/scan-page/use-credentials.js rename to projects/plugins/protect/src/js/routes/scan/use-credentials.js diff --git a/projects/plugins/protect/src/js/components/scan-page/use-status-polling.js b/projects/plugins/protect/src/js/routes/scan/use-status-polling.js similarity index 100% rename from projects/plugins/protect/src/js/components/scan-page/use-status-polling.js rename to projects/plugins/protect/src/js/routes/scan/use-status-polling.js From 7e7d826f637a8c5981901756d092b1df40c73dc6 Mon Sep 17 00:00:00 2001 From: Calypso Bot Date: Sun, 7 Jul 2024 17:05:32 -0500 Subject: [PATCH 041/254] Update Instant Search Dependency Updates (#38133) Co-authored-by: Renovate Bot --- pnpm-lock.yaml | 55 +++++++++---------- ...renovate-instant-search-dependency-updates | 4 ++ projects/packages/search/package.json | 4 +- ...renovate-instant-search-dependency-updates | 4 ++ projects/packages/wordads/package.json | 4 +- 5 files changed, 37 insertions(+), 34 deletions(-) create mode 100644 projects/packages/search/changelog/renovate-instant-search-dependency-updates create mode 100644 projects/packages/wordads/changelog/renovate-instant-search-dependency-updates diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 78b8d87af187e..d29e04a458d28 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2107,7 +2107,7 @@ importers: version: 1.0.0 '@preact/signals': specifier: ^1.2.2 - version: 1.2.3(preact@10.22.0) + version: 1.2.3(preact@10.22.1) '@sentry/browser': specifier: 7.80.1 version: 7.80.1 @@ -2143,7 +2143,7 @@ importers: version: 2.1.1 preact: specifier: ^10.13.1 - version: 10.22.0 + version: 10.22.1 wpcom-proxy-request: specifier: ^7.0.3 version: 7.0.5 @@ -2543,8 +2543,8 @@ importers: specifier: 4.0.0 version: 4.0.0 preact: - specifier: 10.12.1 - version: 10.12.1 + specifier: 10.22.1 + version: 10.22.1 prop-types: specifier: 15.7.2 version: 15.7.2 @@ -2607,8 +2607,8 @@ importers: specifier: 10.1.0 version: 10.1.0 '@testing-library/preact': - specifier: 3.2.3 - version: 3.2.3(preact@10.12.1) + specifier: 3.2.4 + version: 3.2.4(preact@10.22.1) '@testing-library/react': specifier: 15.0.7 version: 15.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -2906,8 +2906,8 @@ importers: specifier: 4.0.0 version: 4.0.0 preact: - specifier: 10.12.1 - version: 10.12.1 + specifier: 10.22.1 + version: 10.22.1 prop-types: specifier: 15.7.2 version: 15.7.2 @@ -2964,8 +2964,8 @@ importers: specifier: 10.1.0 version: 10.1.0 '@testing-library/preact': - specifier: 3.2.3 - version: 3.2.3(preact@10.12.1) + specifier: 3.2.4 + version: 3.2.4(preact@10.22.1) '@testing-library/react': specifier: 15.0.7 version: 15.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -7148,8 +7148,8 @@ packages: vitest: optional: true - '@testing-library/preact@3.2.3': - resolution: {integrity: sha512-y6Kklp1XK3f1X2fWCbujmJyzkf+1BgLYXNgAx21j9+D4CoqMTz5qC4SQufb1L6q/jxLGACzrQ90ewVOTBvHOfg==} + '@testing-library/preact@3.2.4': + resolution: {integrity: sha512-F+kJ243LP6VmEK1M809unzTE/ijg+bsMNuiRN0JEDIJBELKKDNhdgC/WrUSZ7klwJvtlO3wQZ9ix+jhObG07Fg==} engines: {node: '>= 12'} peerDependencies: preact: '>=10 || ^10.0.0-alpha.0 || ^10.0.0-beta.0' @@ -12428,11 +12428,8 @@ packages: potpack@1.0.2: resolution: {integrity: sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==} - preact@10.12.1: - resolution: {integrity: sha512-l8386ixSsBdbreOAkqtrwqHwdvR35ID8c3rKPa8lCWuO86dBi32QWHV4vfsZK1utLLFMvw+Z5Ad4XLkZzchscg==} - - preact@10.22.0: - resolution: {integrity: sha512-RRurnSjJPj4rp5K6XoP45Ui33ncb7e4H7WiOHVpjbkvqvA3U+N8Z6Qbo0AE6leGYBV66n8EhEaFixvIu3SkxFw==} + preact@10.22.1: + resolution: {integrity: sha512-jRYbDDgMpIb5LHq3hkI0bbl+l/TQ9UnkdQ0ww+lp+4MMOdqaUYdFc5qeyP+IV8FAd/2Em7drVPeKdQxsiWCf/A==} prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} @@ -16217,10 +16214,10 @@ snapshots: '@preact/signals-core@1.6.0': {} - '@preact/signals@1.2.3(preact@10.22.0)': + '@preact/signals@1.2.3(preact@10.22.1)': dependencies: '@preact/signals-core': 1.6.0 - preact: 10.22.0 + preact: 10.22.1 '@puppeteer/browsers@2.2.2': dependencies: @@ -18120,10 +18117,10 @@ snapshots: optionalDependencies: jest: 29.7.0 - '@testing-library/preact@3.2.3(preact@10.12.1)': + '@testing-library/preact@3.2.4(preact@10.22.1)': dependencies: '@testing-library/dom': 8.20.1 - preact: 10.12.1 + preact: 10.22.1 '@testing-library/react@15.0.7(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -19699,9 +19696,9 @@ snapshots: '@wordpress/interactivity@6.2.0': dependencies: - '@preact/signals': 1.2.3(preact@10.22.0) - deepsignal: 1.5.0(@preact/signals@1.2.3(preact@10.22.0))(preact@10.22.0) - preact: 10.22.0 + '@preact/signals': 1.2.3(preact@10.22.1) + deepsignal: 1.5.0(@preact/signals@1.2.3(preact@10.22.1))(preact@10.22.1) + preact: 10.22.1 transitivePeerDependencies: - '@preact/signals-core' - '@preact/signals-react' @@ -21493,10 +21490,10 @@ snapshots: deepmerge@4.3.1: {} - deepsignal@1.5.0(@preact/signals@1.2.3(preact@10.22.0))(preact@10.22.0): + deepsignal@1.5.0(@preact/signals@1.2.3(preact@10.22.1))(preact@10.22.1): optionalDependencies: - '@preact/signals': 1.2.3(preact@10.22.0) - preact: 10.22.0 + '@preact/signals': 1.2.3(preact@10.22.1) + preact: 10.22.1 default-browser-id@3.0.0: dependencies: @@ -25473,9 +25470,7 @@ snapshots: potpack@1.0.2: {} - preact@10.12.1: {} - - preact@10.22.0: {} + preact@10.22.1: {} prelude-ls@1.2.1: {} diff --git a/projects/packages/search/changelog/renovate-instant-search-dependency-updates b/projects/packages/search/changelog/renovate-instant-search-dependency-updates new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/packages/search/changelog/renovate-instant-search-dependency-updates @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/packages/search/package.json b/projects/packages/search/package.json index 8ca4851768140..e3a9171a71a8e 100644 --- a/projects/packages/search/package.json +++ b/projects/packages/search/package.json @@ -50,7 +50,7 @@ "fast-json-stable-stringify": "2.1.0", "lodash": "4.17.21", "photon": "4.0.0", - "preact": "10.12.1", + "preact": "10.22.1", "prop-types": "15.7.2", "q-flat": "1.0.7", "qss": "2.0.3", @@ -73,7 +73,7 @@ "@csstools/postcss-global-data": "2.1.1", "@size-limit/preset-app": "11.1.4", "@testing-library/dom": "10.1.0", - "@testing-library/preact": "3.2.3", + "@testing-library/preact": "3.2.4", "@testing-library/react": "15.0.7", "@wordpress/babel-plugin-import-jsx-pragma": "5.2.0", "@wordpress/browserslist-config": "6.2.0", diff --git a/projects/packages/wordads/changelog/renovate-instant-search-dependency-updates b/projects/packages/wordads/changelog/renovate-instant-search-dependency-updates new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/packages/wordads/changelog/renovate-instant-search-dependency-updates @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/packages/wordads/package.json b/projects/packages/wordads/package.json index bef31632f9f30..6655d294a217d 100644 --- a/projects/packages/wordads/package.json +++ b/projects/packages/wordads/package.json @@ -46,7 +46,7 @@ "fast-json-stable-stringify": "2.1.0", "lodash": "4.17.21", "photon": "4.0.0", - "preact": "10.12.1", + "preact": "10.22.1", "prop-types": "15.7.2", "q-flat": "1.0.7", "qss": "2.0.3", @@ -67,7 +67,7 @@ "@babel/preset-typescript": "7.24.7", "@babel/runtime": "7.24.7", "@testing-library/dom": "10.1.0", - "@testing-library/preact": "3.2.3", + "@testing-library/preact": "3.2.4", "@testing-library/react": "15.0.7", "@wordpress/babel-plugin-import-jsx-pragma": "5.2.0", "@wordpress/browserslist-config": "6.2.0", From 2024b54e558aa46ea90c5efcf8e6a1a9a4c408fb Mon Sep 17 00:00:00 2001 From: Xavier Lozano Carreras <8511199+xavier-lc@users.noreply.github.com> Date: Mon, 8 Jul 2024 07:07:41 +0200 Subject: [PATCH 042/254] Untangling Cleanup: Clean up `wpcom_is_nav_redesign_enabled()` flag (#38197) * Rename function * Rename function calls * Update tests * changelog * tools/fixup-project-versions.sh * Move `uses_wp_admin_interface` to new feature * Revert "Move `uses_wp_admin_interface` to new feature" This reverts commit 0d6af43c621f893a3f6eb77473f2e2e472f2a1ae. * Use `get_option` approach * Remove outdated changelogs * changelog * Update tests * Update Jetpack_Plugin_Compatibility * fixup project versions * Revert wpcomsh function deletion * Remove more 'nav_redesign' references --------- Co-authored-by: Xavier Lozano Carreras Co-authored-by: Ashar Fuadi --- .../update-rename-wpcom_is_nav_redesign_enabled | 4 ++++ projects/packages/blaze/composer.json | 2 +- projects/packages/blaze/package.json | 2 +- projects/packages/blaze/src/class-blaze.php | 5 ++--- projects/packages/blaze/src/class-dashboard.php | 2 +- .../update-rename-wpcom_is_nav_redesign_enabled | 4 ++++ .../src/class-jetpack-mu-wpcom.php | 4 ++-- .../admin-color-schemes/admin-color-schemes.php | 2 +- .../block-theme-previews.php | 2 +- .../sync-calypso-to-wp-admin.php | 2 +- .../wpcom-admin-interface.php | 4 ++-- .../features/wpcom-site-menu/wpcom-site-menu.php | 16 ++++++++-------- .../update-rename-wpcom_is_nav_redesign_enabled | 4 ++++ projects/packages/masterbar/composer.json | 2 +- projects/packages/masterbar/package.json | 2 +- .../class-admin-color-schemes.php | 2 +- projects/packages/masterbar/src/class-main.php | 4 ++-- .../tests/php/test-class-admin-color-schemes.php | 3 +-- .../masterbar/tests/php/test-class-main.php | 10 ---------- ...ass-wpcom-rest-api-v2-endpoint-admin-menu.php | 3 +-- ...update-rename-wpcom_is_nav_redesign_enabled#2 | 5 +++++ projects/plugins/jetpack/composer.lock | 8 ++++---- .../update-rename-wpcom_is_nav_redesign_enabled | 5 +++++ projects/plugins/mu-wpcom-plugin/composer.lock | 8 ++++---- ...update-rename-wpcom_is_nav_redesign_enabled#2 | 5 +++++ .../class-jetpack-plugin-compatibility.php | 7 ++++++- projects/plugins/wpcomsh/composer.lock | 8 ++++---- .../plugins/wpcomsh/feature-plugins/blaze.php | 2 +- .../class-theme-homepage-switcher.php | 2 +- .../plugins/wpcomsh/feature-plugins/hooks.php | 2 +- .../wpcomsh/feature-plugins/masterbar.php | 14 +++++++------- 31 files changed, 82 insertions(+), 63 deletions(-) create mode 100644 projects/packages/blaze/changelog/update-rename-wpcom_is_nav_redesign_enabled create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/update-rename-wpcom_is_nav_redesign_enabled create mode 100644 projects/packages/masterbar/changelog/update-rename-wpcom_is_nav_redesign_enabled create mode 100644 projects/plugins/jetpack/changelog/update-rename-wpcom_is_nav_redesign_enabled#2 create mode 100644 projects/plugins/mu-wpcom-plugin/changelog/update-rename-wpcom_is_nav_redesign_enabled create mode 100644 projects/plugins/wpcomsh/changelog/update-rename-wpcom_is_nav_redesign_enabled#2 diff --git a/projects/packages/blaze/changelog/update-rename-wpcom_is_nav_redesign_enabled b/projects/packages/blaze/changelog/update-rename-wpcom_is_nav_redesign_enabled new file mode 100644 index 0000000000000..26492a38b2454 --- /dev/null +++ b/projects/packages/blaze/changelog/update-rename-wpcom_is_nav_redesign_enabled @@ -0,0 +1,4 @@ +Significance: minor +Type: changed + +As we've launched untangling & nav redesign, the wpcom_is_nav_redesign_enabled() function name is not relevant anymore and can be confusing for future developers, so we replace it with the equivalent get_option call. diff --git a/projects/packages/blaze/composer.json b/projects/packages/blaze/composer.json index 281ecab1ecc07..7701f03b155e4 100644 --- a/projects/packages/blaze/composer.json +++ b/projects/packages/blaze/composer.json @@ -64,7 +64,7 @@ "link-template": "https://github.com/automattic/jetpack-blaze/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.21.x-dev" + "dev-trunk": "0.22.x-dev" }, "textdomain": "jetpack-blaze", "version-constants": { diff --git a/projects/packages/blaze/package.json b/projects/packages/blaze/package.json index 31f0cda2a2e3f..938f64a32cda3 100644 --- a/projects/packages/blaze/package.json +++ b/projects/packages/blaze/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-blaze", - "version": "0.21.11-alpha", + "version": "0.22.0-alpha", "description": "Attract high-quality traffic to your site using Blaze. Using this service, you can advertise a post or page on some of the millions of pages across WordPress.com and Tumblr from just $5 per day.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/blaze/#readme", "bugs": { diff --git a/projects/packages/blaze/src/class-blaze.php b/projects/packages/blaze/src/class-blaze.php index d19dc84492a9a..c81836fd62e09 100644 --- a/projects/packages/blaze/src/class-blaze.php +++ b/projects/packages/blaze/src/class-blaze.php @@ -74,11 +74,10 @@ public static function add_post_links_actions() { * @return bool */ public static function is_dashboard_enabled() { - $is_dashboard_enabled = true; - $wpcom_is_nav_redesign_enabled = function_exists( 'wpcom_is_nav_redesign_enabled' ) && wpcom_is_nav_redesign_enabled(); + $is_dashboard_enabled = true; // On WordPress.com sites, the dashboard is not needed if the nav redesign is not enabled. - if ( ! $wpcom_is_nav_redesign_enabled && ( new Host() )->is_wpcom_platform() ) { + if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' && ( new Host() )->is_wpcom_platform() ) { $is_dashboard_enabled = false; } diff --git a/projects/packages/blaze/src/class-dashboard.php b/projects/packages/blaze/src/class-dashboard.php index cf716ae9893a7..64ef0d05c5c01 100644 --- a/projects/packages/blaze/src/class-dashboard.php +++ b/projects/packages/blaze/src/class-dashboard.php @@ -21,7 +21,7 @@ class Dashboard { * * @var string */ - const PACKAGE_VERSION = '0.21.11-alpha'; + const PACKAGE_VERSION = '0.22.0-alpha'; /** * List of dependencies needed to render the dashboard in wp-admin. diff --git a/projects/packages/jetpack-mu-wpcom/changelog/update-rename-wpcom_is_nav_redesign_enabled b/projects/packages/jetpack-mu-wpcom/changelog/update-rename-wpcom_is_nav_redesign_enabled new file mode 100644 index 0000000000000..26492a38b2454 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/update-rename-wpcom_is_nav_redesign_enabled @@ -0,0 +1,4 @@ +Significance: minor +Type: changed + +As we've launched untangling & nav redesign, the wpcom_is_nav_redesign_enabled() function name is not relevant anymore and can be confusing for future developers, so we replace it with the equivalent get_option call. diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index fefa58c7fcaa2..0cf5982b07588 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -316,7 +316,7 @@ public static function load_wpcom_command_palette() { * Load Odyssey Stats in Simple sites. */ public static function load_wpcom_simple_odyssey_stats() { - if ( function_exists( 'wpcom_is_nav_redesign_enabled' ) && wpcom_is_nav_redesign_enabled() ) { + if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { require_once __DIR__ . '/features/wpcom-simple-odyssey-stats/wpcom-simple-odyssey-stats.php'; } } @@ -337,7 +337,7 @@ public static function load_wpcom_site_management_widget() { if ( is_agency_managed_site() ) { return; } - if ( function_exists( 'wpcom_is_nav_redesign_enabled' ) && wpcom_is_nav_redesign_enabled() ) { + if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { require_once __DIR__ . '/features/wpcom-site-management-widget/class-wpcom-site-management-widget.php'; } } diff --git a/projects/packages/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php b/projects/packages/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php index 93f3950ceceb2..2f4e6849bdf77 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/admin-color-schemes/admin-color-schemes.php @@ -11,6 +11,6 @@ // @TODO Ideally we should remove this feature entirely and update Jetpack_Mu_Wpcom::load_features to initialize // Masterbar for both WoA and Simple sites. // This would require removing the relevant Masterbar code on WPCOM and rely on the package only. -if ( function_exists( 'wpcom_is_nav_redesign_enabled' ) && wpcom_is_nav_redesign_enabled() && ( new Host() )->is_wpcom_simple() ) { +if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' && ( new Host() )->is_wpcom_simple() ) { new Admin_Color_Schemes(); } diff --git a/projects/packages/jetpack-mu-wpcom/src/features/block-theme-previews/block-theme-previews.php b/projects/packages/jetpack-mu-wpcom/src/features/block-theme-previews/block-theme-previews.php index 55e5ea99fa475..02676c9c40b75 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/block-theme-previews/block-theme-previews.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/block-theme-previews/block-theme-previews.php @@ -14,7 +14,7 @@ * @since 12.4 */ -if ( ! function_exists( 'wpcom_is_nav_redesign_enabled' ) || ! wpcom_is_nav_redesign_enabled() ) { +if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { add_filter( 'option_show_on_front', function () { diff --git a/projects/packages/jetpack-mu-wpcom/src/features/calypso-locale-sync/sync-calypso-to-wp-admin.php b/projects/packages/jetpack-mu-wpcom/src/features/calypso-locale-sync/sync-calypso-to-wp-admin.php index 8a0b875b1fe36..aa879705d9f45 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/calypso-locale-sync/sync-calypso-to-wp-admin.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/calypso-locale-sync/sync-calypso-to-wp-admin.php @@ -44,7 +44,7 @@ function sync_calypso_locale_to_wp_admin() { } } -if ( function_exists( 'wpcom_is_nav_redesign_enabled' ) && wpcom_is_nav_redesign_enabled() ) { +if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { // Not for POST requests because this syncing needs to be avoided when the locale is updated via /wp-admin/profile.php if ( isset( $_SERVER['REQUEST_METHOD'] ) && $_SERVER['REQUEST_METHOD'] !== 'POST' ) { add_filter( 'admin_init', 'sync_calypso_locale_to_wp_admin' ); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php index 9b26590117b76..20470c56765c9 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-interface/wpcom-admin-interface.php @@ -39,7 +39,7 @@ function wpcom_admin_interface_display() { // The option should always be available on atomic sites. ! ( defined( 'IS_WPCOM' ) && IS_WPCOM ) || // The option will be shown if the simple site has already changed to Classic which means they should have already passed the experiment gate. - ( function_exists( 'wpcom_is_nav_redesign_enabled' ) && wpcom_is_nav_redesign_enabled() ) ) { + ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) ) { add_action( 'admin_init', 'wpcomsh_wpcom_admin_interface_settings_field' ); } @@ -130,7 +130,7 @@ function wpcom_has_admin_interface_changed() { * @return bool */ function wpcom_should_show_classic_tour() { - if ( ! function_exists( 'wpcom_is_nav_redesign_enabled' ) || ! wpcom_is_nav_redesign_enabled() ) { + if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { return false; } diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php index 4b9e340f700a0..dd6f7f5d25def 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php @@ -50,7 +50,7 @@ function current_user_has_wpcom_account() { * This works because the top level menu item links to wherever the submenu item links to. */ function wpcom_add_wpcom_menu_item() { - if ( ! function_exists( 'wpcom_is_nav_redesign_enabled' ) || ! wpcom_is_nav_redesign_enabled() ) { + if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { return; } if ( is_agency_managed_site() ) { @@ -173,7 +173,7 @@ function wpcom_add_wpcom_menu_item() { * @param WP_Admin_Bar $wp_admin_bar - The WP_Admin_Bar instance. */ function add_all_sites_menu_to_masterbar( $wp_admin_bar ) { - if ( ! function_exists( 'wpcom_is_nav_redesign_enabled' ) || ! wpcom_is_nav_redesign_enabled() ) { + if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { return; } if ( is_agency_managed_site() ) { @@ -212,7 +212,7 @@ function add_all_sites_menu_to_masterbar( $wp_admin_bar ) { * Always hide the Core's default My Sites menu on WP.com */ function hide_my_sites_menu() { - if ( ! function_exists( 'wpcom_is_nav_redesign_enabled' ) || ! wpcom_is_nav_redesign_enabled() ) { + if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { return; } ?> @@ -236,7 +236,7 @@ function hide_my_sites_menu() { * @return void */ function replace_wp_logo_menu_on_masterbar( $wp_admin_bar ) { - if ( ! function_exists( 'wpcom_is_nav_redesign_enabled' ) || ! wpcom_is_nav_redesign_enabled() ) { + if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { return; } @@ -263,7 +263,7 @@ function replace_wp_logo_menu_on_masterbar( $wp_admin_bar ) { * Enqueue scripts and styles needed by the WP.com menu. */ function wpcom_site_menu_enqueue_scripts() { - if ( ! function_exists( 'wpcom_is_nav_redesign_enabled' ) || ! wpcom_is_nav_redesign_enabled() ) { + if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { return; } @@ -522,7 +522,7 @@ function wpcom_add_plugins_menu() { global $menu; $is_simple_site = defined( 'IS_WPCOM' ) && IS_WPCOM; $is_atomic_site = ! $is_simple_site; - $is_nav_redesign_enabled = function_exists( 'wpcom_is_nav_redesign_enabled' ) && wpcom_is_nav_redesign_enabled(); + $uses_wp_admin_interface = get_option( 'wpcom_admin_interface' ) === 'wp-admin'; $is_agency_managed_site = is_agency_managed_site(); if ( $is_simple_site ) { @@ -557,13 +557,13 @@ function wpcom_add_plugins_menu() { 'wpcom_plugins_display_marketplace' ); - if ( ! $is_nav_redesign_enabled ) { + if ( ! $uses_wp_admin_interface ) { wpcom_hide_submenu_page( 'plugins.php', 'wpcom-install-plugin' ); } } } - if ( ! $is_nav_redesign_enabled || $is_agency_managed_site ) { + if ( ! $uses_wp_admin_interface || $is_agency_managed_site ) { return; } diff --git a/projects/packages/masterbar/changelog/update-rename-wpcom_is_nav_redesign_enabled b/projects/packages/masterbar/changelog/update-rename-wpcom_is_nav_redesign_enabled new file mode 100644 index 0000000000000..26492a38b2454 --- /dev/null +++ b/projects/packages/masterbar/changelog/update-rename-wpcom_is_nav_redesign_enabled @@ -0,0 +1,4 @@ +Significance: minor +Type: changed + +As we've launched untangling & nav redesign, the wpcom_is_nav_redesign_enabled() function name is not relevant anymore and can be confusing for future developers, so we replace it with the equivalent get_option call. diff --git a/projects/packages/masterbar/composer.json b/projects/packages/masterbar/composer.json index 3fe6d0801a385..1fe51f0f329bd 100644 --- a/projects/packages/masterbar/composer.json +++ b/projects/packages/masterbar/composer.json @@ -63,7 +63,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.2.x-dev" + "dev-trunk": "0.3.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-masterbar/compare/v${old}...v${new}" diff --git a/projects/packages/masterbar/package.json b/projects/packages/masterbar/package.json index 6d4bd509082b9..097f61f282240 100644 --- a/projects/packages/masterbar/package.json +++ b/projects/packages/masterbar/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-masterbar", - "version": "0.2.6-alpha", + "version": "0.3.0-alpha", "description": "The WordPress.com Toolbar feature replaces the default admin bar and offers quick links to the Reader, all your sites, your WordPress.com profile, and notifications.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/masterbar/#readme", "bugs": { diff --git a/projects/packages/masterbar/src/admin-color-schemes/class-admin-color-schemes.php b/projects/packages/masterbar/src/admin-color-schemes/class-admin-color-schemes.php index 08720f0817bb7..5e3edd926a915 100644 --- a/projects/packages/masterbar/src/admin-color-schemes/class-admin-color-schemes.php +++ b/projects/packages/masterbar/src/admin-color-schemes/class-admin-color-schemes.php @@ -32,7 +32,7 @@ public function __construct() { add_action( 'rest_api_init', array( $this, 'register_admin_color_meta' ) ); } - if ( function_exists( 'wpcom_is_nav_redesign_enabled' ) && wpcom_is_nav_redesign_enabled() ) { // Classic sites. + if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { // Classic sites. add_filter( 'css_do_concat', array( $this, 'disable_css_concat_for_color_schemes' ), 10, 2 ); add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_color_scheme_for_sidebar_notice' ) ); } else { // Default and self-hosted sites. diff --git a/projects/packages/masterbar/src/class-main.php b/projects/packages/masterbar/src/class-main.php index edde29e80ff5b..9ab661f9b71e8 100644 --- a/projects/packages/masterbar/src/class-main.php +++ b/projects/packages/masterbar/src/class-main.php @@ -14,7 +14,7 @@ */ class Main { - const PACKAGE_VERSION = '0.2.6-alpha'; + const PACKAGE_VERSION = '0.3.0-alpha'; /** * Initializer. @@ -29,7 +29,7 @@ public static function init() { new Admin_Color_Schemes(); - if ( function_exists( 'wpcom_is_nav_redesign_enabled' ) && wpcom_is_nav_redesign_enabled() ) { + if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { return; } diff --git a/projects/packages/masterbar/tests/php/test-class-admin-color-schemes.php b/projects/packages/masterbar/tests/php/test-class-admin-color-schemes.php index 0c2ed070956fe..3e42007942ba7 100644 --- a/projects/packages/masterbar/tests/php/test-class-admin-color-schemes.php +++ b/projects/packages/masterbar/tests/php/test-class-admin-color-schemes.php @@ -6,7 +6,6 @@ */ namespace Automattic\Jetpack\Masterbar; -use Brain\Monkey\Functions; use WorDBless\BaseTestCase; use WP_Http; use WP_REST_Request; @@ -53,7 +52,7 @@ public function set_up() { ); if ( 'test_enqueue_core_color_schemes_overrides_for_classic_sites' === $this->getName() ) { - Functions\when( 'wpcom_is_nav_redesign_enabled' )->justReturn( true ); + update_option( 'wpcom_admin_interface', 'wp-admin' ); } new Admin_Color_Schemes(); diff --git a/projects/packages/masterbar/tests/php/test-class-main.php b/projects/packages/masterbar/tests/php/test-class-main.php index 5d8fb0db21e5d..f1f687951c948 100644 --- a/projects/packages/masterbar/tests/php/test-class-main.php +++ b/projects/packages/masterbar/tests/php/test-class-main.php @@ -8,7 +8,6 @@ namespace Automattic\Jetpack\Masterbar; use Automattic\Jetpack\Status\Cache; -use Brain\Monkey\Functions; use WorDBless\BaseTestCase; /** @@ -17,15 +16,6 @@ * @covers Automattic\Jetpack\Masterbar\Main */ class Test_Main extends BaseTestCase { - /** - * Test setup. - * - * @before - */ - public function set_up() { - Functions\when( 'wpcom_is_nav_redesign_enabled' )->justReturn( false ); - } - /** * Returning the environment into its initial state. * diff --git a/projects/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-admin-menu.php b/projects/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-admin-menu.php index 95c4391d34de8..6064996bdbab5 100644 --- a/projects/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-admin-menu.php +++ b/projects/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-admin-menu.php @@ -85,8 +85,7 @@ public function get_item_permissions_check( $request ) { // phpcs:ignore Generic * @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure. */ public function get_item( $request ) { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter, VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable - $should_use_nav_redesign = function_exists( 'wpcom_is_nav_redesign_enabled' ) && wpcom_is_nav_redesign_enabled(); - if ( ! ( new Host() )->is_wpcom_platform() && ! $should_use_nav_redesign ) { + if ( ! ( new Host() )->is_wpcom_platform() && get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { require_once JETPACK__PLUGIN_DIR . 'jetpack_vendor/automattic/jetpack-masterbar/src/admin-menu/load.php'; } diff --git a/projects/plugins/jetpack/changelog/update-rename-wpcom_is_nav_redesign_enabled#2 b/projects/plugins/jetpack/changelog/update-rename-wpcom_is_nav_redesign_enabled#2 new file mode 100644 index 0000000000000..a1c1831fa1ef7 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-rename-wpcom_is_nav_redesign_enabled#2 @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated composer.lock. + + diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index 1675efb892412..a7b934a27354a 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -398,7 +398,7 @@ "dist": { "type": "path", "url": "../../packages/blaze", - "reference": "792f0dabc3e885b741dc4313f953fe2f4c29e978" + "reference": "2c21c40f16815e3a4db4a846577544ad9ada1660" }, "require": { "automattic/jetpack-assets": "@dev", @@ -426,7 +426,7 @@ "link-template": "https://github.com/automattic/jetpack-blaze/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.21.x-dev" + "dev-trunk": "0.22.x-dev" }, "textdomain": "jetpack-blaze", "version-constants": { @@ -1723,7 +1723,7 @@ "dist": { "type": "path", "url": "../../packages/masterbar", - "reference": "649e2a37061b3ccb7242a48423b1497e348a30de" + "reference": "6425113a40fc707923278fa64aeb59aac96f1c3e" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1751,7 +1751,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.2.x-dev" + "dev-trunk": "0.3.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-masterbar/compare/v${old}...v${new}" diff --git a/projects/plugins/mu-wpcom-plugin/changelog/update-rename-wpcom_is_nav_redesign_enabled b/projects/plugins/mu-wpcom-plugin/changelog/update-rename-wpcom_is_nav_redesign_enabled new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/mu-wpcom-plugin/changelog/update-rename-wpcom_is_nav_redesign_enabled @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/mu-wpcom-plugin/composer.lock b/projects/plugins/mu-wpcom-plugin/composer.lock index 58269cae13146..35995a3ee4437 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.lock +++ b/projects/plugins/mu-wpcom-plugin/composer.lock @@ -190,7 +190,7 @@ "dist": { "type": "path", "url": "../../packages/blaze", - "reference": "792f0dabc3e885b741dc4313f953fe2f4c29e978" + "reference": "2c21c40f16815e3a4db4a846577544ad9ada1660" }, "require": { "automattic/jetpack-assets": "@dev", @@ -218,7 +218,7 @@ "link-template": "https://github.com/automattic/jetpack-blaze/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.21.x-dev" + "dev-trunk": "0.22.x-dev" }, "textdomain": "jetpack-blaze", "version-constants": { @@ -858,7 +858,7 @@ "dist": { "type": "path", "url": "../../packages/masterbar", - "reference": "649e2a37061b3ccb7242a48423b1497e348a30de" + "reference": "6425113a40fc707923278fa64aeb59aac96f1c3e" }, "require": { "automattic/jetpack-assets": "@dev", @@ -886,7 +886,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.2.x-dev" + "dev-trunk": "0.3.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-masterbar/compare/v${old}...v${new}" diff --git a/projects/plugins/wpcomsh/changelog/update-rename-wpcom_is_nav_redesign_enabled#2 b/projects/plugins/wpcomsh/changelog/update-rename-wpcom_is_nav_redesign_enabled#2 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/update-rename-wpcom_is_nav_redesign_enabled#2 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/wpcomsh/class-jetpack-plugin-compatibility.php b/projects/plugins/wpcomsh/class-jetpack-plugin-compatibility.php index 0179dce458ed9..7791ff36d4420 100644 --- a/projects/plugins/wpcomsh/class-jetpack-plugin-compatibility.php +++ b/projects/plugins/wpcomsh/class-jetpack-plugin-compatibility.php @@ -199,7 +199,12 @@ protected function __construct() { // Print any notices about plugin deactivation. add_action( 'admin_notices', array( $this, 'incompatible_plugin_notices' ) ); // Disable My Jetpack page. - add_filter( 'jetpack_my_jetpack_should_initialize', 'wpcom_is_nav_redesign_enabled' ); + add_filter( + 'jetpack_my_jetpack_should_initialize', + function () { + return get_option( 'wpcom_admin_interface' ) === 'wp-admin'; + } + ); } /** diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index 2793db1d51a74..cbf788d39324b 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -255,7 +255,7 @@ "dist": { "type": "path", "url": "../../packages/blaze", - "reference": "792f0dabc3e885b741dc4313f953fe2f4c29e978" + "reference": "2c21c40f16815e3a4db4a846577544ad9ada1660" }, "require": { "automattic/jetpack-assets": "@dev", @@ -283,7 +283,7 @@ "link-template": "https://github.com/automattic/jetpack-blaze/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.21.x-dev" + "dev-trunk": "0.22.x-dev" }, "textdomain": "jetpack-blaze", "version-constants": { @@ -995,7 +995,7 @@ "dist": { "type": "path", "url": "../../packages/masterbar", - "reference": "649e2a37061b3ccb7242a48423b1497e348a30de" + "reference": "6425113a40fc707923278fa64aeb59aac96f1c3e" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1023,7 +1023,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.2.x-dev" + "dev-trunk": "0.3.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-masterbar/compare/v${old}...v${new}" diff --git a/projects/plugins/wpcomsh/feature-plugins/blaze.php b/projects/plugins/wpcomsh/feature-plugins/blaze.php index 43b5cc514f647..de900297a407e 100644 --- a/projects/plugins/wpcomsh/feature-plugins/blaze.php +++ b/projects/plugins/wpcomsh/feature-plugins/blaze.php @@ -46,7 +46,7 @@ function wpcomsh_force_activate_blaze_module() { * @return array */ function wpcomsh_rm_blaze_module_list( $items ) { - if ( isset( $items['blaze'] ) && ! wpcom_is_nav_redesign_enabled() ) { + if ( isset( $items['blaze'] ) && get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { unset( $items['blaze'] ); } return $items; diff --git a/projects/plugins/wpcomsh/feature-plugins/class-theme-homepage-switcher.php b/projects/plugins/wpcomsh/feature-plugins/class-theme-homepage-switcher.php index dfe225de5f663..d9324c1c72bdc 100644 --- a/projects/plugins/wpcomsh/feature-plugins/class-theme-homepage-switcher.php +++ b/projects/plugins/wpcomsh/feature-plugins/class-theme-homepage-switcher.php @@ -41,7 +41,7 @@ public static function get_instance() { * Registers hook. */ public function register_hooks() { - if ( wpcom_is_nav_redesign_enabled() ) { + if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { return; } add_action( 'switch_theme', array( $this, 'switch_theme_homepage' ), 10, 3 ); diff --git a/projects/plugins/wpcomsh/feature-plugins/hooks.php b/projects/plugins/wpcomsh/feature-plugins/hooks.php index d3fe599a573cd..a8bb6037af984 100644 --- a/projects/plugins/wpcomsh/feature-plugins/hooks.php +++ b/projects/plugins/wpcomsh/feature-plugins/hooks.php @@ -340,7 +340,7 @@ function wpcomsh_maybe_remove_jetpack_dashboard_menu_item() { * For more context, see https://github.com/Automattic/dotcom-forge/issues/5824. */ function wpcomsh_remove_jetpack_manage_menu_item() { - if ( ! class_exists( 'Jetpack' ) || ! class_exists( 'Jetpack_Options' ) || ! wpcom_is_nav_redesign_enabled() ) { + if ( ! class_exists( 'Jetpack' ) || ! class_exists( 'Jetpack_Options' ) || get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { return; } $blog_id = Jetpack_Options::get_option( 'id' ); diff --git a/projects/plugins/wpcomsh/feature-plugins/masterbar.php b/projects/plugins/wpcomsh/feature-plugins/masterbar.php index 65bdfb1b6addb..242b49d60039e 100644 --- a/projects/plugins/wpcomsh/feature-plugins/masterbar.php +++ b/projects/plugins/wpcomsh/feature-plugins/masterbar.php @@ -14,7 +14,7 @@ * and if it is not already enabled. */ function wpcomsh_activate_masterbar_module() { - if ( ! defined( 'JETPACK__VERSION' ) || wpcom_is_nav_redesign_enabled() ) { + if ( ! defined( 'JETPACK__VERSION' ) || get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { return; } @@ -36,7 +36,7 @@ function wpcomsh_activate_masterbar_module() { * @return array */ function atomic_masterbar_filter_jetpack_modules( $modules ) { - if ( isset( $modules['masterbar'] ) && wpcom_is_nav_redesign_enabled() ) { + if ( isset( $modules['masterbar'] ) && get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { unset( $modules['masterbar'] ); } @@ -113,7 +113,7 @@ function wpcomsh_admin_color_scheme_picker_disabled() { **/ function wpcomsh_hide_color_schemes() { // Do nothing if the admin interface is wp-admin. - if ( wpcom_is_nav_redesign_enabled() ) { + if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { return false; } @@ -157,7 +157,7 @@ function wpcomsh_set_connected_user_data_as_user_options( $transient, $value ) { return; } - if ( isset( $value['color_scheme'] ) && ! wpcom_is_nav_redesign_enabled() ) { + if ( isset( $value['color_scheme'] ) && get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { update_user_option( get_current_user_id(), 'admin_color', $value['color_scheme'] ); } @@ -181,7 +181,7 @@ function wpcomsh_set_connected_user_data_as_user_options( $transient, $value ) { */ function wpcomsh_activate_nav_unification() { // Disable when in the redesigned nav. - if ( wpcom_is_nav_redesign_enabled() ) { + if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { return false; } @@ -289,7 +289,7 @@ function wpcomsh_update_plugin_link_destination( $url, $path ) { */ function wpcomsh_update_plugin_add_filter() { // If site is not connected or nav redesign is enabled, return early. - if ( ! class_exists( 'Automattic\Jetpack\Status' ) || wpcom_is_nav_redesign_enabled() ) { + if ( ! class_exists( 'Automattic\Jetpack\Status' ) || get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { return; } @@ -338,7 +338,7 @@ function wpcomsh_get_wpcom_admin_interface_option() { * from wp-admin going forward. */ function wpcomsh_unsync_color_schemes_on_save() { - if ( ! wpcom_is_nav_redesign_enabled() ) { + if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { return; } From e4b409b4e881bf2736cb38b897a365e48bab3068 Mon Sep 17 00:00:00 2001 From: Griffith Chen Date: Mon, 8 Jul 2024 13:24:17 +0800 Subject: [PATCH 043/254] MU WPCOM: Port tags-education feature from ETK (#38210) --- pnpm-lock.yaml | 3 ++ .../packages/jetpack-mu-wpcom/babel.config.js | 11 ++++- .../changelog/mu-wpcom-tags-education | 4 ++ .../packages/jetpack-mu-wpcom/package.json | 1 + .../src/class-jetpack-mu-wpcom.php | 1 + .../features/tags-education/tags-education.js | 34 +++++++++++++ .../tags-education/tags-education.php | 49 +++++++++++++++++++ .../jetpack-mu-wpcom/webpack.config.js | 29 ++++++----- 8 files changed, 119 insertions(+), 13 deletions(-) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-tags-education create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/tags-education/tags-education.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/tags-education/tags-education.php diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d29e04a458d28..8be2dff4d61fd 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2102,6 +2102,9 @@ importers: projects/packages/jetpack-mu-wpcom: dependencies: + '@automattic/jetpack-shared-extension-utils': + specifier: workspace:* + version: link:../../js-packages/shared-extension-utils '@automattic/typography': specifier: 1.0.0 version: 1.0.0 diff --git a/projects/packages/jetpack-mu-wpcom/babel.config.js b/projects/packages/jetpack-mu-wpcom/babel.config.js index d77edc1c2c411..0c6d7ea85a21a 100644 --- a/projects/packages/jetpack-mu-wpcom/babel.config.js +++ b/projects/packages/jetpack-mu-wpcom/babel.config.js @@ -1,3 +1,10 @@ -module.exports = { - presets: [ [ '@automattic/jetpack-webpack-config/babel/preset' ] ], +const config = { + presets: [ + [ + '@automattic/jetpack-webpack-config/babel/preset', + { pluginReplaceTextdomain: { textdomain: 'jetpack-mu-wpcom' } }, + ], + ], }; + +module.exports = config; diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-tags-education b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-tags-education new file mode 100644 index 0000000000000..323f96472a7e6 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-tags-education @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +MU WPCOM: Port tags-education feature from ETK. diff --git a/projects/packages/jetpack-mu-wpcom/package.json b/projects/packages/jetpack-mu-wpcom/package.json index e48b7da1d58ed..ebe0f100c1acd 100644 --- a/projects/packages/jetpack-mu-wpcom/package.json +++ b/projects/packages/jetpack-mu-wpcom/package.json @@ -45,6 +45,7 @@ "webpack-cli": "4.9.1" }, "dependencies": { + "@automattic/jetpack-shared-extension-utils": "workspace:*", "@automattic/typography": "1.0.0", "@preact/signals": "^1.2.2", "@sentry/browser": "7.80.1", diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 0cf5982b07588..2e5cda2148482 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -102,6 +102,7 @@ public static function load_features() { require_once __DIR__ . '/features/override-preview-button-url/override-preview-button-url.php'; require_once __DIR__ . '/features/paragraph-block-placeholder/paragraph-block-placeholder.php'; require_once __DIR__ . '/features/site-editor-dashboard-link/site-editor-dashboard-link.php'; + require_once __DIR__ . '/features/tags-education/tags-education.php'; require_once __DIR__ . '/features/wpcom-block-editor/class-jetpack-wpcom-block-editor.php'; require_once __DIR__ . '/features/wpcom-block-editor/functions.editor-type.php'; require_once __DIR__ . '/features/wpcom-site-menu/wpcom-site-menu.php'; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/tags-education/tags-education.js b/projects/packages/jetpack-mu-wpcom/src/features/tags-education/tags-education.js new file mode 100644 index 0000000000000..37166613e5557 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/tags-education/tags-education.js @@ -0,0 +1,34 @@ +import { useAnalytics } from '@automattic/jetpack-shared-extension-utils'; +import { ExternalLink } from '@wordpress/components'; +import { createHigherOrderComponent } from '@wordpress/compose'; +import { addFilter } from '@wordpress/hooks'; + +const addTagsEducationLink = createHigherOrderComponent( PostTaxonomyType => { + return props => { + const { tracks } = useAnalytics(); + + if ( props.slug !== 'post_tag' || ! window.wpcomTagsEducation ) { + return ; + } + + return ( + <> + + { + tracks.recordEvent( 'jetpack_mu_wpcom_tags_education_link_click' ); + } } + > + { window.wpcomTagsEducation.actionText } + + + ); + }; +}, 'addTagsEducationLink' ); + +addFilter( + 'editor.PostTaxonomyType', + 'jetpack-mu-wpcom/add-tags-education-link', + addTagsEducationLink +); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/tags-education/tags-education.php b/projects/packages/jetpack-mu-wpcom/src/features/tags-education/tags-education.php new file mode 100644 index 0000000000000..c9a904fa9f072 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/tags-education/tags-education.php @@ -0,0 +1,49 @@ + __( 'Build your audience with tags', 'jetpack-mu-wpcom' ) ) + ); + + Connection_Initial_State::render_script( 'wpcom-tags-education-script' ); + + $status = new Status(); + $connection = new Connection_Manager(); + $tracking = new Tracking( 'jetpack-mu-wpcom', $connection ); + $can_use_analytics = $tracking->should_enable_tracking( new Terms_Of_Service(), $status ); + + if ( $can_use_analytics ) { + Tracking::register_tracks_functions_scripts( true ); + } +} + +add_action( 'enqueue_block_editor_assets', 'wpcom_enqueue_tags_education_assets', 100 ); diff --git a/projects/packages/jetpack-mu-wpcom/webpack.config.js b/projects/packages/jetpack-mu-wpcom/webpack.config.js index 6b406f93a41de..825616cac4247 100644 --- a/projects/packages/jetpack-mu-wpcom/webpack.config.js +++ b/projects/packages/jetpack-mu-wpcom/webpack.config.js @@ -1,7 +1,7 @@ // eslint-disable-next-line @typescript-eslint/no-var-requires const path = require( 'path' ); // eslint-disable-next-line @typescript-eslint/no-var-requires -const jetpackConfig = require( '@automattic/jetpack-webpack-config/webpack' ); +const jetpackWebpackConfig = require( '@automattic/jetpack-webpack-config/webpack' ); const verbumConfig = require( './verbum.webpack.config.js' ); module.exports = [ @@ -20,23 +20,24 @@ module.exports = [ './src/features/override-preview-button-url/override-preview-button-url.js', 'paragraph-block-placeholder': './src/features/paragraph-block-placeholder/paragraph-block-placeholder.js', + 'tags-education': './src/features/tags-education/tags-education.js', }, - mode: jetpackConfig.mode, - devtool: jetpackConfig.devtool, + mode: jetpackWebpackConfig.mode, + devtool: jetpackWebpackConfig.devtool, output: { - ...jetpackConfig.output, + ...jetpackWebpackConfig.output, filename: '[name]/[name].js', path: path.resolve( __dirname, 'src/build' ), }, optimization: { - ...jetpackConfig.optimization, + ...jetpackWebpackConfig.optimization, }, resolve: { - ...jetpackConfig.resolve, + ...jetpackWebpackConfig.resolve, }, node: false, plugins: [ - ...jetpackConfig.StandardPlugins( { + ...jetpackWebpackConfig.StandardPlugins( { MiniCssExtractPlugin: { filename: '[name]/[name].css' }, } ), ], @@ -44,24 +45,30 @@ module.exports = [ strictExportPresence: true, rules: [ // Transpile JavaScript. - jetpackConfig.TranspileRule( { + jetpackWebpackConfig.TranspileRule( { exclude: /node_modules\//, } ), // Transpile @automattic/jetpack-* in node_modules too. - jetpackConfig.TranspileRule( { + jetpackWebpackConfig.TranspileRule( { includeNodeModules: [ '@automattic/jetpack-' ], } ), // Handle CSS. - jetpackConfig.CssRule( { + jetpackWebpackConfig.CssRule( { extensions: [ 'css', 'scss' ], extraLoaders: [ 'sass-loader' ], } ), // Handle images. - jetpackConfig.FileRule(), + jetpackWebpackConfig.FileRule(), ], }, + externals: { + ...jetpackWebpackConfig.externals, + jetpackConfig: JSON.stringify( { + consumer_slug: 'jetpack-mu-wpcom', + } ), + }, }, ]; From dea21adefc96266e5017a1a91cb8dcfb22696314 Mon Sep 17 00:00:00 2001 From: Griffith Chen Date: Mon, 8 Jul 2024 14:53:08 +0800 Subject: [PATCH 044/254] MU WPCOM: Ensure that ETK features have higher priority than the ETK plugin (#38230) --- .../add-jetpack-mu-wpcom-load-etk-features | 4 ++++ .../src/class-jetpack-mu-wpcom.php | 18 ++++++++++++++---- 2 files changed, 18 insertions(+), 4 deletions(-) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/add-jetpack-mu-wpcom-load-etk-features diff --git a/projects/packages/jetpack-mu-wpcom/changelog/add-jetpack-mu-wpcom-load-etk-features b/projects/packages/jetpack-mu-wpcom/changelog/add-jetpack-mu-wpcom-load-etk-features new file mode 100644 index 0000000000000..fa22193cc1c14 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/add-jetpack-mu-wpcom-load-etk-features @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Load ETK features with a higher priority to avoid the ETK plugin taking precedence. diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 2e5cda2148482..b301846e41b52 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -32,6 +32,9 @@ public static function init() { // Load features that don't need any special loading considerations. add_action( 'plugins_loaded', array( __CLASS__, 'load_features' ) ); + // Load ETK features that need higher priority than the ETK plugin. + add_action( 'plugins_loaded', array( __CLASS__, 'load_etk_features' ), 0 ); + /* * Please double-check whether you really need to load your feature separately. * Chances are you can just add it to the `load_features` method. @@ -95,14 +98,10 @@ public static function load_features() { if ( ! class_exists( 'A8C\FSE\Help_Center' ) ) { require_once __DIR__ . '/features/help-center/class-help-center.php'; } - require_once __DIR__ . '/features/hide-homepage-title/hide-homepage-title.php'; require_once __DIR__ . '/features/import-customizations/import-customizations.php'; require_once __DIR__ . '/features/marketplace-products-updater/class-marketplace-products-updater.php'; require_once __DIR__ . '/features/media/heif-support.php'; - require_once __DIR__ . '/features/override-preview-button-url/override-preview-button-url.php'; - require_once __DIR__ . '/features/paragraph-block-placeholder/paragraph-block-placeholder.php'; require_once __DIR__ . '/features/site-editor-dashboard-link/site-editor-dashboard-link.php'; - require_once __DIR__ . '/features/tags-education/tags-education.php'; require_once __DIR__ . '/features/wpcom-block-editor/class-jetpack-wpcom-block-editor.php'; require_once __DIR__ . '/features/wpcom-block-editor/functions.editor-type.php'; require_once __DIR__ . '/features/wpcom-site-menu/wpcom-site-menu.php'; @@ -124,6 +123,17 @@ public static function load_features() { } } + /** + * Laod ETK features that need higher priority than the ETK plugin. + * Can be moved back to load_features() once the feature no longer exists in the ETK plugin. + */ + public static function load_etk_features() { + require_once __DIR__ . '/features/hide-homepage-title/hide-homepage-title.php'; + require_once __DIR__ . '/features/override-preview-button-url/override-preview-button-url.php'; + require_once __DIR__ . '/features/paragraph-block-placeholder/paragraph-block-placeholder.php'; + require_once __DIR__ . '/features/tags-education/tags-education.php'; + } + /** * Load the Coming Soon feature. */ From bcb5e624252d44204a2f5e260b5d47fd554519db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gergely=20M=C3=A1rk=20Juh=C3=A1sz?= <36671565+gmjuhasz@users.noreply.github.com> Date: Mon, 8 Jul 2024 10:09:29 +0200 Subject: [PATCH 045/254] Social: Change `Manage connections` button to a link with connections (#38220) * Switch `Manage connections` to a link with at least 1 connection * changelog * Fixup versions --- .../changelog/change-social-manage-connection-link | 4 ++++ projects/js-packages/publicize-components/package.json | 2 +- .../src/components/form/connections-list.tsx | 2 ++ .../publicize-components/src/components/form/index.tsx | 2 -- .../src/components/form/settings-button.tsx | 8 +++++--- .../src/components/form/styles.module.scss | 5 +++-- 6 files changed, 15 insertions(+), 8 deletions(-) create mode 100644 projects/js-packages/publicize-components/changelog/change-social-manage-connection-link diff --git a/projects/js-packages/publicize-components/changelog/change-social-manage-connection-link b/projects/js-packages/publicize-components/changelog/change-social-manage-connection-link new file mode 100644 index 0000000000000..d7717a2aa03ef --- /dev/null +++ b/projects/js-packages/publicize-components/changelog/change-social-manage-connection-link @@ -0,0 +1,4 @@ +Significance: minor +Type: changed + +Changed `Manage connections` to a link with at least 1 connection diff --git a/projects/js-packages/publicize-components/package.json b/projects/js-packages/publicize-components/package.json index da26ff630a94c..8983b47d29787 100644 --- a/projects/js-packages/publicize-components/package.json +++ b/projects/js-packages/publicize-components/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize-components", - "version": "0.55.2-alpha", + "version": "0.56.0-alpha", "description": "A library of JS components required by the Publicize editor plugin", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/publicize-components/#readme", "bugs": { diff --git a/projects/js-packages/publicize-components/src/components/form/connections-list.tsx b/projects/js-packages/publicize-components/src/components/form/connections-list.tsx index 55b29b3b75def..6ef92f1bf8c7e 100644 --- a/projects/js-packages/publicize-components/src/components/form/connections-list.tsx +++ b/projects/js-packages/publicize-components/src/components/form/connections-list.tsx @@ -1,6 +1,7 @@ import usePublicizeConfig from '../../hooks/use-publicize-config'; import useSocialMediaConnections from '../../hooks/use-social-media-connections'; import PublicizeConnection from '../connection'; +import { EnabledConnectionsNotice } from './enabled-connections-notice'; import { SettingsButton } from './settings-button'; import styles from './styles.module.scss'; import { useConnectionState } from './use-connection-state'; @@ -33,6 +34,7 @@ export const ConnectionsList: React.FC = () => { ); } ) } + { ! needsUserConnection ? : null }

); diff --git a/projects/js-packages/publicize-components/src/components/form/index.tsx b/projects/js-packages/publicize-components/src/components/form/index.tsx index 33fd252508e30..b4294b35a653f 100644 --- a/projects/js-packages/publicize-components/src/components/form/index.tsx +++ b/projects/js-packages/publicize-components/src/components/form/index.tsx @@ -26,7 +26,6 @@ import { AdvancedPlanNudge } from './advanced-plan-nudge'; import { AutoConversionNotice } from './auto-conversion-notice'; import { BrokenConnectionsNotice } from './broken-connections-notice'; import { ConnectionsList } from './connections-list'; -import { EnabledConnectionsNotice } from './enabled-connections-notice'; import { InstagramNoMediaNotice } from './instagram-no-media-notice'; import { SettingsButton } from './settings-button'; import { ShareCountInfo } from './share-count-info'; @@ -108,7 +107,6 @@ export default function PublicizeForm() { - diff --git a/projects/js-packages/publicize-components/src/components/form/settings-button.tsx b/projects/js-packages/publicize-components/src/components/form/settings-button.tsx index 60dc1dd61e599..8f591da12a2f7 100644 --- a/projects/js-packages/publicize-components/src/components/form/settings-button.tsx +++ b/projects/js-packages/publicize-components/src/components/form/settings-button.tsx @@ -24,21 +24,23 @@ type SettingsButtonProps = { * @returns {import('react').ReactNode} The button/link component. */ export function SettingsButton( { label, variant = 'primary' }: SettingsButtonProps ) { - const { useAdminUiV1 } = useSelect( select => { + const { useAdminUiV1, connections } = useSelect( select => { return { useAdminUiV1: select( store ).useAdminUiV1(), + connections: select( store ).getConnections(), }; }, [] ); const { openConnectionsModal } = useDispatch( store ); const { connectionsAdminUrl } = usePublicizeConfig(); const text = label || __( 'Manage connections', 'jetpack' ); + const hasConnections = connections.length > 0; return useAdminUiV1 ? ( - ) } - - ) } - - ); -}; - -export default Highlight; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/Highlights.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/Highlights.js deleted file mode 100644 index 908e3362f3ab5..0000000000000 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/Highlights.js +++ /dev/null @@ -1,135 +0,0 @@ -/** - * External dependencies - */ -import { debounce } from '@wordpress/compose'; -import { useSelect } from '@wordpress/data'; -import React, { useState, useEffect, useCallback, useRef, useMemo } from 'react'; -/** - * Internal dependencies - */ -import Highlight from './Highlight'; -import { getClientId } from './utils/getClientId'; -import { getHighlightRects } from './utils/getHighlightRects'; -import { requestAnimationFrame } from './utils/requestAnimationFrame'; -import { saveCaretPosition, restoreCaretPosition } from './utils/textEditingHelpers'; - -const Highlights = ( { - isHighlighting = true, - containerEl, - isAIOn, - toggledKeys, - isIframed, - content, -} ) => { - const [ highlights, setHighlights ] = useState( [] ); - const caretPositionRef = useRef( null ); - - const { postId } = useSelect( select => { - const { getCurrentPostId } = select( 'core/editor' ); - - return { postId: getCurrentPostId() }; - }, [] ); - - const updatePosition = useCallback( () => { - if ( ! isHighlighting ) { - return; - } - - const all = []; - - const blocks = containerEl?.querySelectorAll( '.block-editor-rich-text__editable' ); - - if ( ! blocks ) { - return; - } - - for ( const block of blocks ) { - const clientId = getClientId( block ); - const rects = getHighlightRects( block ); - - rects.forEach( ( { rect, rangeIndex, range, target, replacement, type } ) => { - if ( toggledKeys[ type ] ) { - all.push( { - type, - rect, - rangeIndex, - target, - replacement, - range, - clientId, - block, - } ); - } - } ); - } - - setHighlights( [ ...all ] ); - }, [ containerEl, isHighlighting, toggledKeys ] ); - - const debouncedUpdatePosition = useMemo( - () => debounce( updatePosition, 300 ), - [ updatePosition ] - ); - - const handleInput = useCallback( () => { - saveCaretPosition( containerEl, caretPositionRef ); - updatePosition(); - restoreCaretPosition( containerEl, caretPositionRef ); - }, [ updatePosition, containerEl, caretPositionRef ] ); - - useEffect( () => { - if ( ! isHighlighting ) { - return; - } - - updatePosition(); - - const handleClick = () => requestAnimationFrame( updatePosition ); - - window.addEventListener( 'resize', debouncedUpdatePosition ); - - containerEl.ownerDocument.addEventListener( 'mousedown', handleClick ); - containerEl.addEventListener( 'input', handleInput ); - - return () => { - window.removeEventListener( 'resize', debouncedUpdatePosition ); - - containerEl.ownerDocument.removeEventListener( 'mousedown', handleClick ); - containerEl.removeEventListener( 'input', handleInput ); - - debouncedUpdatePosition.cancel(); - }; - }, [ - containerEl, - isAIOn, - isHighlighting, - toggledKeys, - updatePosition, - debouncedUpdatePosition, - handleInput, - content, - ] ); - - const replaceComplete = () => { - requestAnimationFrame( updatePosition ); - }; - - return ( -
- { isHighlighting && - highlights.map( ( highlight, index ) => ( - - ) ) } -
- ); -}; - -export default Highlights; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js index 688b37ec6c274..9ec0be17f44a3 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js @@ -9,13 +9,11 @@ import { applyFilters } from '@wordpress/hooks'; /** * External dependencies */ -import React, { useState, useEffect, useLayoutEffect, useCallback, useMemo } from 'react'; -import { createPortal } from 'react-dom'; +import React, { useState, useEffect, useCallback, useMemo } from 'react'; /** * Internal dependencies */ import useAiFeature from '../../../../blocks/ai-assistant/hooks/use-ai-feature'; -import Highlights from './Highlights'; import config from './dictionaries/dictionaries-config'; import calculateFleschKincaid from './utils/FleschKincaidUtils'; import './breve.scss'; @@ -29,23 +27,6 @@ export const useInit = init => { } }; -const getContainerEl = () => { - // Find the iframe by name attribute - const iframe = document.querySelector( 'iframe[name="editor-canvas"]' ); - - // Get the document inside the iframe - const iframeDocument = iframe?.contentDocument || iframe?.contentWindow.document; - - // Find the container within the iframe or fall back to the main document - const container = - iframeDocument?.body || document.querySelector( '.edit-post-visual-editor > div' ); - - // Determine if the element is iframed - const isIframed = !! iframe; - - return { foundContainer: container, foundIframe: isIframed }; -}; - const Controls = ( { blocks, active } ) => { // Allow defaults to be customized, but memoise the result so we're not computing things multiple times. const { initialAiOn } = useMemo( () => { @@ -58,8 +39,10 @@ const Controls = ( { blocks, active } ) => { const { requireUpgrade } = useAiFeature(); const isHighlighting = active; + // eslint-disable-next-line no-unused-vars const [ isAIOn, setIsAIOn ] = useState( initialAiOn ); const [ gradeLevel, setGradeLevel ] = useState( null ); + // eslint-disable-next-line no-unused-vars const [ debouncedContentChangeFlag, setDebouncedContentChangeFlag ] = useState( false ); const [ toggledKeys, setToggledKeys ] = useState( () => { @@ -70,15 +53,6 @@ const Controls = ( { blocks, active } ) => { return initialState; } ); - const [ container, setContainer ] = useState( null ); - const [ isIframed, setIsIframed ] = useState( true ); - - useLayoutEffect( () => { - const { foundContainer, foundIframe } = getContainerEl(); - setContainer( foundContainer ); - setIsIframed( foundIframe ); - }, [] ); - const updateGradeLevel = useCallback( () => { if ( ! isHighlighting ) { return; @@ -180,19 +154,6 @@ const Controls = ( { blocks, active } ) => { ) ) } - - { container && - createPortal( - , - container - ) } ); }; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/dictionaries-config.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/dictionaries-config.js index aea6102c3620c..9c533956a31eb 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/dictionaries-config.js +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/dictionaries-config.js @@ -1,7 +1,7 @@ +import phrases from '../features/complex-words/phrases'; import { escapeRegExp } from '../utils/escapeRegExp'; import adjectives from './adjectives'; import adverbs from './adverbs'; -import phrases from './phrases'; import weaselWords from './weaselWords'; const config = { diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts new file mode 100644 index 0000000000000..983238ed7bb07 --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts @@ -0,0 +1,65 @@ +/** + * External dependencies + */ +import { dispatch } from '@wordpress/data'; +/** + * Internal dependencies + */ +import { escapeRegExp } from '../../utils/escapeRegExp'; +import getContainer from '../container'; +import phrases from './phrases'; + +export const COMPLEX_WORDS = { + name: 'complex-words', + title: 'Jetpack AI Proofread Complex Words', + tagName: 'span', + className: 'has-proofread-highlight', +}; + +function handleMouseEnter( e ) { + e.stopPropagation(); + e.target.setAttribute( 'data-ai-breve-anchor', true ); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + ( dispatch( 'jetpack/ai-breve' ) as any ).setPopoverState( true ); +} + +function handleMouseLeave( e ) { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + ( dispatch( 'jetpack/ai-breve' ) as any ).setPopoverState( false ); + e.stopPropagation(); + e.target.removeAttribute( 'data-ai-breve-anchor' ); +} + +export function registerComplexWordsEvents() { + const { foundContainer: container } = getContainer(); + const items = container?.querySelectorAll?.( "[data-type='complex-words']" ); + + items.forEach( highlightEl => { + highlightEl?.removeEventListener?.( 'mouseenter', handleMouseEnter ); + highlightEl?.addEventListener?.( 'mouseenter', handleMouseEnter ); + highlightEl?.removeEventListener?.( 'mouseleave', handleMouseLeave ); + highlightEl?.addEventListener?.( 'mouseleave', handleMouseLeave ); + } ); +} + +export default function complexWords( text ) { + const list = new RegExp( + `(${ Object.keys( phrases ).map( escapeRegExp ).join( '|' ) })\\b`, + 'gi' + ); + + const matches = text.matchAll( list ); + const words = []; + + for ( const match of matches ) { + const word = match[ 0 ].trim(); + words.push( { + word, + suggestion: phrases[ word ], + startIndex: match.index, + endIndex: match.index + word.length, + } ); + } + + return words; +} diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/phrases.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/phrases.js similarity index 100% rename from projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/phrases.js rename to projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/phrases.js diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/container.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/container.ts new file mode 100644 index 0000000000000..cf32eec5140f4 --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/container.ts @@ -0,0 +1,17 @@ +export default function getContainer() { + // Find the iframe by name attribute + const iframe = document.querySelector( 'iframe[name="editor-canvas"]' ) as HTMLIFrameElement; + + // Get the document inside the iframe + const iframeDocument = iframe?.contentDocument || iframe?.contentWindow?.document; + + // Find the container within the iframe or fall back to the main document + const container = + ( iframeDocument?.body as HTMLBodyElement ) || + ( document.querySelector( '.edit-post-visual-editor > div' ) as HTMLDivElement ); + + // Determine if the element is iframed + const isIframed = !! iframe; + + return { foundContainer: container, foundIframe: isIframed }; +} diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts new file mode 100644 index 0000000000000..2946bb2cd4785 --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts @@ -0,0 +1,13 @@ +/** + * Features + */ +import complexWords, { COMPLEX_WORDS, registerComplexWordsEvents } from './complex-words'; + +// Breve Highlights Features +export default [ + { + config: COMPLEX_WORDS, + highlight: complexWords, + events: registerComplexWordsEvents, + }, +]; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts new file mode 100644 index 0000000000000..ad0b571bebeb1 --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts @@ -0,0 +1,29 @@ +/** + * External dependencies + */ +import { applyFormat } from '@wordpress/rich-text'; +/** + * Types + */ +import type { RichTextFormat } from '@wordpress/rich-text/build-types/types'; + +const applyHighlightFormat = ( { content, type, indexes, attributes = {} } ) => { + let newContent = content; + + if ( indexes.length > 0 ) { + newContent = indexes.reduce( ( acc, { startIndex, endIndex } ) => { + const format = { + type, + attributes, + } as RichTextFormat; + + return applyFormat( acc, format, startIndex, endIndex ); + }, content ); + } + + return newContent; +}; + +export default function highlight( { content, type, indexes, attributes } ) { + return applyHighlightFormat( { indexes, content, type, attributes } ); +} diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx new file mode 100644 index 0000000000000..6f4a125249f5f --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx @@ -0,0 +1,71 @@ +/** + * External dependencies + */ +import { Popover } from '@wordpress/components'; +import { useDispatch, useSelect } from '@wordpress/data'; +import { useLayoutEffect, useRef } from '@wordpress/element'; +import { registerFormatType } from '@wordpress/rich-text'; +/** + * Internal dependencies + */ +import BREVE_FEATURES from '../features'; +import './style.scss'; +import getContainer from '../features/container'; + +// Setup the Breve highlights +export default function Highlight() { + const debounce = useRef( null ); + const { setBlockContent } = useDispatch( 'jetpack/ai-breve' ); + const { foundContainer: container } = getContainer(); + const anchor = container?.querySelector?.( `[data-ai-breve-anchor]` ); + + const postContent = useSelect( select => { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const all = ( select( 'core/block-editor' ) as any ).getBlocks(); + const richValues = all.filter( block => block.name === 'core/paragraph' ); + return richValues; + }, [] ); + + const popoverOpen = useSelect( + // eslint-disable-next-line @typescript-eslint/no-explicit-any + select => ( select( 'jetpack/ai-breve' ) as any ).isPopoverOpen(), + [] + ); + + useLayoutEffect( () => { + if ( postContent?.length > 0 ) { + // Debounce the block content update + clearTimeout( debounce.current ); + debounce.current = setTimeout( () => { + postContent.forEach( block => { + setBlockContent( block?.clientId ); + } ); + }, 1000 ); + } + }, [ postContent, setBlockContent ] ); + + return ( + <> + { popoverOpen && anchor && ( + +
Popover
+
+ ) } + + ); +} + +export function registerBreveHighlights() { + BREVE_FEATURES.forEach( ( { config } ) => { + const { name, ...settings } = config; + registerFormatType( `jetpack/ai-proofread-${ name }`, settings as never ); + } ); +} diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss new file mode 100644 index 0000000000000..4e9c9c1d728d7 --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss @@ -0,0 +1,9 @@ +:root { + --jetpack-ai-complex-words: rgba( 251, 192, 45, 1 ); /* Darker yellow for border */ +} +.has-proofread-highlight { + border-bottom: 3px solid; + &[data-type='complex-words'] { + border-bottom-color: var( --jetpack-ai-complex-words ); + } +} diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/index.ts index f0e1da981e1a1..f42e5e8acaa8b 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/index.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/index.ts @@ -1,5 +1,8 @@ import Controls from './controls'; +import { store } from './store'; // Register the store const Breve = Controls as ( props: { active: boolean } ) => React.JSX.Element; export { Breve }; +export { default as Highlight, registerBreveHighlights } from './highlight'; +export { store }; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts new file mode 100644 index 0000000000000..46a15ff1b2b51 --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts @@ -0,0 +1,74 @@ +/** + * Internal dependencies + */ +import { create, getTextContent, toHTMLString } from '@wordpress/rich-text'; +import features from '../features'; +import highlight from '../highlight/highlight'; + +export function setPopoverState( isOpen ) { + return { + type: 'SET_POPOVER_STATE', + isOpen, + }; +} + +export function setBlockText( block ) { + return { + type: 'SET_BLOCK_TEXT', + clientId: block.clientId, + text: block.text, + index: block.index, + }; +} + +export function setBlockContent( clientId ) { + return ( { registry: { select, dispatch: dispatchFromRegistry }, dispatch } ) => { + const block = select( 'core/block-editor' ).getBlock( clientId ); + const blocks = select( 'jetpack/ai-breve' ).getBlocksContent(); + const blockIndex = blocks.findIndex( b => b.clientId === clientId ); + const savedText = blocks[ blockIndex ]?.text ?? ''; + + const currentContent = + typeof block.attributes.content === 'string' + ? create( { html: block.attributes.content } ) + : create( block.attributes.content ); + + const currentText = getTextContent( currentContent ); + const changed = currentText !== savedText; + + if ( changed && currentText ) { + const newContent = features.reduce( + ( acc, feature ) => { + return highlight( { + content: acc, + indexes: feature.highlight( getTextContent( acc ) ), + type: `jetpack/ai-proofread-${ feature.config.name }`, + attributes: { 'data-type': feature.config.name }, + } ); + }, + // We started with a fresh text + create( { text: currentText } ) + ); + + if ( newContent ) { + const updateBlockAttributes = + dispatchFromRegistry( 'core/block-editor' ).updateBlockAttributes; + + updateBlockAttributes( clientId, { content: toHTMLString( { value: newContent } ) } ); + features.forEach( feature => { + // We need to wait for the highlights to be applied before we can attach events + setTimeout( () => { + feature.events(); + }, 2000 ); + } ); + + dispatch( { + type: 'SET_BLOCK_TEXT', + clientId: block.clientId, + text: currentText, + index: blockIndex === -1 ? undefined : blockIndex, + } ); + } + } + }; +} diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/index.ts new file mode 100644 index 0000000000000..7eb81be6ee3bb --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/index.ts @@ -0,0 +1,20 @@ +/** + * WordPress dependencies + */ +import { createReduxStore, register } from '@wordpress/data'; +/** + * Internal dependencies + */ +import * as actions from './actions'; +import reducer from './reducer'; +import * as selectors from './selectors'; + +const STORE_NAME = 'jetpack/ai-breve'; + +export const store = createReduxStore( STORE_NAME, { + reducer, + selectors, + actions, +} ); + +register( store ); diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts new file mode 100644 index 0000000000000..d7e4be3789e9c --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts @@ -0,0 +1,44 @@ +/** + * WordPress dependencies + */ +import { combineReducers } from '@wordpress/data'; + +export function popover( state = { isOpen: false }, action ) { + switch ( action.type ) { + case 'SET_POPOVER_STATE': + return { + ...state, + isOpen: action.isOpen, + }; + } + + return state; +} + +export function content( state = [], action ) { + switch ( action.type ) { + case 'SET_BLOCK_TEXT': { + const clientId = action.clientId; + const blockText = action.text; + const idx = action.index; + + if ( idx > -1 ) { + const newState = [ ...state ]; + newState[ idx ].text = blockText; + return newState; + } + + return [ + ...state, + { + clientId, + text: blockText, + }, + ]; + } + } + + return state; +} + +export default combineReducers( { popover, content } ); diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts new file mode 100644 index 0000000000000..957cf4200a974 --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts @@ -0,0 +1,7 @@ +export function isPopoverOpen( state ) { + return state.popover.isOpen; +} + +export function getBlocksContent( state ) { + return state.content; +} diff --git a/projects/plugins/jetpack/package.json b/projects/plugins/jetpack/package.json index 253a46cd60af2..6e36c4931a746 100644 --- a/projects/plugins/jetpack/package.json +++ b/projects/plugins/jetpack/package.json @@ -75,6 +75,7 @@ "@wordpress/i18n": "5.2.0", "@wordpress/icons": "10.2.0", "@wordpress/primitives": "4.2.0", + "@wordpress/rich-text": "7.2.0", "@wordpress/url": "4.2.0", "@wordpress/viewport": "6.2.0", "@wordpress/widgets": "4.2.0", From 53d475b5897ce48b6e81cc5405b23798395a53f2 Mon Sep 17 00:00:00 2001 From: Gabriel Demichelis Date: Mon, 8 Jul 2024 23:38:08 -0300 Subject: [PATCH 055/254] Remove the WordPress Events and News Dashboard widget (#38242) * Remove the WordPress Events and News Dashboard widget --------- Co-authored-by: Ashar Fuadi --- .../remove-wpcom-events-and-news-widget | 4 ++++ .../src/class-jetpack-mu-wpcom.php | 1 + .../wpcom-admin-dashboard.php | 20 +++++++++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/remove-wpcom-events-and-news-widget create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-dashboard/wpcom-admin-dashboard.php diff --git a/projects/packages/jetpack-mu-wpcom/changelog/remove-wpcom-events-and-news-widget b/projects/packages/jetpack-mu-wpcom/changelog/remove-wpcom-events-and-news-widget new file mode 100644 index 0000000000000..eae394f9a94d1 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/remove-wpcom-events-and-news-widget @@ -0,0 +1,4 @@ +Significance: minor +Type: removed + +Dashboard widgets: Remove WordPress Events and News feed widget diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 64b3300443a8c..da0f0fdb89f0f 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -102,6 +102,7 @@ public static function load_features() { require_once __DIR__ . '/features/marketplace-products-updater/class-marketplace-products-updater.php'; require_once __DIR__ . '/features/media/heif-support.php'; require_once __DIR__ . '/features/site-editor-dashboard-link/site-editor-dashboard-link.php'; + require_once __DIR__ . '/features/wpcom-admin-dashboard/wpcom-admin-dashboard.php'; require_once __DIR__ . '/features/wpcom-block-editor/class-jetpack-wpcom-block-editor.php'; require_once __DIR__ . '/features/wpcom-block-editor/functions.editor-type.php'; require_once __DIR__ . '/features/wpcom-site-menu/wpcom-site-menu.php'; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-dashboard/wpcom-admin-dashboard.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-dashboard/wpcom-admin-dashboard.php new file mode 100644 index 0000000000000..2f4152d9bbad2 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-dashboard/wpcom-admin-dashboard.php @@ -0,0 +1,20 @@ + Date: Tue, 9 Jul 2024 12:08:52 +0900 Subject: [PATCH 056/254] MU WPCOM: Port Whats New from ETK (#38229) * MU WPCOM: Port Whats New from ETK * changelog --- .../changelog/mu-wpcom-whats-new | 4 + .../src/class-jetpack-mu-wpcom.php | 1 + ...-block-editor-whats-new-dot-controller.php | 95 ++++++++++++++++++ ...block-editor-whats-new-list-controller.php | 79 +++++++++++++++ .../wpcom-whats-new/wpcom-whats-new.php | 98 +++++++++++++++++++ 5 files changed, 277 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-whats-new create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-whats-new/class-wp-rest-wpcom-block-editor-whats-new-dot-controller.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-whats-new/class-wp-rest-wpcom-block-editor-whats-new-list-controller.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-whats-new/wpcom-whats-new.php diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-whats-new b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-whats-new new file mode 100644 index 0000000000000..7544cb96aa98b --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-whats-new @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +MU WPCOM: Port Whats New from ETK diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index da0f0fdb89f0f..a60e06f9b89ac 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -133,6 +133,7 @@ public static function load_etk_features() { require_once __DIR__ . '/features/override-preview-button-url/override-preview-button-url.php'; require_once __DIR__ . '/features/paragraph-block-placeholder/paragraph-block-placeholder.php'; require_once __DIR__ . '/features/tags-education/tags-education.php'; + require_once __DIR__ . '/features/wpcom-whats-new/wpcom-whats-new.php'; } /** diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-whats-new/class-wp-rest-wpcom-block-editor-whats-new-dot-controller.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-whats-new/class-wp-rest-wpcom-block-editor-whats-new-dot-controller.php new file mode 100644 index 0000000000000..a1360daa4cbbe --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-whats-new/class-wp-rest-wpcom-block-editor-whats-new-dot-controller.php @@ -0,0 +1,95 @@ +namespace = 'wpcom/v2'; + $this->rest_base = 'block-editor/has-seen-whats-new-modal'; + $this->wpcom_is_site_specific_endpoint = false; + } + + /** + * Register available routes. + */ + public function register_rest_route() { + register_rest_route( + $this->namespace, + $this->rest_base, + array( + array( + 'methods' => \WP_REST_Server::READABLE, + 'callback' => array( $this, 'has_seen_whats_new_modal' ), + 'permission_callback' => array( $this, 'permission_callback' ), + ), + ) + ); + register_rest_route( + $this->namespace, + $this->rest_base, + array( + array( + 'methods' => \WP_REST_Server::EDITABLE, + 'callback' => array( $this, 'set_has_seen_whats_new_modal' ), + 'permission_callback' => array( $this, 'permission_callback' ), + 'args' => array( + 'has_seen_whats_new_modal' => array( + 'required' => true, + 'type' => 'boolean', + ), + ), + ), + ) + ); + } + + /** + * Callback to determine whether the request can proceed. + * + * @return boolean + */ + public function permission_callback() { + return is_user_logged_in(); + } + + /** + * Whether the user has seen the whats new modal + * + * @return WP_REST_Response + */ + public function has_seen_whats_new_modal() { + if ( ! metadata_exists( 'user', get_current_user_id(), 'has_seen_whats_new_modal' ) ) { + $has_seen_whats_new_modal = false; + } else { + $has_seen_whats_new_modal = filter_var( get_user_meta( get_current_user_id(), 'has_seen_whats_new_modal', true ), FILTER_VALIDATE_BOOLEAN ); + } + + return rest_ensure_response( + array( + 'has_seen_whats_new_modal' => $has_seen_whats_new_modal, + ) + ); + } + + /** + * Update the option for whether the user has seen the whats new modal. + * + * @param WP_REST_Request $request Request object. + * @return WP_REST_Response + */ + public function set_has_seen_whats_new_modal( $request ) { + $params = $request->get_json_params(); + $has_seen = (bool) $params['has_seen_whats_new_modal']; + update_user_meta( get_current_user_id(), 'has_seen_whats_new_modal', $has_seen ); + return rest_ensure_response( array( 'has_seen_whats_new_modal' => $has_seen ) ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-whats-new/class-wp-rest-wpcom-block-editor-whats-new-list-controller.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-whats-new/class-wp-rest-wpcom-block-editor-whats-new-list-controller.php new file mode 100644 index 0000000000000..3d9e1e7df2161 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-whats-new/class-wp-rest-wpcom-block-editor-whats-new-list-controller.php @@ -0,0 +1,79 @@ +namespace = 'wpcom/v2'; + $this->rest_base = 'block-editor/whats-new-list'; + $this->wpcom_is_site_specific_endpoint = false; + } + + /** + * Register available routes. + */ + public function register_rest_route() { + register_rest_route( + $this->namespace, + '/' . $this->rest_base, + array( + array( + 'methods' => \WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_whats_new' ), + 'permission_callback' => array( $this, 'permission_callback' ), + 'args' => array( + '_locale' => array( + 'type' => 'string', + 'default' => 'en', + ), + ), + ), + ) + ); + } + + /** + * Callback to determine whether the request can proceed. + * + * @return boolean + */ + public function permission_callback() { + return is_user_logged_in(); + } + + /** + * Should return the whats new modal content + * + * @param \WP_REST_Request $request The request sent to the API. + * + * @return WP_REST_Response + */ + public function get_whats_new( \WP_REST_Request $request ) { + $locale = $request['_locale']; + + $query_parameters = array( + '_locale' => $locale, + ); + + $body = Client::wpcom_json_api_request_as_user( + '/whats-new/list?' . http_build_query( $query_parameters ) + ); + if ( is_wp_error( $body ) ) { + return rest_ensure_response( $body ); + } + $response = json_decode( wp_remote_retrieve_body( $body ) ); + + return rest_ensure_response( $response ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-whats-new/wpcom-whats-new.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-whats-new/wpcom-whats-new.php new file mode 100644 index 0000000000000..48b896893a0f3 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-whats-new/wpcom-whats-new.php @@ -0,0 +1,98 @@ + get_current_blog_id(), + ) + ); + + wp_enqueue_script( + $whats_new_handle, + '//widgets.wp.com/whats-new/build.min.js', + array( + 'lodash', + 'react', + 'wp-api-fetch', + 'wp-components', + 'wp-compose', + 'wp-data', + 'wp-element', + 'wp-i18n', + 'wp-keycodes', + 'wp-plugins', + 'wp-polyfill', + ), + $version, + array( + 'strategy' => 'defer', + 'in_footer' => true, + ) + ); + + wp_add_inline_script( + $whats_new_handle, + "var whatsNewAppConfig = $data;", + 'before' + ); + + wp_enqueue_style( + $whats_new_handle, + '//widgets.wp.com/whats-new/build.css', + array( 'wp-components' ), + $version + ); +} + +add_action( 'enqueue_block_editor_assets', 'wpcom_whats_new_enqueue_script_and_style', 100 ); + +/** + * Register the WPCOM Block Editor Whats New endpoints. + */ +function wpcom_whats_new_register_rest_api() { + require_once __DIR__ . '/class-wp-rest-wpcom-block-editor-whats-new-dot-controller.php'; + $controller = new WP_REST_WPCOM_Block_Editor_Whats_New_Dot_Controller(); + $controller->register_rest_route(); + + require_once __DIR__ . '/class-wp-rest-wpcom-block-editor-whats-new-list-controller.php'; + $controller = new WP_REST_WPCOM_Block_Editor_Whats_New_List_Controller(); + $controller->register_rest_route(); +} +add_action( 'rest_api_init', 'wpcom_whats_new_register_rest_api' ); From d08e947133bad0c231cf680fd18303457bb71096 Mon Sep 17 00:00:00 2001 From: Ashar Fuadi Date: Tue, 9 Jul 2024 11:35:25 +0700 Subject: [PATCH 057/254] Admin bar: update to match with Nav Redesign i3 (#38233) --- .../jetpack-mu-wpcom/.phan/baseline.php | 1 - .../changelog/wpcom-admin-bar-menu | 9 + .../src/class-jetpack-mu-wpcom.php | 4 +- .../wpcom-admin-bar/wpcom-admin-bar.php | 100 +++ .../wpcom-admin-bar/wpcom-admin-bar.scss | 56 ++ .../wpcom-admin-menu/wpcom-admin-menu.php | 372 +++++++++++ .../wpcom-sidebar-notice.js} | 0 .../wpcom-sidebar-notice.php | 148 +++++ .../wpcom-sidebar-notice.scss} | 0 .../wpcom-site-menu/wpcom-site-menu.php | 615 ------------------ .../jetpack-mu-wpcom/webpack.config.js | 3 +- 11 files changed, 690 insertions(+), 618 deletions(-) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-menu create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.scss create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-menu/wpcom-admin-menu.php rename projects/packages/jetpack-mu-wpcom/src/features/{wpcom-site-menu/wpcom-site-menu.js => wpcom-sidebar-notice/wpcom-sidebar-notice.js} (100%) create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-sidebar-notice/wpcom-sidebar-notice.php rename projects/packages/jetpack-mu-wpcom/src/features/{wpcom-site-menu/wpcom-site-menu.scss => wpcom-sidebar-notice/wpcom-sidebar-notice.scss} (100%) diff --git a/projects/packages/jetpack-mu-wpcom/.phan/baseline.php b/projects/packages/jetpack-mu-wpcom/.phan/baseline.php index 8ec8f2d31f8a8..006e35b6335eb 100644 --- a/projects/packages/jetpack-mu-wpcom/.phan/baseline.php +++ b/projects/packages/jetpack-mu-wpcom/.phan/baseline.php @@ -56,7 +56,6 @@ 'src/features/verbum-comments/class-verbum-comments.php' => ['PhanImpossibleTypeComparison', 'PhanNoopNew', 'PhanParamTooMany', 'PhanTypeMismatchArgumentProbablyReal', 'PhanUndeclaredFunction'], 'src/features/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-launchpad.php' => ['PhanPluginDuplicateConditionalNullCoalescing'], 'src/features/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-site-migration-migrate-guru-key.php' => ['PhanUndeclaredClassMethod'], - 'src/features/wpcom-site-menu/wpcom-site-menu.php' => ['PhanTypeMismatchArgumentProbablyReal'], 'tests/lib/functions-wordpress.php' => ['PhanRedefineFunction'], 'tests/php/features/block-patterns/class-wpcom-block-patterns-from-api-test.php' => ['PhanDeprecatedFunction'], 'tests/php/features/coming-soon/class-coming-soon-test.php' => ['PhanTypeMismatchArgument', 'PhanTypeMismatchArgumentProbablyReal'], diff --git a/projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-menu b/projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-menu new file mode 100644 index 0000000000000..8238f563b02db --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-menu @@ -0,0 +1,9 @@ +Significance: minor +Type: changed + +Updates the WordPress.com admin bar as follows: + +1. Repurposes the WordPress logo as a link to /sites. +2. Adds Reader menu. +3. Hides the updates icon. +4. Hides the comments icon. diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index a60e06f9b89ac..16ece7ada48e3 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -103,9 +103,11 @@ public static function load_features() { require_once __DIR__ . '/features/media/heif-support.php'; require_once __DIR__ . '/features/site-editor-dashboard-link/site-editor-dashboard-link.php'; require_once __DIR__ . '/features/wpcom-admin-dashboard/wpcom-admin-dashboard.php'; + require_once __DIR__ . '/features/wpcom-admin-bar/wpcom-admin-bar.php'; + require_once __DIR__ . '/features/wpcom-admin-menu/wpcom-admin-menu.php'; require_once __DIR__ . '/features/wpcom-block-editor/class-jetpack-wpcom-block-editor.php'; require_once __DIR__ . '/features/wpcom-block-editor/functions.editor-type.php'; - require_once __DIR__ . '/features/wpcom-site-menu/wpcom-site-menu.php'; + require_once __DIR__ . '/features/wpcom-sidebar-notice/wpcom-sidebar-notice.php'; require_once __DIR__ . '/features/wpcom-themes/wpcom-themes.php'; // Initializers, if needed. diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php new file mode 100644 index 0000000000000..8fae55dfbac40 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php @@ -0,0 +1,100 @@ +get_nodes() as $node ) { + if ( $node->parent === 'wp-logo' || $node->parent === 'wp-logo-external' ) { + $wp_admin_bar->remove_node( $node->id ); + } + } + + $wp_admin_bar->remove_node( 'wp-logo' ); + $wp_admin_bar->add_node( + array( + 'id' => 'wp-logo', + 'title' => '' . + /* translators: Hidden accessibility text. */ + __( 'All Sites', 'jetpack-mu-wpcom' ) . + '', + 'href' => 'https://wordpress.com/sites', + 'meta' => array( + 'menu_title' => __( 'All Sites', 'jetpack-mu-wpcom' ), + ), + ) + ); +} +add_action( 'admin_bar_menu', 'wpcom_repurpose_wp_logo_as_all_sites_menu', 11 ); + +/** + * Adds the Reader menu. + * + * @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar core object. + */ +function wpcom_add_reader_menu( $wp_admin_bar ) { + if ( is_agency_managed_site() ) { + return; + } + + $wp_admin_bar->add_node( + array( + 'id' => 'reader', + 'title' => __( 'Reader', 'jetpack-mu-wpcom' ), + 'href' => 'https://wordpress.com/read', + 'meta' => array( + 'class' => 'wp-admin-bar-reader', + ), + ) + ); +} +add_action( 'admin_bar_menu', 'wpcom_add_reader_menu', 15 ); + +/** + * Hides the Help Center menu. + */ +function wpcom_hide_help_center_menu() { + if ( ! is_agency_managed_site() ) { + return; + } + ?> + + ID ); + } else { + // On Atomic sites, use the Connection Manager to check if the user has a WordPress.com account. + $connection_manager = new Connection_Manager(); + $wpcom_user_data = $connection_manager->get_connected_user_data( $user_id ); + $has_account = isset( $wpcom_user_data['ID'] ); + } + + return $has_account; +} + +/** + * Adds a Hosting menu. + */ +function wpcom_add_hosting_menu() { + if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { + return; + } + if ( is_agency_managed_site() ) { + return; + } + + /** + * Don't show `Hosting` to administrators without a WordPress.com account being attached, + * as they don't have access to any of the pages. + */ + if ( ! current_user_has_wpcom_account() ) { + return; + } + + $parent_slug = 'wpcom-hosting-menu'; + $domain = wp_parse_url( home_url(), PHP_URL_HOST ); + + add_menu_page( + esc_attr__( 'Hosting', 'jetpack-mu-wpcom' ), + esc_attr__( 'Hosting', 'jetpack-mu-wpcom' ), + 'manage_options', + $parent_slug, + null, // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal + 'dashicons-cloud', + 3 + ); + + add_submenu_page( + $parent_slug, + esc_attr__( 'My Home', 'jetpack-mu-wpcom' ), + esc_attr__( 'My Home', 'jetpack-mu-wpcom' ), + 'manage_options', + esc_url( "https://wordpress.com/home/$domain" ), + null // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal + ); + + add_submenu_page( + $parent_slug, + esc_attr__( 'Overview', 'jetpack-mu-wpcom' ), + esc_attr__( 'Overview', 'jetpack-mu-wpcom' ), + 'manage_options', + esc_url( "https://wordpress.com/overview/$domain" ), + null // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal + ); + + add_submenu_page( + $parent_slug, + esc_attr__( 'Plans', 'jetpack-mu-wpcom' ), + esc_attr__( 'Plans', 'jetpack-mu-wpcom' ), + 'manage_options', + esc_url( "https://wordpress.com/plans/$domain" ), + null // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal + ); + + add_submenu_page( + $parent_slug, + esc_attr__( 'Add-ons', 'jetpack-mu-wpcom' ), + esc_attr__( 'Add-ons', 'jetpack-mu-wpcom' ), + 'manage_options', + esc_url( "https://wordpress.com/add-ons/$domain" ), + null // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal + ); + + add_submenu_page( + $parent_slug, + esc_attr__( 'Domains', 'jetpack-mu-wpcom' ), + esc_attr__( 'Domains', 'jetpack-mu-wpcom' ), + 'manage_options', + esc_url( "https://wordpress.com/domains/manage/$domain" ), + null // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal + ); + + add_submenu_page( + $parent_slug, + esc_attr__( 'Emails', 'jetpack-mu-wpcom' ), + esc_attr__( 'Emails', 'jetpack-mu-wpcom' ), + 'manage_options', + esc_url( "https://wordpress.com/email/$domain" ), + null // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal + ); + + add_submenu_page( + $parent_slug, + esc_attr__( 'Purchases', 'jetpack-mu-wpcom' ), + esc_attr__( 'Purchases', 'jetpack-mu-wpcom' ), + 'manage_options', + esc_url( "https://wordpress.com/purchases/subscriptions/$domain" ), + null // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal + ); + + add_submenu_page( + $parent_slug, + esc_attr__( 'Marketing', 'jetpack-mu-wpcom' ), + esc_attr__( 'Marketing', 'jetpack-mu-wpcom' ), + 'manage_options', + esc_url( "https://wordpress.com/marketing/$domain" ), + null // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal + ); + + add_submenu_page( + $parent_slug, + esc_attr__( 'Settings', 'jetpack-mu-wpcom' ), + esc_attr__( 'Settings', 'jetpack-mu-wpcom' ), + 'manage_options', + esc_url( "https://wordpress.com/settings/general/$domain" ), + null // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal + ); + + // By default, WordPress adds a submenu item for the parent menu item, which we don't want. + remove_submenu_page( + $parent_slug, + $parent_slug + ); +} +add_action( 'admin_menu', 'wpcom_add_hosting_menu' ); + +/** + * Adds WordPress.com submenu items related to Jetpack under the Jetpack admin menu. + */ +function wpcom_add_jetpack_submenu() { + /* + * Do not display any menu on WoA and WordPress.com Simple sites (unless Classic wp-admin is enabled). + * They already get a menu item under Users via nav-unification. + */ + if ( ( new Host() )->is_wpcom_platform() && get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { + return; + } + + /** + * Don't show to administrators without a WordPress.com account being attached, + * as they don't have access to any of the pages. + */ + if ( ! current_user_has_wpcom_account() ) { + return; + } + + /* + * Do not display if we're in Offline mode, or if the user is not connected. + */ + if ( ( new Status() )->is_offline_mode() || ! ( new Connection_Manager( 'jetpack' ) )->is_user_connected() ) { + return; + } + + add_submenu_page( + 'jetpack', + __( 'Monetize', 'jetpack-mu-wpcom' ), + __( 'Monetize', 'jetpack-mu-wpcom' ) . ' ', + 'manage_options', + esc_url( Redirect::get_url( 'calypso-monetize' ) ), + null // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal + ); +} +add_action( 'jetpack_admin_menu', 'wpcom_add_jetpack_submenu' ); + +/** + * Ensures customizer menu and admin bar items are not visible on a block theme. + */ +function wpcom_hide_customizer_submenu_on_block_theme() { + if ( wp_is_block_theme() && ! is_customize_preview() ) { + remove_action( 'customize_register', 'add_logotool_button', 20 ); + remove_action( 'customize_register', 'footercredits_register', 99 ); + remove_action( 'customize_register', 'wpcom_disable_customizer_site_icon', 20 ); + + if ( class_exists( '\Jetpack_Fonts' ) ) { + $jetpack_fonts_instance = \Jetpack_Fonts::get_instance(); + remove_action( 'customize_register', array( $jetpack_fonts_instance, 'register_controls' ) ); + remove_action( 'customize_register', array( $jetpack_fonts_instance, 'maybe_prepopulate_option' ), 0 ); + } + + remove_action( 'customize_register', array( 'Jetpack_Fonts_Typekit', 'maybe_override_for_advanced_mode' ), 20 ); + + remove_action( 'customize_register', 'Automattic\Jetpack\Dashboard_Customizations\register_css_nudge_control' ); + + remove_action( 'customize_register', array( 'Jetpack_Custom_CSS_Enhancements', 'customize_register' ) ); + } +} +add_action( 'init', 'wpcom_hide_customizer_submenu_on_block_theme' ); + +/** + * Links were removed in 3.5 core, but we've kept them active on dotcom. + * + * This function will check to see if Links should be enabled based on the number of links in the database + * and then set an option to minimize repeat queries later. The Links menu is visible when the Link Manager is enabled. + * + * @return void + */ +function wpcom_maybe_enable_link_manager() { + if ( get_option( 'link_manager_check' ) ) { + return; + } + + // The max ID number of the auto-generated links. + // See /wp-content/mu-plugins/wpcom-wp-install-defaults.php in WP.com. + $max_default_id = 10; + + // We are only checking the latest entry link_id so are limiting the query to 1. + $link_manager_links = get_bookmarks( + array( + 'orderby' => 'link_id', + 'order' => 'DESC', + 'limit' => 1, + 'hide_invisible' => 0, + ) + ); + + $has_links = is_countable( $link_manager_links ) && count( $link_manager_links ) > 0 && $link_manager_links[0]->link_id > $max_default_id; + + update_option( 'link_manager_enabled', intval( $has_links ) ); + update_option( 'link_manager_check', time() ); +} +add_action( 'init', 'wpcom_maybe_enable_link_manager' ); + +/** + * Hides a submenu item. + * + * Useful in cases where we cannot remove a submenu item because there is external logic + * that depends on the route registered by that submenu. + * + * @param string $menu_slug The slug of the parent menu. + * @param string $submenu_slug The slug of the submenu that should be hidden. + */ +function wpcom_hide_submenu_page( string $menu_slug, string $submenu_slug ) { + global $submenu; + + if ( ! isset( $submenu[ $menu_slug ] ) ) { + return; + } + + foreach ( $submenu[ $menu_slug ] as $i => $item ) { + if ( $submenu_slug !== $item[2] ) { + continue; + } + + $css_hide_class = 'hide-if-js'; + $css_classes = empty( $item[4] ) ? $css_hide_class : $item[4] . ' ' . $css_hide_class; + + // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited + $submenu[ $menu_slug ][ $i ][4] = $css_classes; + return; + } +} + +/** + * Handles the Plugins menu. + */ +function wpcom_add_plugins_menu() { + global $menu; + $is_simple_site = defined( 'IS_WPCOM' ) && IS_WPCOM; + $is_atomic_site = ! $is_simple_site; + $uses_wp_admin_interface = get_option( 'wpcom_admin_interface' ) === 'wp-admin'; + $is_agency_managed_site = is_agency_managed_site(); + + if ( $is_simple_site ) { + $has_plugins_menu = false; + foreach ( $menu as &$menu_item ) { + if ( 'plugins.php' === $menu_item[2] ) { + $has_plugins_menu = true; + break; + } + } + + if ( ! $has_plugins_menu ) { + // TODO: Remove `remove_menu_page('plugins.php');` from `/wp-content/admin-plugins/wpcom-misc.php`. + add_menu_page( + __( 'Plugins', 'jetpack-mu-wpcom' ), + __( 'Plugins', 'jetpack-mu-wpcom' ), + 'manage_options', // Roughly means "is a site admin" + 'plugins.php', + null, // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal + 'dashicons-admin-plugins', + 65 + ); + } + + if ( function_exists( 'wpcom_plugins_display_marketplace' ) ) { + add_submenu_page( + 'plugins.php', + __( 'Add New Plugin', 'jetpack-mu-wpcom' ), + __( 'Add New Plugin', 'jetpack-mu-wpcom' ), + 'manage_options', // Roughly means "is a site admin" + 'wpcom-install-plugin', + 'wpcom_plugins_display_marketplace' + ); + + if ( ! $uses_wp_admin_interface ) { + wpcom_hide_submenu_page( 'plugins.php', 'wpcom-install-plugin' ); + } + } + } + + if ( $is_agency_managed_site || ! current_user_has_wpcom_account() ) { + return; + } + + $domain = wp_parse_url( home_url(), PHP_URL_HOST ); + if ( $uses_wp_admin_interface ) { + add_submenu_page( + 'plugins.php', + /* translators: Name of the Plugins submenu that links to the Plugins Marketplace */ + __( 'Marketplace', 'jetpack-mu-wpcom' ), + /* translators: Name of the Plugins submenu that links to the Plugins Marketplace */ + __( 'Marketplace', 'jetpack-mu-wpcom' ), + 'manage_options', // Roughly means "is a site admin" + 'https://wordpress.com/plugins/' . $domain, + null // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal + ); + } + + if ( $is_atomic_site ) { + if ( + /** + * Don't show `Scheduled Updates` to administrators without a WordPress.com account being attached, + * as they don't have access to any of the pages. + */ + current_user_has_wpcom_account() && + ! get_option( 'wpcom_is_staging_site' ) && + function_exists( 'wpcom_site_has_feature' ) && + wpcom_site_has_feature( \WPCOM_Features::SCHEDULED_UPDATES ) + ) { + add_submenu_page( + 'plugins.php', + esc_attr__( 'Scheduled Updates', 'jetpack-mu-wpcom' ), + __( 'Scheduled Updates', 'jetpack-mu-wpcom' ), + 'update_plugins', + esc_url( "https://wordpress.com/plugins/scheduled-updates/$domain" ), + null // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal + ); + } + } +} +add_action( 'admin_menu', 'wpcom_add_plugins_menu' ); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-sidebar-notice/wpcom-sidebar-notice.js similarity index 100% rename from projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.js rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-sidebar-notice/wpcom-sidebar-notice.js diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-sidebar-notice/wpcom-sidebar-notice.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-sidebar-notice/wpcom-sidebar-notice.php new file mode 100644 index 0000000000000..b6b2e6f13fddc --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-sidebar-notice/wpcom-sidebar-notice.php @@ -0,0 +1,148 @@ + 'defer', + 'in_footer' => true, + ) + ); + + wp_enqueue_style( + 'wpcom-sidebar-notice', + plugins_url( 'build/wpcom-sidebar-notice/wpcom-sidebar-notice.css', Jetpack_Mu_Wpcom::BASE_FILE ), + array(), + Jetpack_Mu_Wpcom::PACKAGE_VERSION + ); + + $notice = wpcom_get_sidebar_notice(); + if ( $notice ) { + $link = $notice['link']; + if ( str_starts_with( $link, '/' ) ) { + $link = 'https://wordpress.com' . $link; + } + + $user_id = null; + $user_login = null; + + if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { + global $current_user; + $user_id = $current_user->ID; + $user_login = $current_user->user_login; + } else { + $connection_manager = new Connection_Manager(); + $wpcom_user_data = $connection_manager->get_connected_user_data(); + if ( $wpcom_user_data ) { + $user_id = $wpcom_user_data['ID']; + $user_login = $wpcom_user_data['login']; + } + } + + $data = array( + 'url' => esc_url( $link ), + 'text' => wp_kses( $notice['content'], array() ), + 'action' => wp_kses( $notice['cta'], array() ), + 'dismissible' => $notice['dismissible'], + 'dismissLabel' => esc_html__( 'Dismiss', 'jetpack-mu-wpcom' ), + 'id' => $notice['id'], + 'featureClass' => $notice['feature_class'], + 'dismissNonce' => wp_create_nonce( 'wpcom_dismiss_sidebar_notice' ), + 'tracks' => $notice['tracks'], + 'user' => array( + 'ID' => $user_id, + 'username' => $user_login, + ), + ); + + wp_add_inline_script( + 'wpcom-sidebar-notice', + 'window.wpcomSidebarNotice = ' . wp_json_encode( $data ) . ';' + ); + } +} +add_action( 'admin_enqueue_scripts', 'wpcom_enqueue_sidebar_notice_assets' ); + +/** + * Returns the first available sidebar notice. + * + * @return array | null + */ +function wpcom_get_sidebar_notice() { + if ( is_agency_managed_site() ) { + return null; + } + $message_path = 'calypso:sites:sidebar_notice'; + + if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { + require_lib( 'jetpack-jitm/jitm-engine' ); + $jitm_engine = new \JITM\Engine(); + + $current_user = wp_get_current_user(); + $user_id = $current_user->ID; + $user_roles = implode( ',', $current_user->roles ); + $query_string = array( 'message_path' => $message_path ); + + $message = $jitm_engine->get_top_messages( $message_path, $user_id, $user_roles, $query_string ); + } else { + $jitm = \Automattic\Jetpack\JITMS\JITM::get_instance(); + $message = $jitm->get_messages( $message_path, wp_json_encode( array( 'message_path' => $message_path ) ), false ); + } + + if ( ! isset( $message[0] ) ) { + return null; + } + + // Serialize message as object (on Simple sites we have an array, on Atomic sites we have an object). + $message = json_decode( wp_json_encode( $message[0] ) ); + + return array( + 'content' => $message->content->message, + 'cta' => $message->CTA->message, // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase + 'link' => $message->CTA->link, // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase + 'dismissible' => $message->is_dismissible, + 'feature_class' => $message->feature_class, + 'id' => $message->id, + 'tracks' => $message->tracks ?? null, + ); +} + +/** + * Handle AJAX requests to dismiss a sidebar notice. + */ +function wpcom_dismiss_sidebar_notice() { + check_ajax_referer( 'wpcom_dismiss_sidebar_notice' ); + if ( isset( $_REQUEST['id'] ) && isset( $_REQUEST['feature_class'] ) ) { + $id = sanitize_text_field( wp_unslash( $_REQUEST['id'] ) ); + $feature_class = sanitize_text_field( wp_unslash( $_REQUEST['feature_class'] ) ); + if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { + require_lib( 'jetpack-jitm/jitm-engine' ); + \JITM\Engine::dismiss( $id, $feature_class ); + } else { + $jitm = \Automattic\Jetpack\JITMS\JITM::get_instance(); + $jitm->dismiss( $id, $feature_class ); + } + } + wp_die(); +} +add_action( 'wp_ajax_wpcom_dismiss_sidebar_notice', 'wpcom_dismiss_sidebar_notice' ); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.scss b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-sidebar-notice/wpcom-sidebar-notice.scss similarity index 100% rename from projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.scss rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-sidebar-notice/wpcom-sidebar-notice.scss diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php index 2a34eb2c2650a..80ac4fd710b9b 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-site-menu/wpcom-site-menu.php @@ -6,618 +6,3 @@ * * @package automattic/jetpack-mu-wpcom */ - -use Automattic\Jetpack\Connection\Manager as Connection_Manager; -use Automattic\Jetpack\Jetpack_Mu_Wpcom; -use Automattic\Jetpack\Redirect; -use Automattic\Jetpack\Status; -use Automattic\Jetpack\Status\Host; - -/** - * Check if the current user has a WordPress.com account connected. - * - * @return bool - */ -function current_user_has_wpcom_account() { - $user_id = get_current_user_id(); - - if ( function_exists( '\A8C\Billingdaddy\Users\get_wpcom_user' ) ) { - // On Simple sites, use get_wpcom_user function to check if the user has a WordPress.com account. - $user = \A8C\Billingdaddy\Users\get_wpcom_user( $user_id ); - $has_account = isset( $user->ID ); - } else { - // On Atomic sites, use the Connection Manager to check if the user has a WordPress.com account. - $connection_manager = new Connection_Manager(); - $wpcom_user_data = $connection_manager->get_connected_user_data( $user_id ); - $has_account = isset( $wpcom_user_data['ID'] ); - } - - return $has_account; -} - -/** - * Add a WordPress.com menu item to the wp-admin sidebar menu. - * - * Of note, we need the $parent_slug so that we can link the submenu items to the parent menu item. Using a URL - * for the slug doesn't appear to work when registering submenus. Because we use the parent slug in the top - * level menu item, we need to find a solution to link that menu out to WordPress.com. - * - * We accomplish this by: - * - * - Adding a submenu item that links to /sites. - * - Hiding that submenu item with CSS. - * - * This works because the top level menu item links to wherever the submenu item links to. - */ -function wpcom_add_wpcom_menu_item() { - if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { - return; - } - if ( is_agency_managed_site() ) { - return; - } - - /** - * Don't show `Hosting` to administrators without a WordPress.com account being attached, - * as they don't have access to any of the pages. - */ - if ( ! current_user_has_wpcom_account() ) { - return; - } - - $parent_slug = 'wpcom-hosting-menu'; - $domain = wp_parse_url( home_url(), PHP_URL_HOST ); - - add_menu_page( - esc_attr__( 'Hosting', 'jetpack-mu-wpcom' ), - esc_attr__( 'Hosting', 'jetpack-mu-wpcom' ), - 'manage_options', - $parent_slug, - null, - 'dashicons-cloud', - 3 - ); - - add_submenu_page( - $parent_slug, - esc_attr__( 'My Home', 'jetpack-mu-wpcom' ), - esc_attr__( 'My Home', 'jetpack-mu-wpcom' ), - 'manage_options', - esc_url( "https://wordpress.com/home/$domain" ), - null - ); - - add_submenu_page( - $parent_slug, - esc_attr__( 'Overview', 'jetpack-mu-wpcom' ), - esc_attr__( 'Overview', 'jetpack-mu-wpcom' ), - 'manage_options', - esc_url( "https://wordpress.com/overview/$domain" ), - null - ); - - add_submenu_page( - $parent_slug, - esc_attr__( 'Plans', 'jetpack-mu-wpcom' ), - esc_attr__( 'Plans', 'jetpack-mu-wpcom' ), - 'manage_options', - esc_url( "https://wordpress.com/plans/$domain" ), - null - ); - - add_submenu_page( - $parent_slug, - esc_attr__( 'Add-ons', 'jetpack-mu-wpcom' ), - esc_attr__( 'Add-ons', 'jetpack-mu-wpcom' ), - 'manage_options', - esc_url( "https://wordpress.com/add-ons/$domain" ), - null - ); - - add_submenu_page( - $parent_slug, - esc_attr__( 'Domains', 'jetpack-mu-wpcom' ), - esc_attr__( 'Domains', 'jetpack-mu-wpcom' ), - 'manage_options', - esc_url( "https://wordpress.com/domains/manage/$domain" ), - null - ); - - add_submenu_page( - $parent_slug, - esc_attr__( 'Emails', 'jetpack-mu-wpcom' ), - esc_attr__( 'Emails', 'jetpack-mu-wpcom' ), - 'manage_options', - esc_url( "https://wordpress.com/email/$domain" ), - null - ); - - add_submenu_page( - $parent_slug, - esc_attr__( 'Purchases', 'jetpack-mu-wpcom' ), - esc_attr__( 'Purchases', 'jetpack-mu-wpcom' ), - 'manage_options', - esc_url( "https://wordpress.com/purchases/subscriptions/$domain" ), - null - ); - - add_submenu_page( - $parent_slug, - esc_attr__( 'Marketing', 'jetpack-mu-wpcom' ), - esc_attr__( 'Marketing', 'jetpack-mu-wpcom' ), - 'manage_options', - esc_url( "https://wordpress.com/marketing/$domain" ), - null - ); - - add_submenu_page( - $parent_slug, - esc_attr__( 'Settings', 'jetpack-mu-wpcom' ), - esc_attr__( 'Settings', 'jetpack-mu-wpcom' ), - 'manage_options', - esc_url( "https://wordpress.com/settings/general/$domain" ), - null - ); - - // By default, WordPress adds a submenu item for the parent menu item, which we don't want. - remove_submenu_page( - $parent_slug, - $parent_slug - ); -} -add_action( 'admin_menu', 'wpcom_add_wpcom_menu_item' ); - -/** - * Add All Sites menu to the right side of the WP logo on the masterbar. - * - * @param WP_Admin_Bar $wp_admin_bar - The WP_Admin_Bar instance. - */ -function add_all_sites_menu_to_masterbar( $wp_admin_bar ) { - if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { - return; - } - if ( is_agency_managed_site() ) { - return; - } - - /** - * Don't show `All Sites` to administrators without a WordPress.com account being attached, - * as they don't have access to any of the pages. - */ - if ( ! current_user_has_wpcom_account() ) { - return; - } - - wp_enqueue_style( - 'wpcom-site-menu', - plugins_url( 'build/wpcom-site-menu/wpcom-site-menu.css', Jetpack_Mu_Wpcom::BASE_FILE ), - array(), - Jetpack_Mu_Wpcom::PACKAGE_VERSION - ); - - $wp_admin_bar->add_node( - array( - 'id' => 'all-sites', - 'title' => __( 'All Sites', 'jetpack-mu-wpcom' ), - 'href' => 'https://wordpress.com/sites', - 'meta' => array( - 'class' => 'wp-admin-bar-all-sites', - ), - ) - ); -} -add_action( 'admin_bar_menu', 'add_all_sites_menu_to_masterbar', 15 ); - -/*** - * Always hide the Core's default My Sites menu on WP.com - */ -function hide_my_sites_menu() { - if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { - return; - } - ?> - - remove_menu( 'wp-logo' ); - - $wp_logo_menu_args = array( - 'id' => 'wp-logo', - 'title' => '' . - /* translators: Hidden accessibility text. */ - __( 'About WordPress', 'jetpack-mu-wpcom' ) . - '', - 'href' => get_dashboard_url(), - 'meta' => array( - 'menu_title' => __( 'About WordPress', 'jetpack-mu-wpcom' ), - ), - ); - - $wp_admin_bar->add_node( $wp_logo_menu_args ); -} - -add_action( 'admin_bar_menu', 'replace_wp_logo_menu_on_masterbar', 11 ); - -/** - * Enqueue scripts and styles needed by the WP.com menu. - */ -function wpcom_site_menu_enqueue_scripts() { - if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { - return; - } - - wp_enqueue_script( - 'wpcom-site-menu', - plugins_url( 'wpcom-site-menu.js', __FILE__ ), - array(), - Jetpack_Mu_Wpcom::PACKAGE_VERSION, - array( - 'strategy' => 'defer', - 'in_footer' => true, - ) - ); - - $notice = wpcom_get_sidebar_notice(); - if ( $notice ) { - $link = $notice['link']; - if ( str_starts_with( $link, '/' ) ) { - $link = 'https://wordpress.com' . $link; - } - - $user_id = null; - $user_login = null; - - if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { - global $current_user; - $user_id = $current_user->ID; - $user_login = $current_user->user_login; - } else { - $connection_manager = new Connection_Manager(); - $wpcom_user_data = $connection_manager->get_connected_user_data(); - if ( $wpcom_user_data ) { - $user_id = $wpcom_user_data['ID']; - $user_login = $wpcom_user_data['login']; - } - } - - $data = array( - 'url' => esc_url( $link ), - 'text' => wp_kses( $notice['content'], array() ), - 'action' => wp_kses( $notice['cta'], array() ), - 'dismissible' => $notice['dismissible'], - 'dismissLabel' => esc_html__( 'Dismiss', 'jetpack-mu-wpcom' ), - 'id' => $notice['id'], - 'featureClass' => $notice['feature_class'], - 'dismissNonce' => wp_create_nonce( 'wpcom_dismiss_sidebar_notice' ), - 'tracks' => $notice['tracks'], - 'user' => array( - 'ID' => $user_id, - 'username' => $user_login, - ), - ); - - wp_add_inline_script( - 'wpcom-site-menu', - 'window.wpcomSidebarNotice = ' . wp_json_encode( $data ) . ';' - ); - } -} -add_action( 'admin_enqueue_scripts', 'wpcom_site_menu_enqueue_scripts' ); - -/** - * Returns the first available sidebar notice. - * - * @return array | null - */ -function wpcom_get_sidebar_notice() { - if ( is_agency_managed_site() ) { - return null; - } - $message_path = 'calypso:sites:sidebar_notice'; - - if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { - require_lib( 'jetpack-jitm/jitm-engine' ); - $jitm_engine = new \JITM\Engine(); - - $current_user = wp_get_current_user(); - $user_id = $current_user->ID; - $user_roles = implode( ',', $current_user->roles ); - $query_string = array( 'message_path' => $message_path ); - - $message = $jitm_engine->get_top_messages( $message_path, $user_id, $user_roles, $query_string ); - } else { - $jitm = \Automattic\Jetpack\JITMS\JITM::get_instance(); - $message = $jitm->get_messages( $message_path, wp_json_encode( array( 'message_path' => $message_path ) ), false ); - } - - if ( ! isset( $message[0] ) ) { - return null; - } - - // Serialize message as object (on Simple sites we have an array, on Atomic sites we have an object). - $message = json_decode( wp_json_encode( $message[0] ) ); - - return array( - 'content' => $message->content->message, - 'cta' => $message->CTA->message, // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase - 'link' => $message->CTA->link, // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase - 'dismissible' => $message->is_dismissible, - 'feature_class' => $message->feature_class, - 'id' => $message->id, - 'tracks' => $message->tracks ?? null, - ); -} - -/** - * Handle AJAX requests to dismiss a sidebar notice; - */ -function wpcom_dismiss_sidebar_notice() { - check_ajax_referer( 'wpcom_dismiss_sidebar_notice' ); - if ( isset( $_REQUEST['id'] ) && isset( $_REQUEST['feature_class'] ) ) { - $id = sanitize_text_field( wp_unslash( $_REQUEST['id'] ) ); - $feature_class = sanitize_text_field( wp_unslash( $_REQUEST['feature_class'] ) ); - if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { - require_lib( 'jetpack-jitm/jitm-engine' ); - \JITM\Engine::dismiss( $id, $feature_class ); - } else { - $jitm = \Automattic\Jetpack\JITMS\JITM::get_instance(); - $jitm->dismiss( $id, $feature_class ); - } - } - wp_die(); -} -add_action( 'wp_ajax_wpcom_dismiss_sidebar_notice', 'wpcom_dismiss_sidebar_notice' ); - -/** - * Add the WordPress.com submenu items related to Jetpack under the Jetpack menu on the wp-admin sidebar. - */ -function wpcom_add_jetpack_menu_item() { - /* - * Do not display any menu on WoA and WordPress.com Simple sites (unless Classic wp-admin is enabled). - * They already get a menu item under Users via nav-unification. - */ - if ( ( new Host() )->is_wpcom_platform() && get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { - return; - } - - /** - * Don't show to administrators without a WordPress.com account being attached, - * as they don't have access to any of the pages. - */ - if ( ! current_user_has_wpcom_account() ) { - return; - } - - /* - * Do not display if we're in Offline mode, or if the user is not connected. - */ - if ( ( new Status() )->is_offline_mode() || ! ( new Connection_Manager( 'jetpack' ) )->is_user_connected() ) { - return; - } - - add_submenu_page( - 'jetpack', - __( 'Monetize', 'jetpack-mu-wpcom' ), - __( 'Monetize', 'jetpack-mu-wpcom' ) . ' ', - 'manage_options', - esc_url( Redirect::get_url( 'calypso-monetize' ) ), - null - ); -} -add_action( 'jetpack_admin_menu', 'wpcom_add_jetpack_menu_item' ); - -/** - * Ensures customizer menu and adminbar items are not visible on a block theme. - */ -function hide_customizer_menu_on_block_theme() { - if ( wp_is_block_theme() && ! is_customize_preview() ) { - remove_action( 'customize_register', 'add_logotool_button', 20 ); - remove_action( 'customize_register', 'footercredits_register', 99 ); - remove_action( 'customize_register', 'wpcom_disable_customizer_site_icon', 20 ); - - if ( class_exists( '\Jetpack_Fonts' ) ) { - $jetpack_fonts_instance = \Jetpack_Fonts::get_instance(); - remove_action( 'customize_register', array( $jetpack_fonts_instance, 'register_controls' ) ); - remove_action( 'customize_register', array( $jetpack_fonts_instance, 'maybe_prepopulate_option' ), 0 ); - } - - remove_action( 'customize_register', array( 'Jetpack_Fonts_Typekit', 'maybe_override_for_advanced_mode' ), 20 ); - - remove_action( 'customize_register', 'Automattic\Jetpack\Dashboard_Customizations\register_css_nudge_control' ); - - remove_action( 'customize_register', array( 'Jetpack_Custom_CSS_Enhancements', 'customize_register' ) ); - } -} -add_action( 'init', 'hide_customizer_menu_on_block_theme' ); - -/** - * Links were removed in 3.5 core, but we've kept them active on dotcom. - * - * This function will check to see if Links should be enabled based on the number of links in the database - * and then set an option to minimize repeat queries later. The Links menu is visible when the Link Manager is enabled. - * - * @return void - */ -function wpcom_maybe_enable_link_manager() { - if ( get_option( 'link_manager_check' ) ) { - return; - } - - // The max ID number of the auto-generated links. - // See /wp-content/mu-plugins/wpcom-wp-install-defaults.php in WP.com. - $max_default_id = 10; - - // We are only checking the latest entry link_id so are limiting the query to 1. - $link_manager_links = get_bookmarks( - array( - 'orderby' => 'link_id', - 'order' => 'DESC', - 'limit' => 1, - 'hide_invisible' => 0, - ) - ); - - $has_links = is_countable( $link_manager_links ) && count( $link_manager_links ) > 0 && $link_manager_links[0]->link_id > $max_default_id; - - update_option( 'link_manager_enabled', intval( $has_links ) ); - update_option( 'link_manager_check', time() ); -} -add_action( 'init', 'wpcom_maybe_enable_link_manager' ); - -/** - * Hides a submenu item. - * - * Useful in cases where we cannot remove a submenu item because there is external logic - * that depends on the route registered by that submenu. - * - * @param string $menu_slug The slug of the parent menu. - * @param string $submenu_slug The slug of the submenu that should be hidden. - */ -function wpcom_hide_submenu_page( string $menu_slug, string $submenu_slug ) { - global $submenu; - - if ( ! isset( $submenu[ $menu_slug ] ) ) { - return; - } - - foreach ( $submenu[ $menu_slug ] as $i => $item ) { - if ( $submenu_slug !== $item[2] ) { - continue; - } - - $css_hide_class = 'hide-if-js'; - $css_classes = empty( $item[4] ) ? $css_hide_class : $item[4] . ' ' . $css_hide_class; - - // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - $submenu[ $menu_slug ][ $i ][4] = $css_classes; - return; - } -} - -/** - * Handles the Plugins menu for WP.com sites. - */ -function wpcom_add_plugins_menu() { - global $menu; - $is_simple_site = defined( 'IS_WPCOM' ) && IS_WPCOM; - $is_atomic_site = ! $is_simple_site; - $uses_wp_admin_interface = get_option( 'wpcom_admin_interface' ) === 'wp-admin'; - $is_agency_managed_site = is_agency_managed_site(); - - if ( $is_simple_site ) { - $has_plugins_menu = false; - foreach ( $menu as &$menu_item ) { - if ( 'plugins.php' === $menu_item[2] ) { - $has_plugins_menu = true; - break; - } - } - - if ( ! $has_plugins_menu ) { - // TODO: Remove `remove_menu_page('plugins.php');` from `/wp-content/admin-plugins/wpcom-misc.php`. - add_menu_page( - __( 'Plugins', 'jetpack-mu-wpcom' ), - __( 'Plugins', 'jetpack-mu-wpcom' ), - 'manage_options', // Roughly means "is a site admin" - 'plugins.php', - null, - 'dashicons-admin-plugins', - 65 - ); - } - - if ( function_exists( 'wpcom_plugins_display_marketplace' ) ) { - add_submenu_page( - 'plugins.php', - __( 'Add New Plugin', 'jetpack-mu-wpcom' ), - __( 'Add New Plugin', 'jetpack-mu-wpcom' ), - 'manage_options', // Roughly means "is a site admin" - 'wpcom-install-plugin', - 'wpcom_plugins_display_marketplace' - ); - - if ( ! $uses_wp_admin_interface ) { - wpcom_hide_submenu_page( 'plugins.php', 'wpcom-install-plugin' ); - } - } - } - - if ( $is_agency_managed_site || ! current_user_has_wpcom_account() ) { - return; - } - - $domain = wp_parse_url( home_url(), PHP_URL_HOST ); - if ( $uses_wp_admin_interface ) { - add_submenu_page( - 'plugins.php', - /* translators: Name of the Plugins submenu that links to the Plugins Marketplace */ - __( 'Marketplace', 'jetpack-mu-wpcom' ), - /* translators: Name of the Plugins submenu that links to the Plugins Marketplace */ - __( 'Marketplace', 'jetpack-mu-wpcom' ), - 'manage_options', // Roughly means "is a site admin" - 'https://wordpress.com/plugins/' . $domain, - null - ); - } - - if ( $is_atomic_site ) { - if ( - /** - * Don't show `Scheduled Updates` to administrators without a WordPress.com account being attached, - * as they don't have access to any of the pages. - */ - current_user_has_wpcom_account() && - ! get_option( 'wpcom_is_staging_site' ) && - function_exists( 'wpcom_site_has_feature' ) && - wpcom_site_has_feature( \WPCOM_Features::SCHEDULED_UPDATES ) - ) { - add_submenu_page( - 'plugins.php', - esc_attr__( 'Scheduled Updates', 'jetpack-mu-wpcom' ), - __( 'Scheduled Updates', 'jetpack-mu-wpcom' ), - 'update_plugins', - esc_url( "https://wordpress.com/plugins/scheduled-updates/$domain" ), - null - ); - } - } -} -add_action( 'admin_menu', 'wpcom_add_plugins_menu' ); - -/** - * Hide the 'Help Center' icon in WordPress admin. - */ -function hide_help_center_admin_bar() { - if ( ! is_agency_managed_site() ) { - return; - } - ?> - - Date: Tue, 9 Jul 2024 18:02:54 +0900 Subject: [PATCH 058/254] MU WPCOM: Port jetpack-global-styles from ETK (#38209) * Bring jetpack-global-styles from ETK * changelog * Fix Phan errors * Fix the entry point * Use unique namespace * Turn off global styles on ETK plugin * Update asset file paths * Use load_etk_features * Remove wpcom-site-menu.scss import from webpack.config.js --- pnpm-lock.yaml | 3 + .../changelog/mu-wpcom-jetpack-global-styles | 4 + .../packages/jetpack-mu-wpcom/package.json | 1 + .../src/class-jetpack-mu-wpcom.php | 1 + .../jetpack-global-styles/README-DATA.md | 364 +++++++++++ .../features/jetpack-global-styles/README.md | 238 +++++++ ...ss-global-styles-fonts-message-control.php | 125 ++++ .../class-global-styles.php | 612 ++++++++++++++++++ .../customizer-fonts/index.js | 31 + .../jetpack-global-styles/editor.scss | 2 + .../includes/class-data-point-literal.php | 43 ++ .../includes/class-data-point-option.php | 111 ++++ .../includes/class-data-point-theme.php | 96 +++ .../includes/class-data-set.php | 167 +++++ .../includes/class-json-endpoint.php | 116 ++++ .../includes/interface-data-point.php | 17 + .../features/jetpack-global-styles/index.js | 46 ++ .../jetpack-global-styles/src/constants.js | 7 + .../jetpack-global-styles/src/dom-updater.js | 59 ++ .../src/font-pairings-panel.js | 42 ++ .../src/font-pairings-panel.scss | 32 + .../src/font-selection-panel.js | 38 ++ .../src/global-styles-sidebar.js | 154 +++++ .../src/global-styles-sidebar.scss | 23 + .../jetpack-global-styles/src/no-support.js | 11 + .../jetpack-global-styles/src/store.js | 105 +++ .../jetpack-global-styles/static/style.css | 28 + .../jetpack-mu-wpcom/webpack.config.js | 5 +- 28 files changed, 2480 insertions(+), 1 deletion(-) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-jetpack-global-styles create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/README-DATA.md create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/README.md create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/class-global-styles-fonts-message-control.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/class-global-styles.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/customizer-fonts/index.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/editor.scss create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-point-literal.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-point-option.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-point-theme.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-set.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-json-endpoint.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/interface-data-point.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/index.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/constants.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/dom-updater.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/font-pairings-panel.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/font-pairings-panel.scss create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/font-selection-panel.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/global-styles-sidebar.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/global-styles-sidebar.scss create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/no-support.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/store.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/static/style.css diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b6bc4117429fe..19aa8af3b1e6d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2135,6 +2135,9 @@ importers: '@wordpress/i18n': specifier: 5.2.0 version: 5.2.0 + '@wordpress/icons': + specifier: 10.2.0 + version: 10.2.0(react@18.3.1) '@wordpress/plugins': specifier: 7.2.0 version: 7.2.0(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-jetpack-global-styles b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-jetpack-global-styles new file mode 100644 index 0000000000000..1bc6d6b46bf63 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-jetpack-global-styles @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Bring jetpack-global-styles from ETK diff --git a/projects/packages/jetpack-mu-wpcom/package.json b/projects/packages/jetpack-mu-wpcom/package.json index 8ee6d6be8eab1..ab96a507c2c0b 100644 --- a/projects/packages/jetpack-mu-wpcom/package.json +++ b/projects/packages/jetpack-mu-wpcom/package.json @@ -58,6 +58,7 @@ "@wordpress/i18n": "5.2.0", "@wordpress/plugins": "7.2.0", "@wordpress/url": "4.2.0", + "@wordpress/icons": "10.2.0", "clsx": "2.1.1", "preact": "^10.13.1", "react": "^18.2.0", diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 16ece7ada48e3..221feca6f8aef 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -132,6 +132,7 @@ public static function load_features() { */ public static function load_etk_features() { require_once __DIR__ . '/features/hide-homepage-title/hide-homepage-title.php'; + require_once __DIR__ . '/features/jetpack-global-styles/class-global-styles.php'; require_once __DIR__ . '/features/override-preview-button-url/override-preview-button-url.php'; require_once __DIR__ . '/features/paragraph-block-placeholder/paragraph-block-placeholder.php'; require_once __DIR__ . '/features/tags-education/tags-education.php'; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/README-DATA.md b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/README-DATA.md new file mode 100644 index 0000000000000..f8574eeb23335 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/README-DATA.md @@ -0,0 +1,364 @@ +# Global Styles approach to Data + +Global Styles adds a new JSON REST API endpoint. It is a thin endpoint that outsources the data processing to the `\Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set` class, which implements a declarative approach to data retrieval and persistance. + +In this document we'll go through the existing API: + +- [Introduction](#introduction) +- [Literal Data Points](#literal-data-points) +- [Option Data Points](#option-data-points) + - [Fallback Values](#fallback-values) + - [Working with option's properties](#working-with-options-properties) + - [Updatable Options](#updatable-options) + - [Filters to prepare and sanitize data](#filters-to-prepare-and-sanitize-data) +- [Theme Data Points](#theme-data-points) + - [Fallback Values](#fallback-values-1) +- [Working with theme's properties](#working-with-themes-properties) + +## Introduction + +The `\Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set` takes as input a declarative data format and knows how to process three kinds of data: + +```php +// Initialize +$data_set = new \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set( [ + 'font_list' => [ + 'type' => 'literal', + 'default' => [ + 'Arvo', + 'Libre Baskerville', + 'Ubuntu', + ], + ], + 'font_base_default' => [ + 'type' => 'theme', + 'name' => [ 'jetpack-global-styles', 'font_base' ], + 'default' => 'Ubuntu', + ], + 'site_name' => [ + 'type' => 'option', + 'name' => 'blogname', + 'default' => 'Your site name', + ], +] ); + +$data_set->get_data(); // Outputs data. +$data_set->save_data( $new_data ); // Updates data. +``` + +- **literal data points** are literal PHP values. These don't change over time and aren't saved to the database. +- **options data points** are values that come from the WordPress Options API. These can also be updated. +- **theme support data points** are values that come from the theme via `add_theme_support`. + +## Literal Data Points + +Data points are considered to be of the _literal_ kind if their `type` property value is `literal`. Their output is the literal PHP value in the `default` property, or `null` if none is provided. + +For this **input**: + +```php +$data_set = new \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set( [ + 'font_base_default' => [ + 'type' => 'literal', + 'default' => 'Libre Baskerville', + ], + 'font_headings_default' => [ + 'type' => 'literal', + 'default' => 'Lora', + ], +] ); +``` + +The **output** of `$data_set->get_data()` will be: + +```php +[ + 'font_base_default' => 'Libre Baskerville', + 'font_headings_default' => 'Lora', +] +``` + +Note that the `default` property can contain any valid PHP data. + +For example, use an array as **input**: + +```php +$data_set = new \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set( [ + 'font_options' => [ + 'type' => 'literal', + 'default' => [ + [ + 'label' => 'Ubuntu Font', + 'value' => 'Ubuntu', + ], + 'Libre Baskerville', + 'Lora', + ], + ], +] ); +``` + +The **output** of `$data_set->get_data()` will be: + +```php +[ + 'font_options' => [ + 0 => [ + 'label' => 'Ubuntu Font', + 'value' => 'Ubuntu', + ], + 1 => 'Libre Baskerville' + 2 => 'Lora', + ] +] +``` + +## Option Data Points + +Data points are considered to be of the _option_ kind if the value of the `type` property is `option`. These are the only data points that can be updated. + +The simplest use case is to operate with the contents of an option without further processing. This **input** can be expressed as: + +```php +$data_set = new \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set( [ + 'site_name' => [ + 'type' => 'option', + 'name' => 'blogname', + ] +] ); +``` + +The result of `$data_set->get_data()` will **output** the value of the `blogname` option in the database, or `false` if it doesn't exists or does not have a value: + +```php +[ + 'site_name' => 'A WordPress Site' +] +``` + +### Fallback Values + +If the option does not exist or does not have a value, then the return value will be `false`, which replicates the WordPress Options API default behavior. In case you want to provide a fallback value, you can do so by using the `default` property. + +**Input**: + +```php +$data_set = new \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set( [ + 'site_name' => [ + 'type' => 'option', + 'name' => 'some_non_existing_option', + 'default' => 'My cool site name', + ] +] ); +``` + +**Output** if option doesn't exist: + +```php +[ + 'site_name' => 'My cool site name' +] +``` + +### Working with option's properties + +So far, we've exposed the whole option value. However, sometimes we want to unwrap an option and work with one of its properties instead. + +For example, let's say that there is an option called `jetpack_global_styles` whose value is an object such as: + +```php +[ + 'font_base' => 'Roboto', + 'font_headings' => 'Playfair Display', +] +``` + +For this **input**: + +```php +$data_set = new \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set( [ + 'font_base' => [ + 'type' => 'option', + 'name' => [ 'jetpack_global_styles', 'font_base' ], + ] +] ); +``` + +The **output** of `$data_set->get_data()` will be: + +```php +[ + 'font_base' => 'Roboto', +] +``` + +### Updatable Options + +By default, options can't be updated and they won't be processed during the `$data_set->save_data( $new_data )` execution. For example, for this **input**: + +```php +$data_set = new \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set( [ + 'site_name' => [ + 'type' => 'option', + 'name' => 'blogname', + ], +] ); +$data_set->save_data( + [ + 'site_name' => 'A new site name' + ] +); +``` + +By default, the `blogname` option value **won't be processed** so the new value will be discarded. + +Sometimes, though, we do want to update options. This can done by using the `updatable` key. Following the example above we set the option as updatable: + +```php +$data_set = new \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set( [ + 'site_name' => [ + 'type' => 'option', + 'name' => 'blogname', + 'updatable' => true, + ], +] ); +$data_set->save_data( + [ + 'site_name' => 'A new site name.' + ] +); +``` + +In this case, the `blogname` will be updated with the new value. + +If we were working with specific properties of the option instead: + +```php +$data_set = new \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set( [ + 'font_base' => [ + 'type' => 'option', + 'name' => [ 'jetpack_global_styles', 'font_base' ], + 'updatable' => true, + ], +] ); +$data_set->save_data( + [ + 'font_base' => 'Domine' + ] +); +``` + +The result will be that the `jetpack_global_styles` option will have its `font_base` property updated, while the rest will keep the same values. + +### Filters to prepare and sanitize data + +**The `\Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set` doesn't do any validation or sanitization**, it's the consumer responsibility to do so. There are two filters that can be used to prepare, filter, validate and sanitize your data: + +- `jetpack_global_styles_data_set_get_data`: it runs as the last step of `get_data()` and receives the result of processing the data points, so plugins have the opportunity to further processing it to their needs before it's used anywhere else. +- `jetpack_global_styles_data_set_save_data`: it runs as the first step of `save_data( $new_data )`, so plugins have the opportunity to validate and sanitize the incoming data to their needs before it's saved to the database. + +## Theme Data Points + +Data points are considered to be of the _theme_ kind if the property `type`'s value is `theme`. + +**Input** being: + +```php +$data_set = new \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set( [ + 'jetpack_global_styles' => [ + 'type' => 'theme', + 'name' => 'jetpack-global-styles', + ], +] ); +``` + +This will pull data added via `add_theme_support` as in: + +```php +add_theme_support( + 'jetpack-global-styles' + [ + 'font_headings' => 'Ubuntu', + ] +); +``` + +The **output** of `$data_set->get_data()` will be the value taken from theme support, or `null` if none was provided or the feature and/or property don't exist: + +```php +[ + 'jetpack_global_styles' => [ + 'font_headings' => 'Ubuntu', + ], +] +``` + +### Fallback Values + +If the theme has declared support for a feature but hasn't provided any value, the output for that data point be `null`. In case you want to provide a fallback value, you can do so by using the `default` property. + +**Input**: + +```php +$data_set = new \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set( [ + 'jetpack_global_styles' => [ + 'type' => 'theme', + 'name' => 'jetpack-global-styles', + 'default' => [ + 'font_headings' => 'Lora', + ], + ], +] ); +``` + +Being the `add_theme_support` declaration: + +```php +add_theme_support( 'jetpack-global-styles' ); +``` + +The **output** of `$data_set->get_data()` will be: + +```php +[ + 'jetpack_global_styles' =>[ + 'font_headings' => 'Lora', + ] +] +``` + +## Working with theme's properties + +It is also possible to work with specific properties, unwrapping the theme support data. + +**Input**: + +```php +$data_set = new \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Set( [ + 'font_headings' => [ + 'type' => 'theme', + 'name' => [ 'jetpack-global-styles', 'font_headings' ], + ], +] ); +``` + +Being the `add_theme_support` declaration: + +```php +add_theme_support( + 'jetpack-global-styles', + [ + 'font_base' => 'Chivo', + 'font_headings' => 'Ubuntu', + ] +); + +``` + +The **output** of `$data_set->get_data()` will be: + +```php +[ + 'font_headings' => 'Ubuntu', +] +``` diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/README.md b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/README.md new file mode 100644 index 0000000000000..40350fe263893 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/README.md @@ -0,0 +1,238 @@ +# Global Styles plugin + +Note: as of March 2023, this is still available for older themes which declare support for "jetpack-global-styles". If you activate one of those themes (like "Leven") on a site, you can access and test this feature in both the page and post editor. Look for the typography icon in the top toolbar, or "Global Styles" under the plugins section of the editor more menu. + +This plugin creates a new sidebar for the block editor through which the users can update the styles site-wide, if the active theme has declared support. At the moment, users can set the base and headings fonts. + +- [How to develop and build the plugin](#how-to-develop-and-build-the-plugin) +- [How it works and how themes can use it](#how-it-works-and-how-themes-can-use-it) + - [Fallbacks for browsers without support for CSS custom properties](#fallbacks-for-browsers-without-support-for-css-custom-properties) + - [How to add a "Theme Default" option to the font list](#how-to-add-a-theme-default-option-to-the-font-list) + - [How to use a fallback stylesheet (experimental)](#how-to-use-a-fallback-stylesheet-experimental) +- [Existing hooks](#existing-hooks) + - [jetpack_global_styles_data_set_get_data filter](#jetpack_global_styles_data_set_get_data-filter) + - [jetpack_global_styles_data_set_save_data filter](#jetpack_global_styles_data_set_save_data-filter) + - [jetpack_global_styles_permission_check_additional filter](#jetpack_global_styles_permission_check_additional-filter) + - [jetpack_global_styles_settings](#jetpack_global_styles_settings) +- [FAQ](#faq) + - [Which fonts are available?](#which-fonts-are-available) + - [What will happen when the user changes to another theme that supports GlobalStyles?](#what-will-happen-when-the-user-changes-to-another-theme-that-supports-globalstyles) + - [What will happen when the user changes to a theme that doesn't support Global Styles or the plugin is deactivated?](#what-will-happen-when-the-user-changes-to-a-theme-that-doesnt-support-global-styles-or-the-plugin-is-deactivated) + +## How to develop and build the plugin + +Refer to instructions in the top-level [Editing Toolkit](https://github.com/automattic/wp-calypso/tree/HEAD/apps/editing-toolkit) directory. + +## How it works and how themes can use it + +This plugin creates a new sidebar for the block editor through which the users can update the styles site-wide. At the moment, users can set the base and headings fonts. For the sidebar to be shown, the active theme needs to have declared support: + +```php +add_theme_support( 'jetpack-global-styles' ); +``` + +The user choices are stored using the Options API in the WordPress database, and exposed in the block editor and the front end as CSS custom properties. For example, the base and headings fonts are exposed as `--font-base` and `--font-headings`, respectively. + +The theme can then use those variables to set its styles: + +```css +body { + font-family: var( --font-base, serif ); +} + +h1 { + font-family: var( --font-headings, sans-serif ); +} +``` + +In the above example, the `body`'s font-family will be what the user selected as the base font, or `serif` if `--font-base` is not set. Likewise, the `h1`'s font-family will be what the user selected as the headings font, or `sans-serif` if `--font-headings` is not set. + +### Fallback values for CSS Custom Properties + +Note the font-family fallbacks provided for when `--font-base` or `--font-headings` are not set. There are a number of situations where these variables can have the value `unset` or even not being present (which the browsers also consider as being `unset`): + +- If the Global Styles plugin is not installed, activated, or the theme didn't declared support. +- If the Global Styles plugin is activated and the theme has declared support but: + - the user hasn't selected and saved any choice yet. + - the user has selected _Theme Default_ as the font. + +By adding fallbacks for these situations, themes can work with or without Global Styles using the same styles. They also provide a better experience to users with good defaults that are overwritten by user's choices when necessary. This is the recommended way to use the Global Styles plugin. + +What would happen if no fallback is provided? + +```css +body { + font-family: var( --font-base ); +} + +h1 { + font-family: var( --font-headings ); +} +``` + +In the above example, the `body`'s font-family will be what the user selected as the base font, or `inherit` if `--font-base` is not set. Likewise, the `h1`'s font-family will be what the user selected as the headings font, or `inherit` if `--font-headings` is not set. + +For more info on CSS Custom Properties, check out: + +- [MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/--*). +- [CSS Working Group specification](https://drafts.csswg.org/css-variables/#defining-variables). +- The [unset](https://drafts.csswg.org/css-cascade-4/#valdef-all-unset) keyword. + +### Fallbacks for browsers without support for CSS custom properties + +Browsers that don't support CSS custom properties don't know what to do with the `var` statement (neither the fallback within), so they ignore it. We can leverage this to provide fallbacks for them as well: + +```css +body { + font-family: serif; // Fallback for browsers without support. + font-family: var( --font-base, serif ); // Variable and fallback for browsers with support. +} + +h1 { + font-family: sans-serif; // Fallback for browsers without support. + font-family: var( + --font-headings, + sans-serif + ); // Variable and fallback for browsers with support. +} +``` + +### How to add a "Theme Default" option to the font list + +Themes can opt-in to add a _Theme Default_ option via the `enable_theme_default` parameter: + +```php +add_theme_support( + 'jetpack-global-styles', + [ + 'enable_theme_default' => true, + ] + ); +``` + +This will add a new option in the font picker called _Theme Default_. If the user hasn't selected any yet, it will be the active option by default (if the theme didn't add this option, the _System Font_ will be picked instead). When _Theme Default_ is active, the corresponding CSS custom property value will be `unset`. + +For example, if the user selects: + +- the base font to _Theme Default_, then `--font-base` value will be `unset` +- the headings font to _Lora_, then `--font-headings` value will be `Lora` + +Essentially, the _Theme Default_ option is how an user would reset their choices and get back the theme default styles. We recommend adding this option and using fallbacks in the CSS custom properties declarations. + +### How to use a fallback stylesheet (experimental) + +As an experimental feature, the Global Styles plugin can provide a fallback stylesheet that uses the CSS custom properties. This is so themes can use Global Styles without introducing any changes to its own stylesheet. + +```php +add_theme_support( + 'jetpack-global-styles', + [ + 'enqueue_experimental_styles' => true, + ] +); +``` + +If the `enqueue_experimental_styles` is present and it's `true`, the plugin will enqueue a fallback stylesheet that overrides the theme's. This feature is experimental. The overrides can't take into account all the ways that themes can present information (different tags, classes, etc.), so themes are responsible to check these are enough for its use case. + +Note that if the theme requests enqueueing the experimental stylesheet, the experimental Global Styles styles will override the theme ones once the plugin is activated. By default, until the user makes a font choice, the _System Font_ will be used. + +## _Theme Default_ option + +Themes that use this experimental feature can also add a _Theme Default_ option in the font picker by setting the `enable_theme_default` property to true. Note that when the user selects _Theme Default_ the font to be used is _System Font_. Per se, this isn't very useful, however, themes can also provide fallback fonts for when the font is `unset` (the user selected _Theme Default_ or hasn't made any choice yet): + +```php +add_theme_support( + 'jetpack-global-styles', + [ + 'enqueue_experimental_styles' => true, + 'enable_theme_default' => true, + 'font_base' => 'serif', + 'font_headings' => 'sans-serif', + ] +); +``` + +## Existing hooks + +### jetpack_global_styles_data_set_get_data filter + +See [README-DATA.md](./README-DATA.md). + +### jetpack_global_styles_data_set_save_data filter + +See [README-DATA.md](./README-DATA.md). + +### jetpack_global_styles_permission_check_additional filter + +This filter can be used to add _an additional check_ to decide whether 1) the global styles sidebar is enqueued and 2) the REST API endpoint should return the data. Note the existing checks in place: + +- The user is logged in and has the `customize` capability. +- The site uses a theme that has declared support for `jetpack-global-styles`. + +```php +function permission_check_callback( $has_permissions ) { + if ( $some_condition ) { + return false; + } + return $has_permissions; +} +add_filter( 'jetpack_global_styles_permission_check_additional', permission_check_callback ); +``` + +### jetpack_global_styles_settings + +This filter can be used to configure any of the Global Styles settings. + +REST API related: + +- `rest_namespace`: REST API namespace. +- `rest_route`: REST API route. +- `rest_path_client`: the path to be used by the client to query the endpoint. + +To white-label Global Styles: + +- `theme_support`: the name of the theme support feature. +- `option_name`: the name of the option to use in the database. +- `redux_store_name`: the name of the custom Redux store used by the client. +- `plugin_name`: the name of the registered plugin for the block editor. + +## FAQ + +### Which fonts are available? + +These are the fonts available via the font selector in the sidebar and for the themes to set as defaults: + +- Arvo +- Bodoni Moda +- Cabin +- Chivo +- DM Sans +- Domine +- Fira Sans +- Inter +- Libre Baskerville +- Libre Franklin +- Lora +- Merriweather +- Montserrat +- Open Sans +- Playfair Display +- Poppins +- Roboto +- Roboto Slab +- Rubik +- Source Sans Pro +- Source Serif Pro +- Space Mono +- Work Sans + +### What will happen when the user changes to another theme that supports GlobalStyles? + +Everything will continue to work as expected. If the user had selected: + +- The _Theme Default_ option, the new theme's font will be used instead of the old one. +- A _custom font_, it'll still be used in the new theme. Note, however, that themes can make different choices as to what they consider base and font selections. For example: a theme can use the headings font for quotes and another theme can use the base font. + +### What will happen when the user changes to a theme that doesn't support Global Styles or the plugin is deactivated? + +The theme's font will be used. diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/class-global-styles-fonts-message-control.php b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/class-global-styles-fonts-message-control.php new file mode 100644 index 0000000000000..c298cf7fc3ce4 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/class-global-styles-fonts-message-control.php @@ -0,0 +1,125 @@ +render_intro_text(); + $this->maybe_render_block_editor_link(); + $this->render_learn_more_link(); + } + + /** + * Render the intro text to the customizer help document content + */ + private function render_intro_text() { + $intro_text = __( 'You can change your fonts using Global Styles, which can be found in the Block Editor.', 'jetpack-mu-wpcom' ); + ?> +

+ +

+ +

+ + + +

+ get_link_to_editor_with_global_styles_sidebar(); + if ( null === $block_editor_with_global_styles_url ) { + return; + } + // Translators: This is a link which opens the block editor, and then opens the global styles sidebar. + $block_editor_link_text = __( 'Click here to open the Block Editor and change your fonts.', 'jetpack-mu-wpcom' ); + ?> +

+ + + +

+ get_site_slug(); + + $url_components = array( + $base_url, + 'page/', + $site_slug . '/', + $homepage_id, + '?openSidebar=global-styles', + ); + + return implode( '', $url_components ); + } + + /** + * Get the site slug + */ + private function get_site_slug() { + if ( method_exists( '\WPCOM_Masterbar', 'get_calypso_site_slug' ) ) { + return \WPCOM_Masterbar::get_calypso_site_slug( get_current_blog_id() ); + } + + $home_url = home_url( '/' ); + $site_slug = wp_parse_url( $home_url, PHP_URL_HOST ); + + return $site_slug; + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/class-global-styles.php b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/class-global-styles.php new file mode 100644 index 0000000000000..ae04b0aae72b4 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/class-global-styles.php @@ -0,0 +1,612 @@ + 'Theme Default', + 'value' => 'unset', + ), + array( + 'label' => 'System Font', + 'value' => self::SYSTEM_FONT, + ), + 'Arvo', + 'Bodoni Moda', + 'Cabin', + 'Chivo', + 'Courier Prime', + 'DM Sans', + 'Domine', + 'EB Garamond', + 'Fira Sans', + 'Inter', + 'Josefin Sans', + 'Libre Baskerville', + 'Libre Franklin', + 'Lora', + 'Merriweather', + 'Montserrat', + 'Nunito', + 'Open Sans', + 'Overpass', + 'Playfair Display', + 'Poppins', + 'Raleway', + 'Roboto', + 'Roboto Slab', + 'Rubik', + 'Source Sans Pro', + 'Source Serif Pro', + 'Space Mono', + 'Work Sans', + ); + + /** + * Creates instance. + * + * @return \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Global_Styles + */ + public static function init() { + if ( self::$instance === null ) { + self::$instance = new self(); + } + + return self::$instance; + } + + /** + * Global Styles setup. + */ + public function __construct() { + $this->update_plugin_settings(); + + // DATA TO EXPOSE THROUGH THE REST API. + require_once __DIR__ . '/includes/class-data-set.php'; + $this->rest_api_data = new Data_Set( + array( + 'blogname' => array( + 'type' => 'option', + 'name' => 'blogname', + 'default' => 'Your site name', + ), + 'font_base' => array( + 'type' => 'option', + 'name' => array( 'jetpack_global_styles', 'font_base' ), + 'default' => 'unset', + 'updatable' => true, + ), + 'font_headings' => array( + 'type' => 'option', + 'name' => array( 'jetpack_global_styles', 'font_headings' ), + 'default' => 'unset', + 'updatable' => true, + ), + 'font_base_default' => array( + 'type' => 'theme', + 'name' => array( 'jetpack-global-styles', 'font_base' ), + 'default' => self::SYSTEM_FONT, + ), + 'font_headings_default' => array( + 'type' => 'theme', + 'name' => array( 'jetpack-global-styles', 'font_headings' ), + 'default' => self::SYSTEM_FONT, + ), + 'font_options' => array( + 'type' => 'literal', + 'default' => self::AVAILABLE_FONTS, + ), + 'font_pairings' => array( + 'type' => 'literal', + 'default' => array( + array( + 'label' => 'Playfair Display / Fira Sans', + 'headings' => 'Playfair Display', + 'base' => 'Fira Sans', + ), + array( + 'label' => 'Cabin / Raleway', + 'headings' => 'Cabin', + 'base' => 'Raleway', + ), + array( + 'label' => 'Chivo / Open Sans', + 'headings' => 'Chivo', + 'base' => 'Open Sans', + ), + array( + 'label' => 'Arvo / Montserrat', + 'headings' => 'Arvo', + 'base' => 'Montserrat', + ), + array( + 'label' => 'Space Mono / Roboto', + 'headings' => 'Space Mono', + 'base' => 'Roboto', + ), + array( + 'label' => 'Bodoni Moda / Overpass', + 'headings' => 'Bodoni Moda', + 'base' => 'Overpass', + ), + array( + 'label' => 'Inter / Source Serif Pro', + 'headings' => 'Inter', + 'base' => 'Source Serif Pro', + ), + ), + ), + ) + ); + + // Setup REST API for the editor. Some environments (WordPress.com) + // may not load the theme functions for REST API calls, + // so we need to initialize it independently of theme support. + add_action( 'rest_api_init', array( $this, 'rest_api_init' ) ); + + add_filter( 'jetpack_global_styles_data_set_get_data', array( $this, 'maybe_filter_font_list' ) ); + add_filter( 'jetpack_global_styles_data_set_save_data', array( $this, 'filter_and_validate_font_options' ) ); + + // Setup editor. + if ( $this->can_use_global_styles() ) { + add_action( + 'enqueue_block_editor_assets', + array( $this, 'enqueue_block_editor_assets' ) + ); + add_filter( + 'block_editor_settings', + array( $this, 'block_editor_settings' ), + PHP_INT_MAX // So it runs last and overrides any style provided by the theme. + ); + add_action( 'customize_register', array( $this, 'register_customizer_option' ) ); + } + + // Setup front-end. + add_action( + 'wp_enqueue_scripts', + array( $this, 'wp_enqueue_scripts' ), + PHP_INT_MAX // So it runs last and overrides any style provided by the theme. + ); + } + + /** + * Register customizer modifications + * Add the 'Font' section to customizer. + * + * @param \WP_Customize_Manager $wp_customize an instance of WP_Customize_Manager. + */ + public function register_customizer_option( $wp_customize ) { + require_once __DIR__ . '/class-global-styles-fonts-message-control.php'; + + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_tracks_events_fonts_section_control' ) ); + + $wp_customize->add_section( + 'global_styles_fonts_section', + array( + 'title' => __( 'Fonts', 'jetpack-mu-wpcom' ), + ) + ); + + $wp_customize->add_control( + new Global_Styles_Fonts_Message_Control( + $wp_customize, + 'global_styles_fonts_message_control', + array( + 'section' => 'global_styles_fonts_section', + 'settings' => array(), + ) + ) + ); + } + + /** + * Enqueue script customizer_fonts which executes tracks events when clicking the block editor and support links from the 'Fonts' section. + */ + public function enqueue_tracks_events_fonts_section_control() { + $asset_file = include Jetpack_Mu_Wpcom::BASE_DIR . 'build/jetpack-global-styles-customizer-fonts/jetpack-global-styles-customizer-fonts.asset.php'; + wp_enqueue_script( + 'jetpack-global-styles-customizer-fonts', + plugins_url( 'build/jetpack-global-styles-customizer-fonts/jetpack-global-styles-customizer-fonts.js', Jetpack_Mu_Wpcom::BASE_FILE ), + $asset_file['dependencies'] ?? array(), + $asset_file['version'] ?? filemtime( Jetpack_Mu_Wpcom::BASE_DIR . 'build/jetpack-global-styles-customizer-fonts/jetpack-global-styles-customizer-fonts.js' ), + true + ); + + $current_user = wp_get_current_user(); + $tracks_events_data = array(); + if ( $current_user->exists() ) { + $tracks_events_data['user_id'] = (int) $current_user->ID; + $tracks_events_data['user_login'] = esc_js( $current_user->user_login ); + } + + wp_localize_script( + 'jetpack-global-styles-customizer-fonts', + 'tracks_events_fonts_section_control_variables', + $tracks_events_data + ); + } + + /** + * Let 3rd parties configure plugin settings. + */ + private function update_plugin_settings() { + $settings = apply_filters( + 'jetpack_global_styles_settings', + array( + // Server-side settings. + 'rest_namespace' => $this->rest_namespace, + 'rest_route' => $this->rest_route, + 'theme_support' => $this->theme_support, + 'option_name' => $this->option_name, + // Client-side settings. + 'rest_path_client' => $this->rest_path_client, + 'redux_store_name' => $this->redux_store_name, + 'plugin_name' => $this->plugin_name, + ) + ); + + $this->rest_namespace = $settings['rest_namespace']; + $this->rest_route = $settings['rest_route']; + $this->theme_support = $settings['theme_support']; + $this->option_name = $settings['option_name']; + $this->rest_path_client = $settings['rest_path_client']; + $this->redux_store_name = $settings['redux_store_name']; + $this->plugin_name = $settings['plugin_name']; + } + + /** + * Initialize REST API endpoint. + */ + public function rest_api_init() { + require_once __DIR__ . '/includes/class-json-endpoint.php'; + $rest_api = new JSON_Endpoint( + $this->rest_namespace, + $this->rest_route, + $this->rest_api_data, + array( $this, 'can_use_global_styles' ) + ); + $rest_api->setup(); + } + + /** + * Whether we should load Global Styles + * per this user and site. + * + * @return boolean + */ + public function can_use_global_styles() { + return is_user_logged_in() && + current_user_can( 'customize' ) && + current_theme_supports( $this->theme_support ) && + apply_filters( 'jetpack_global_styles_permission_check_additional', true ); + } + + /** + * We want the front-end styles enqueued in the editor + * and wrapped by the .editor-styles-wrapper class, + * so they don't bleed into other parts of the editor. + * + * We also want the global styles to override the theme's stylesheet. + * We do so by hooking into the block_editor_settings + * and append this style the last. + * + * @param array $settings The editor settings. + * + * @return array $settings array with the inline styles added. + */ + public function block_editor_settings( $settings ) { + if ( empty( $settings['styles'] ) || ! is_array( $settings['styles'] ) ) { + $settings['styles'] = array(); + } + + // Append them last, so it overrides any existing inline styles. + $settings['styles'][] = array( + 'css' => $this->get_inline_css(), + ); + + return $settings; + } + + /** + * Enqueues the assets for the editor. + * + * @return void + */ + public function enqueue_block_editor_assets() { + $asset_file = include Jetpack_Mu_Wpcom::BASE_DIR . 'build/jetpack-global-styles/jetpack-global-styles.asset.php'; + wp_enqueue_script( + 'jetpack-global-styles-editor-script', + plugins_url( 'build/jetpack-global-styles/jetpack-global-styles.js', Jetpack_Mu_Wpcom::BASE_FILE ), + $asset_file['dependencies'] ?? array(), + $asset_file['version'] ?? filemtime( Jetpack_Mu_Wpcom::BASE_DIR . 'build/jetpack-global-styles/jetpack-global-styles.js' ), + true + ); + wp_set_script_translations( 'jetpack-global-styles-editor-script', 'jetpack-mu-wpcom' ); + wp_localize_script( + 'jetpack-global-styles-editor-script', + 'JETPACK_GLOBAL_STYLES_EDITOR_CONSTANTS', + array( + 'PLUGIN_NAME' => $this->plugin_name, + 'REST_PATH' => $this->rest_path_client, + 'STORE_NAME' => $this->redux_store_name, + ) + ); + wp_enqueue_style( + 'jetpack-global-styles-editor-style', + plugins_url( 'build/jetpack-global-styles/jetpack-global-styles.css', Jetpack_Mu_Wpcom::BASE_FILE ), + array(), + $asset_file['version'] ?? filemtime( Jetpack_Mu_Wpcom::BASE_DIR . 'build/jetpack-global-styles/jetpack-global-styles.css' ) + ); + } + + /** + * Enqueues the assets for front-end. + * + * We want the global styles to override the theme's stylesheet, + * that's why they are inlined. + * + * @return void + */ + public function wp_enqueue_scripts() { + wp_register_style( + 'jetpack-global-styles-frontend-style', + false, + array(), + true + ); + wp_add_inline_style( 'jetpack-global-styles-frontend-style', $this->get_inline_css( true ) ); + wp_enqueue_style( 'jetpack-global-styles-frontend-style' ); + } + + /** + * Prepare the inline CSS. + * + * @param boolean $only_selected_fonts Whether it should load all the fonts or only the selected. False by default. + * @return string + */ + private function get_inline_css( $only_selected_fonts = false ) { + /** + * Filters the Google Fonts API URL. + * + * @param string $url The Google Fonts API URL. + */ + $root_url = esc_url( apply_filters( 'jetpack_global_styles_google_fonts_api_url', $this->root_url ) ); + + $result = ''; + + $data = $this->rest_api_data->get_data(); + + /* + * Add the fonts we need: + * + * - all of them for the backend + * - only the selected ones for the frontend + */ + $font_list = array(); + // We want $font_list to only contain valid Google Font values, + // so we filter out things like 'unset' on the system font. + $font_values = array_diff( $this->get_font_values( $data['font_options'] ), array( 'unset', self::SYSTEM_FONT ) ); + if ( true === $only_selected_fonts ) { + foreach ( array( 'font_base', 'font_base_default', 'font_headings', 'font_headings_default' ) as $key ) { + if ( in_array( $data[ $key ], $font_values, true ) ) { + $font_list[] = $data[ $key ]; + } + } + } else { + $font_list = $font_values; + } + + if ( count( $font_list ) > 0 ) { + $font_list_str = ''; + foreach ( $font_list as $font ) { + // Some fonts lack italic variants, + // the API will return only the regular and bold CSS for those. + $font_list_str = $font_list_str . $font . ':thin,extralight,light,regular,medium,semibold,bold,italic,bolditalic,extrabold,black|'; + } + $result = $result . "@import url('" . $root_url . '?family=' . $font_list_str . "');"; + } + + /* + * Add the CSS custom properties. + * + * Note that we transform var_name into var-name, + * so the output is: + * + * :root{ + * --var-name-1: value; + * --var-name-2: value; + * } + * + */ + $result .= ':root {'; + $value = ''; + $keys = array( 'font_headings', 'font_base', 'font_headings_default', 'font_base_default' ); + foreach ( $keys as $key ) { + $value = $data[ $key ]; + $result .= ' --' . str_replace( '_', '-', $key ) . ': ' . $value . ';'; + } + $result .= '}'; + + /* + * If the theme opts-in, also add a default stylesheet + * that uses the CSS custom properties. + * + * This is a fallback mechanism in case there are themes + * we don't want to / can't migrate to use CSS vars. + */ + $theme_defaults = get_theme_support( $this->theme_support ); + if ( is_array( $theme_defaults ) ) { + $theme_defaults = $theme_defaults[0]; + } + + if ( + is_array( $theme_defaults ) && + array_key_exists( 'enqueue_experimental_styles', $theme_defaults ) && + true === $theme_defaults['enqueue_experimental_styles'] + ) { + $result .= file_get_contents( plugin_dir_path( __FILE__ ) . 'static/style.css', true ); + } + + return $result; + } + + /** + * Callback for get data filter. + * + * @param array $result Data to be sent through the REST API. + * + * @return array Filtered result. + */ + public function maybe_filter_font_list( $result ) { + $theme_defaults = get_theme_support( $this->theme_support ); + if ( is_array( $theme_defaults ) ) { + $theme_defaults = $theme_defaults[0]; + } + + if ( + array_key_exists( 'font_options', $result ) && + ( + ! is_array( $theme_defaults ) || + ! array_key_exists( 'enable_theme_default', $theme_defaults ) || + true !== $theme_defaults['enable_theme_default'] + ) + ) { + $result['font_options'] = array_slice( $result['font_options'], 1 ); + } + + return $result; + } + + /** + * Return the list of available font values. + * + * @param array $font_list Array of fonts to process. + * @return array Font values. + */ + private function get_font_values( $font_list ) { + $font_values = array(); + foreach ( $font_list as $font ) { + if ( is_array( $font ) ) { + $font_values[] = $font['value']; + } else { + $font_values[] = $font; + } + } + return $font_values; + } + + /** + * Callback for save data filter. + * + * @param array $incoming_data The data to validate. + * @return array Filtered result. + */ + public function filter_and_validate_font_options( $incoming_data ) { + $result = array(); + + $font_values = $this->get_font_values( self::AVAILABLE_FONTS ); + foreach ( array( 'font_base', 'font_headings' ) as $key ) { + if ( + array_key_exists( $key, $incoming_data ) && + in_array( $incoming_data[ $key ], $font_values, true ) + ) { + $result[ $key ] = $incoming_data[ $key ]; + } + } + + return $result; + } +} + +add_action( 'init', array( __NAMESPACE__ . '\Global_Styles', 'init' ) ); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/customizer-fonts/index.js b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/customizer-fonts/index.js new file mode 100644 index 0000000000000..3490ce437f45f --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/customizer-fonts/index.js @@ -0,0 +1,31 @@ +/** + * Record a Tracks event. + * @param tracksEventName - {string} The name of the event to record in Tracks. + */ +function recordTracksEvent( tracksEventName ) { + window.parent.window._tkq = window.parent.window._tkq || []; + if ( window.tracks_events_fonts_section_control_variables.user_id ) { + window.parent.window._tkq.push( [ + 'identifyUser', + Number( window.tracks_events_fonts_section_control_variables.user_id ), + `${ window.tracks_events_fonts_section_control_variables.user_login }`, + ] ); + } + window.parent.window._tkq.push( [ 'recordEvent', tracksEventName ] ); +} +const customizerGlobalStylesBlockEditorLinkElem = window.parent.document.getElementById( + 'customizer_global_styles_block_editor_link' +); +if ( customizerGlobalStylesBlockEditorLinkElem ) { + customizerGlobalStylesBlockEditorLinkElem.onclick = function () { + recordTracksEvent( 'calypso_customizer_global_styles_block_editor_link_clicked' ); + }; +} +const customizerGlobalStylesSupportLinkElem = window.parent.document.getElementById( + 'customizer_global_styles_support_link' +); +if ( customizerGlobalStylesSupportLinkElem ) { + customizerGlobalStylesSupportLinkElem.onclick = function () { + recordTracksEvent( 'calypso_customizer_global_styles_support_link_clicked' ); + }; +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/editor.scss b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/editor.scss new file mode 100644 index 0000000000000..c8df07051dfea --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/editor.scss @@ -0,0 +1,2 @@ +@import "./src/global-styles-sidebar.scss"; +@import "./src/font-pairings-panel.scss"; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-point-literal.php b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-point-literal.php new file mode 100644 index 0000000000000..d4c48d2481bc3 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-point-literal.php @@ -0,0 +1,43 @@ +value = $meta['default']; + } + } + + /** + * Implements \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Point interface. + * + * @return mixed The literal value. + */ + public function get_value() { + return $this->value; + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-point-option.php b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-point-option.php new file mode 100644 index 0000000000000..e992ddbe5245a --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-point-option.php @@ -0,0 +1,111 @@ +option_name = $meta['name'][0]; + $this->option_property = $meta['name'][1]; + } else { + $this->option_name = $meta['name']; + } + + if ( array_key_exists( 'default', $meta ) ) { + $this->default_value = $meta['default']; + } else { + $this->default_value = false; + } + } + + /** + * Implements \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Point interface. + * + * @return mixed The value to return. + */ + public function get_value() { + if ( ! isset( $this->option_property ) ) { + return get_option( $this->option_name, $this->default_value ); + } + + $value = get_option( $this->option_name, array() ); + if ( is_array( $value ) && array_key_exists( $this->option_property, $value ) ) { + return $value[ $this->option_property ]; + } + + return $this->default_value; + } + + /** + * Return the option name this data point belongs to. + * + * @return string Option name + */ + public function get_option_name() { + return $this->option_name; + } + + /** + * Process new data. + * + * @param mixed $current_option_value Current option value. + * @param mixed $new_value Value to update. + * @return mixed The modified option value. + */ + public function process_data_point( $current_option_value, $new_value ) { + $result = $current_option_value; + + if ( isset( $this->option_property ) ) { + if ( is_array( $result ) ) { + $result[ $this->option_property ] = $new_value; + } else { + // Unexpected current option value. We were expecting an array, + // but it's something like a string or boolean and we can't + // update the single data point. Throw away the current option + // value and make a new array. + $result = array( $this->option_property => $new_value ); + } + } else { + $result = $new_value; + } + + return $result; + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-point-theme.php b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-point-theme.php new file mode 100644 index 0000000000000..cf01045b5a79b --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-point-theme.php @@ -0,0 +1,96 @@ +feature_name = $meta['name'][0]; + $this->feature_property = $meta['name'][1]; + } else { + $this->feature_name = $meta['name']; + } + + if ( array_key_exists( 'default', $meta ) ) { + $this->default_value = $meta['default']; + } + } + + /** + * Implements the \Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles\Data_Point interface. + * + * @return mixed The theme value. + */ + public function get_value() { + $theme_support = get_theme_support( $this->feature_name ); + if ( is_array( $theme_support ) ) { + $theme_support = $theme_support[0]; + } + + if ( is_bool( $theme_support ) ) { + return $this->default_value; + } + + if ( + is_array( $theme_support ) && + ! isset( $this->feature_property ) + ) { + return $theme_support; + } + + if ( + is_array( $theme_support ) && + isset( $this->feature_property ) && + array_key_exists( $this->feature_property, $theme_support ) + ) { + return $theme_support[ $this->feature_property ]; + } + + if ( + is_array( $theme_support ) && + isset( $this->feature_property ) && + ! array_key_exists( $this->feature_property, $theme_support ) + ) { + return $this->default_value; + } + + return $this->default_value; + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-set.php b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-set.php new file mode 100644 index 0000000000000..0222a020979ca --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-data-set.php @@ -0,0 +1,167 @@ +data_meta = $data_meta; + $this->data_set = $this->build_data_set( $data_meta ); + } + + /** + * Build data set from the meta data provided. + * + * @param array $data_meta Meta data description. + * @return array The data set structure. + */ + private function build_data_set( $data_meta ) { + require_once __DIR__ . '/class-data-point-literal.php'; + require_once __DIR__ . '/class-data-point-option.php'; + require_once __DIR__ . '/class-data-point-theme.php'; + + $result = array(); + foreach ( $data_meta as $key => $meta ) { + if ( $this->is_data_point_literal( $meta ) ) { + $result[ $key ] = new Data_Point_Literal( $meta ); + } elseif ( $this->is_data_point_option( $meta ) ) { + $result[ $key ] = new Data_Point_Option( $meta ); + } elseif ( $this->is_data_point_theme( $meta ) ) { + $result[ $key ] = new Data_Point_Theme( $meta ); + } + } + return $result; + } + + /** + * Whether the description provided is a data point + * whose value should be taken literally. + * + * @param array $meta Data point description. + * @return boolean + */ + private function is_data_point_literal( $meta ) { + return array_key_exists( 'type', $meta ) && 'literal' === $meta['type']; + } + + /** + * Whether the description provided is a data point + * whose value should be taken from an option. + * + * @param array $meta Data point description. + * @return boolean + */ + private function is_data_point_option( $meta ) { + return array_key_exists( 'type', $meta ) && + 'option' === $meta['type'] && + array_key_exists( 'name', $meta ); + } + + /** + * Whether the description provided is a data point + * that can be updated. + * + * @param array $meta Data point description. + * @return boolean + */ + private function is_data_point_updatable( $meta ) { + return $this->is_data_point_option( $meta ) && + array_key_exists( 'updatable', $meta ) && + $meta['updatable']; + } + + /** + * Whether the description provided is a data point + * whose value should be taken from theme support. + * + * @param array $meta Data point description. + * @return boolean + */ + private function is_data_point_theme( $meta ) { + return array_key_exists( 'name', $meta ) && + array_key_exists( 'type', $meta ) && + 'theme' === $meta['type']; + } + + /** + * Process the data description given and return the values. + * + * @return array Values. + */ + public function get_data() { + $result = array(); + foreach ( $this->data_set as $key => $data_point ) { + $result[ $key ] = $data_point->get_value(); + } + + $result = apply_filters( 'jetpack_global_styles_data_set_get_data', $result ); + + return $result; + } + + /** + * Process incoming data. + * + * @param array $incoming_data Incoming data. + */ + public function save_data( $incoming_data ) { + $to_update = array(); + + $incoming_data = apply_filters( 'jetpack_global_styles_data_set_save_data', $incoming_data ); + + $options_updatable = array_filter( + $this->data_meta, + array( $this, 'is_data_point_updatable' ) + ); + foreach ( $options_updatable as $key => $meta ) { + $option_name = $this->data_set[ $key ]->get_option_name(); + + // Get current value, if we haven't yet. + if ( ! array_key_exists( $option_name, $to_update ) ) { + $to_update[ $option_name ] = get_option( $option_name ); + } + + // Override with incoming value, if appropiate. + // At this point it should have been validated, sanitized, etc. + if ( array_key_exists( $key, $incoming_data ) ) { + $to_update[ $option_name ] = $this->data_set[ $key ]->process_data_point( $to_update[ $option_name ], $incoming_data[ $key ] ); + } + } + + $did_update = false; + foreach ( $to_update as $key => $value ) { + if ( update_option( $key, $value ) ) { + $did_update = true; + } + } + + return $did_update; + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-json-endpoint.php b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-json-endpoint.php new file mode 100644 index 0000000000000..55a3f57916907 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/class-json-endpoint.php @@ -0,0 +1,116 @@ +rest_namespace = $rest_namespace; + $this->rest_route = $rest_route; + $this->data_set = $data_set; + $this->permission_cb = $permission_cb; + } + + /** + * Callback to determine whether the request can proceed. + * + * @return boolean + */ + public function permission_callback() { + return call_user_func( $this->permission_cb ); + } + + /** + * Initialize the routes. To be called on `rest_api_init' + * + * @return void + */ + public function setup() { + register_rest_route( + $this->rest_namespace, + $this->rest_route, + array( + array( + 'methods' => \WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_data' ), + 'permission_callback' => array( $this, 'permission_callback' ), + ), + ) + ); + register_rest_route( + $this->rest_namespace, + $this->rest_route, + array( + array( + 'methods' => \WP_REST_Server::CREATABLE, + 'callback' => array( $this, 'update_data' ), + 'permission_callback' => array( $this, 'permission_callback' ), + ), + ) + ); + } + + /** + * Process the incoming request to get data. + * + * @return Array + */ + public function get_data() { + return $this->data_set->get_data(); + } + + /** + * Process the incoming request to update data. + * + * @param \WP_REST_Request $request Incoming request. + * @return Boolean False if data hasn't changed or update failed, true otherwise. + */ + public function update_data( \WP_REST_Request $request ) { + $incoming_data = $request->get_json_params(); + return $this->data_set->save_data( $incoming_data ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/interface-data-point.php b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/interface-data-point.php new file mode 100644 index 0000000000000..8553e47e288bc --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/includes/interface-data-point.php @@ -0,0 +1,17 @@ + { + const { getOption, hasLocalChanges } = select( globalStylesStore ); + return { + siteName: getOption( SITE_NAME ), + fontHeadings: getOption( FONT_HEADINGS ), + fontHeadingsDefault: getOption( FONT_HEADINGS_DEFAULT ), + fontBase: getOption( FONT_BASE ), + fontBaseDefault: getOption( FONT_BASE_DEFAULT ), + fontPairings: getOption( FONT_PAIRINGS ), + fontOptions: getOption( FONT_OPTIONS ), + hasLocalChanges: hasLocalChanges(), + }; + } ), + withDispatch( dispatch => ( { + updateOptions: dispatch( globalStylesStore ).updateOptions, + publishOptions: dispatch( globalStylesStore ).publishOptions, + resetLocalChanges: dispatch( globalStylesStore ).resetLocalChanges, + } ) ) + )( GlobalStylesSidebar ), +} ); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/constants.js b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/constants.js new file mode 100644 index 0000000000000..e59e185d18422 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/constants.js @@ -0,0 +1,7 @@ +export const FONT_BASE = 'font_base'; +export const FONT_BASE_DEFAULT = 'font_base_default'; +export const FONT_HEADINGS = 'font_headings'; +export const FONT_HEADINGS_DEFAULT = 'font_headings_default'; +export const FONT_PAIRINGS = 'font_pairings'; +export const FONT_OPTIONS = 'font_options'; +export const SITE_NAME = 'blogname'; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/dom-updater.js b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/dom-updater.js new file mode 100644 index 0000000000000..cef284ca2cf91 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/dom-updater.js @@ -0,0 +1,59 @@ +import { subscribe, select } from '@wordpress/data'; +import domReady from '@wordpress/dom-ready'; +import { isEmpty, isEqual } from 'lodash'; + +/** + * DOM updater + * @param {string[]} options - A list of option names to keep track of. + * @param {Function} getOptionValue - A function that given an option name as a string, returns the current option value. + */ +export default ( options, getOptionValue ) => { + domReady( () => { + // Book-keeping. + const currentOptions = {}; + let previousOptions = {}; + const cssVariables = {}; + options.forEach( option => { + cssVariables[ option ] = `--${ option.replace( '_', '-' ) }`; + } ); + + let styleElement = null; + subscribe( () => { + /** + * Do nothing until the editor is ready. This is required when + * working in wpcom iframe environment to avoid running code before + * everything has loaded, which can cause bugs like the following. + * @see https://github.com/Automattic/wp-calypso/pull/40690 + */ + const isEditorReady = select( 'core/editor' ).__unstableIsEditorReady; + if ( isEditorReady && isEditorReady() === false ) { + return; + } + + // Create style element if it has not been created yet. Must happen + // after the editor is ready or the style element will be appended + // before the styles it needs to affect. + if ( ! styleElement ) { + styleElement = document.createElement( 'style' ); + document.body.appendChild( styleElement ); + } + + // Maybe bail-out early. + options.forEach( option => { + currentOptions[ option ] = getOptionValue( option ); + } ); + if ( isEmpty( currentOptions ) || isEqual( currentOptions, previousOptions ) ) { + return; + } + previousOptions = { ...currentOptions }; + + // Update style node. We need this to be a stylesheet rather than inline styles + // so the styles apply to all editor instances incl. previews. + let declarationList = ''; + Object.keys( currentOptions ).forEach( key => { + declarationList += `${ cssVariables[ key ] }:${ currentOptions[ key ] };`; + } ); + styleElement.textContent = `.edit-post-visual-editor .editor-styles-wrapper{${ declarationList }}`; + } ); + } ); +}; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/font-pairings-panel.js b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/font-pairings-panel.js new file mode 100644 index 0000000000000..284a842aff175 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/font-pairings-panel.js @@ -0,0 +1,42 @@ +import { Button } from '@wordpress/components'; +import { __ } from '@wordpress/i18n'; +import { ENTER } from '@wordpress/keycodes'; +import clsx from 'clsx'; +import NoSupport from './no-support'; + +export default ( { fontPairings, fontBase, fontHeadings, update } ) => { + return ( + <> +

{ __( 'Font Pairings', 'jetpack-mu-wpcom' ) }

+ { fontPairings && fontHeadings && fontBase ? ( +
+
+ { fontPairings.map( ( { label, headings, base } ) => { + const isSelected = headings === fontHeadings && base === fontBase; + return ( + + ); + } ) } +
+
+ ) : ( + + ) } + + ); +}; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/font-pairings-panel.scss b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/font-pairings-panel.scss new file mode 100644 index 0000000000000..4ca841cbfefeb --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/font-pairings-panel.scss @@ -0,0 +1,32 @@ +.style-preview__font-options { + width: 100%; +} + +.style-preview__font-option { + min-height: 3.4em; + box-shadow: inset 0 0 0 1px var(--studio-gray-10); + display: flex; + width: 100%; + position: relative; + // for IE, see https://github.com/Automattic/wp-calypso/pull/40881#issuecomment-610836378 + vertical-align: top; + + + .style-preview__font-option { + margin-top: 8px; + } + + .style-preview__font-option-contents { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + width: 100%; + } + + &.is-selected { + // override default focus and hover styles for selected-fonts buttons + // `!important` is used because there are default `focus` and `hover` styles with high specificities. + color: var(--studio-blue-40) !important; + box-shadow: inset 0 0 0 1px var(--studio-blue-40) !important; + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/font-selection-panel.js b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/font-selection-panel.js new file mode 100644 index 0000000000000..b8338145e279d --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/font-selection-panel.js @@ -0,0 +1,38 @@ +import { SelectControl } from '@wordpress/components'; +import { __ } from '@wordpress/i18n'; +import NoSupport from './no-support'; + +export default ( { + fontBase, + fontBaseDefault, + fontHeadings, + fontHeadingsDefault, + fontBaseOptions, + fontHeadingsOptions, + updateBaseFont, + updateHeadingsFont, +} ) => { + if ( ! fontBaseOptions || ! fontHeadingsOptions ) { + return ; + } + + return ( + <> + updateHeadingsFont( newValue ) } + style={ { fontFamily: fontHeadings !== 'unset' ? fontHeadings : fontHeadingsDefault } } + /> + updateBaseFont( newValue ) } + style={ { fontFamily: fontBase !== 'unset' ? fontBase : fontBaseDefault } } + /> +
+ + ); +}; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/global-styles-sidebar.js b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/global-styles-sidebar.js new file mode 100644 index 0000000000000..f7b424ce6c1cd --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/global-styles-sidebar.js @@ -0,0 +1,154 @@ +import { Button, PanelBody } from '@wordpress/components'; +import { dispatch } from '@wordpress/data'; +import { PluginSidebar, PluginSidebarMoreMenuItem } from '@wordpress/edit-post'; +import { useEffect } from '@wordpress/element'; +import { __, sprintf } from '@wordpress/i18n'; +import { typography } from '@wordpress/icons'; +import { getQueryArg } from '@wordpress/url'; +import { FONT_BASE, FONT_HEADINGS } from './constants'; +import FontPairingsPanel from './font-pairings-panel'; +import FontSelectionPanel from './font-selection-panel'; + +const ANY_PROPERTY = 'ANY_PROPERTY'; + +const isFor = filterProperty => option => + option.prop === ANY_PROPERTY || option.prop === filterProperty; + +const toOption = font => { + if ( typeof font === 'object' ) { + const { label, value, prop = ANY_PROPERTY } = font; + return { label, value, prop }; + } + return { label: font, value: font, prop: ANY_PROPERTY }; +}; +const isNotNull = option => option.value !== null && option.label !== null; + +const toOptions = ( options, filterProperty ) => + ! options ? [] : options.map( toOption ).filter( isNotNull ).filter( isFor( filterProperty ) ); + +const PanelActionButtons = ( { + hasLocalChanges, + resetAction, + publishAction, + className = null, +} ) => ( +
+ + +
+); + +/** + * Open the sidebar if the `openSidebar` query arg is set to `global-styles`. + */ +function maybeOpenSidebar() { + const openSidebar = getQueryArg( window.location.href, 'openSidebar' ); + if ( 'global-styles' === openSidebar ) { + dispatch( 'core/edit-post' ).openGeneralSidebar( 'jetpack-global-styles/global-styles' ); + } +} + +export default ( { + fontHeadings, + fontHeadingsDefault, + fontBase, + fontBaseDefault, + fontPairings, + fontOptions, + siteName, + publishOptions, + updateOptions, + hasLocalChanges, + resetLocalChanges, +} ) => { + useEffect( () => { + maybeOpenSidebar(); + }, [] ); + const publish = () => + publishOptions( { + [ FONT_BASE ]: fontBase, + [ FONT_HEADINGS ]: fontHeadings, + } ); + return ( + <> + + { __( 'Global Styles', 'jetpack-mu-wpcom' ) } + + + +

+ { + /* translators: %s: Name of site. */ + sprintf( __( 'You are customizing %s.', 'jetpack-mu-wpcom' ), siteName ) + } +

+

+ { __( + 'Any change you make here will apply to the entire website.', + 'jetpack-mu-wpcom' + ) } +

+ { hasLocalChanges ? ( +
+

+ { __( 'You have unsaved changes.', 'jetpack-mu-wpcom' ) } +

+ +
+ ) : null } +
+ + updateOptions( { [ FONT_BASE ]: value } ) } + updateHeadingsFont={ value => updateOptions( { [ FONT_HEADINGS ]: value } ) } + /> + + updateOptions( { [ FONT_HEADINGS ]: headings, [ FONT_BASE ]: base } ) + } + /> + + + { hasLocalChanges ? ( +

+ { __( 'You have unsaved changes.', 'jetpack-mu-wpcom' ) } +

+ ) : null } + +
+
+ + ); +}; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/global-styles-sidebar.scss b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/global-styles-sidebar.scss new file mode 100644 index 0000000000000..a728fd9e9a9ca --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/global-styles-sidebar.scss @@ -0,0 +1,23 @@ +.global-styles-sidebar { + // Make the font dropdown a bit more spacy. + .components-select-control__input { + line-height: 1; + /* stylelint-disable-next-line declaration-property-unit-allowed-list */ + font-size: 18px; + height: 36px; + } + + h3 { + margin: 0 0 1em; + } +} + +.global-styles-sidebar__panel-action-buttons { + display: flex; + justify-content: flex-end; + margin-bottom: 96px; +} + +.global-styles-sidebar__publish-button { + margin-left: 1em; +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/no-support.js b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/no-support.js new file mode 100644 index 0000000000000..7438bb1216171 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/no-support.js @@ -0,0 +1,11 @@ +import { __, sprintf } from '@wordpress/i18n'; + +export default ( { unsupportedFeature } ) => ( +

+ { sprintf( + /* translators: %s: feature name (i.e. font pairings, etc) */ + __( "Your active theme doesn't support %s.", 'jetpack-mu-wpcom' ), + unsupportedFeature + ) } +

+); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/store.js b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/store.js new file mode 100644 index 0000000000000..3dfb8aec527e0 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/src/store.js @@ -0,0 +1,105 @@ +import apiFetch from '@wordpress/api-fetch'; +import { register, createReduxStore } from '@wordpress/data'; + +// Global data passed from PHP. +const { STORE_NAME, REST_PATH } = JETPACK_GLOBAL_STYLES_EDITOR_CONSTANTS; // eslint-disable-line no-undef + +let cache = {}; +let alreadyFetchedOptions = false; + +const actions = { + *publishOptions( options ) { + yield { + type: 'IO_PUBLISH_OPTIONS', + options, + }; + return { + type: 'PUBLISH_OPTIONS', + options, + }; + }, + updateOptions( options ) { + return { + type: 'UPDATE_OPTIONS', + options, + }; + }, + fetchOptions() { + return { + type: 'IO_FETCH_OPTIONS', + }; + }, + resetLocalChanges() { + return { + type: 'RESET_OPTIONS', + options: cache, + }; + }, +}; + +export const store = createReduxStore( STORE_NAME, { + reducer( state, action ) { + switch ( action.type ) { + case 'UPDATE_OPTIONS': + case 'RESET_OPTIONS': + case 'PUBLISH_OPTIONS': + return { + ...state, + ...action.options, + }; + } + + return state; + }, + + actions, + + selectors: { + getOption( state, key ) { + return state ? state[ key ] : undefined; + }, + hasLocalChanges( state ) { + return !! state && Object.keys( cache ).some( key => cache[ key ] !== state[ key ] ); + }, + }, + + resolvers: { + // eslint-disable-next-line no-unused-vars + *getOption( key ) { + if ( alreadyFetchedOptions ) { + return; // do nothing + } + + let options; + try { + alreadyFetchedOptions = true; + options = yield actions.fetchOptions(); + } catch ( error ) { + options = {}; + } + cache = options; + return { + type: 'UPDATE_OPTIONS', + options, + }; + }, + }, + + controls: { + IO_FETCH_OPTIONS() { + return apiFetch( { path: REST_PATH } ); + }, + IO_PUBLISH_OPTIONS( { options } ) { + cache = options; // optimistically update the cache + return apiFetch( { + path: REST_PATH, + method: 'POST', + data: { + ...options, + }, + } ); + }, + }, +} ); + +register( store ); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/static/style.css b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/static/style.css new file mode 100644 index 0000000000000..e88bc6d49ac27 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/jetpack-global-styles/static/style.css @@ -0,0 +1,28 @@ +h1, +h2, +h3, +h4, +h5, +h6, +.editor-post-title .editor-post-title__block .editor-post-title__input, +h1.entry-title.entry-title, +.entry-title.entry-title { + font-family: var(--font-headings, var(--font-headings-default)); +} + +body, +p, +li { + font-family: var(--font-base, var(--font-base-default)); +} + +/* + * Despite best efforts, some fonts bleed into placeholders. + * Unstyle these after the fact. + */ +.components-placeholder p, +.components-placeholder li, +.a8c-media-placeholder p, +.a8c-media-placeholder li { + font-family: inherit; +} diff --git a/projects/packages/jetpack-mu-wpcom/webpack.config.js b/projects/packages/jetpack-mu-wpcom/webpack.config.js index a6b8c32814a7a..ae4cbd79f3144 100644 --- a/projects/packages/jetpack-mu-wpcom/webpack.config.js +++ b/projects/packages/jetpack-mu-wpcom/webpack.config.js @@ -8,13 +8,16 @@ module.exports = [ ...verbumConfig, { entry: { - 'error-reporting': './src/features/error-reporting/index.js', 'block-theme-previews': './src/features/block-theme-previews/index.js', 'core-customizer-css': './src/features/custom-css/custom-css/js/core-customizer-css.core-4.9.js', 'core-customizer-css-preview': './src/features/custom-css/custom-css/js/core-customizer-css-preview.js', 'customizer-control': './src/features/custom-css/custom-css/css/customizer-control.css', + 'error-reporting': './src/features/error-reporting/index.js', + 'jetpack-global-styles': './src/features/jetpack-global-styles/index.js', + 'jetpack-global-styles-customizer-fonts': + './src/features/jetpack-global-styles/customizer-fonts/index.js', 'override-preview-button-url': './src/features/override-preview-button-url/override-preview-button-url.js', 'paragraph-block-placeholder': From 1fcedae589c20dfe6d15be2f050c42be193f6187 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gergely=20M=C3=A1rk=20Juh=C3=A1sz?= <36671565+gmjuhasz@users.noreply.github.com> Date: Tue, 9 Jul 2024 11:49:35 +0200 Subject: [PATCH 059/254] Social: Fix plan slug in My-Jetpack (#38222) * Change the plan slug from the Basic plan to the V1 plan * changelog * Fixup versions * Fix social comment --- .../my-jetpack/changelog/fix-social-my-jetpack-plan-slug | 4 ++++ projects/packages/my-jetpack/package.json | 2 +- projects/packages/my-jetpack/src/class-initializer.php | 2 +- projects/packages/my-jetpack/src/products/class-social.php | 4 ++-- 4 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 projects/packages/my-jetpack/changelog/fix-social-my-jetpack-plan-slug diff --git a/projects/packages/my-jetpack/changelog/fix-social-my-jetpack-plan-slug b/projects/packages/my-jetpack/changelog/fix-social-my-jetpack-plan-slug new file mode 100644 index 0000000000000..0174944c43e23 --- /dev/null +++ b/projects/packages/my-jetpack/changelog/fix-social-my-jetpack-plan-slug @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Social: Fixed plan slug diff --git a/projects/packages/my-jetpack/package.json b/projects/packages/my-jetpack/package.json index b8e0651e89a20..9fb3e07dbf03b 100644 --- a/projects/packages/my-jetpack/package.json +++ b/projects/packages/my-jetpack/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-my-jetpack", - "version": "4.27.1", + "version": "4.27.2-alpha", "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/my-jetpack/#readme", "bugs": { diff --git a/projects/packages/my-jetpack/src/class-initializer.php b/projects/packages/my-jetpack/src/class-initializer.php index 6ac6a629c53c8..c912be9b37ad4 100644 --- a/projects/packages/my-jetpack/src/class-initializer.php +++ b/projects/packages/my-jetpack/src/class-initializer.php @@ -37,7 +37,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '4.27.1'; + const PACKAGE_VERSION = '4.27.2-alpha'; /** * HTML container ID for the IDC screen on My Jetpack page. diff --git a/projects/packages/my-jetpack/src/products/class-social.php b/projects/packages/my-jetpack/src/products/class-social.php index 5d88d187affbc..20c6307ea6c38 100644 --- a/projects/packages/my-jetpack/src/products/class-social.php +++ b/projects/packages/my-jetpack/src/products/class-social.php @@ -1,6 +1,6 @@ Date: Tue, 9 Jul 2024 11:50:11 +0200 Subject: [PATCH 060/254] Social: Fix frontend media validation logic (#38234) * Only validate the image if it's needed * changelog * Fix tests * Add test to cover this case * Fixup versions * Fix attached media usage --- .../changelog/fix-social-frontent-validation | 4 +++ .../publicize-components/package.json | 2 +- .../src/hooks/use-media-restrictions/index.js | 26 ++++++++++++++-- .../use-media-restrictions/test/index.test.js | 30 +++++++++++++++++++ 4 files changed, 58 insertions(+), 4 deletions(-) create mode 100644 projects/js-packages/publicize-components/changelog/fix-social-frontent-validation diff --git a/projects/js-packages/publicize-components/changelog/fix-social-frontent-validation b/projects/js-packages/publicize-components/changelog/fix-social-frontent-validation new file mode 100644 index 0000000000000..1bf93fbfdec60 --- /dev/null +++ b/projects/js-packages/publicize-components/changelog/fix-social-frontent-validation @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Fixed an issue with frontend media validation diff --git a/projects/js-packages/publicize-components/package.json b/projects/js-packages/publicize-components/package.json index ffc1f6ca223ca..3be11b207cda1 100644 --- a/projects/js-packages/publicize-components/package.json +++ b/projects/js-packages/publicize-components/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize-components", - "version": "0.56.0", + "version": "0.56.1-alpha", "description": "A library of JS components required by the Publicize editor plugin", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/publicize-components/#readme", "bugs": { diff --git a/projects/js-packages/publicize-components/src/hooks/use-media-restrictions/index.js b/projects/js-packages/publicize-components/src/hooks/use-media-restrictions/index.js index 47e7f5c859c0d..a9411f0e65bca 100644 --- a/projects/js-packages/publicize-components/src/hooks/use-media-restrictions/index.js +++ b/projects/js-packages/publicize-components/src/hooks/use-media-restrictions/index.js @@ -1,4 +1,5 @@ import { useRef, useMemo } from '@wordpress/element'; +import useAttachedMedia from '../use-attached-media'; import { DEFAULT_RESTRICTIONS, GLOBAL_MAX_SIZE, @@ -128,9 +129,10 @@ const getVideoValidationError = ( sizeInMb, length, width, height, videoLimits ) * @param {object} metaData - Media metadata, mime, fileSize and length. * @param {object} mediaData - Data for media, width, height, source_url etc. * @param {string} serviceName - The name of the social media service we want to validate against. facebook, tumblr etc. + * @param {boolean} hasAttachedMedia - Whether the media is attached. * @returns {(FILE_SIZE_ERROR | FILE_TYPE_ERROR | VIDEO_LENGTH_TOO_SHORT_ERROR | VIDEO_LENGTH_TOO_LONG_ERROR)} Returns validation error. */ -const getValidationError = ( metaData, mediaData, serviceName ) => { +const getValidationError = ( metaData, mediaData, serviceName, hasAttachedMedia ) => { const restrictions = RESTRICTIONS[ serviceName ] ?? DEFAULT_RESTRICTIONS; if ( ! metaData || Object.keys( metaData ).length === 0 ) { @@ -139,6 +141,11 @@ const getValidationError = ( metaData, mediaData, serviceName ) => { const { mime, fileSize } = metaData; + // If the media is not required and there is no attached media, we don't need to validate it. + if ( ! restrictions.requiresMedia && ! hasAttachedMedia ) { + return null; + } + if ( ! ( mime && restrictions.allowedMediaTypes.includes( mime.toLowerCase() ) ) ) { return FILE_TYPE_ERROR; } @@ -169,13 +176,20 @@ const getValidationError = ( metaData, mediaData, serviceName ) => { * @returns {object} Social media connection handler. */ const useMediaRestrictions = ( connections, media, { isSocialImageGeneratorEnabledForPost } ) => { + const { attachedMedia } = useAttachedMedia(); + const hasAttachedMedia = attachedMedia.length > 0; const errors = useRef( {} ); return useMemo( () => { const newErrors = isSocialImageGeneratorEnabledForPost ? {} : connections.reduce( ( errs, { connection_id, service_name } ) => { - const error = getValidationError( media.metaData, media.mediaData, service_name ); + const error = getValidationError( + media.metaData, + media.mediaData, + service_name, + hasAttachedMedia + ); if ( error ) { errs[ connection_id ] = error; } @@ -189,7 +203,13 @@ const useMediaRestrictions = ( connections, media, { isSocialImageGeneratorEnabl validationErrors: errors.current, isConvertible: isMediaConvertible( media.metaData ), }; - }, [ isSocialImageGeneratorEnabledForPost, connections, media.metaData, media.mediaData ] ); + }, [ + isSocialImageGeneratorEnabledForPost, + connections, + media.metaData, + media.mediaData, + hasAttachedMedia, + ] ); }; export default useMediaRestrictions; diff --git a/projects/js-packages/publicize-components/src/hooks/use-media-restrictions/test/index.test.js b/projects/js-packages/publicize-components/src/hooks/use-media-restrictions/test/index.test.js index 98c99805a397d..f7d0bb302c978 100644 --- a/projects/js-packages/publicize-components/src/hooks/use-media-restrictions/test/index.test.js +++ b/projects/js-packages/publicize-components/src/hooks/use-media-restrictions/test/index.test.js @@ -1,4 +1,5 @@ import { renderHook } from '@testing-library/react'; +import useAttachedMedia from '../../use-attached-media'; import useMediaRestrictions, { FILE_SIZE_ERROR, FILE_TYPE_ERROR, @@ -6,6 +7,8 @@ import useMediaRestrictions, { VIDEO_LENGTH_TOO_SHORT_ERROR, } from '../index'; +jest.mock( '../../use-attached-media', () => jest.fn() ); + const DUMMY_CONNECTIONS = [ { service_name: 'facebook', @@ -58,6 +61,33 @@ const getHookProps = ( ]; describe( 'useMediaRestrictions hook', () => { + beforeEach( () => { + // Mocking attached media to allow validation + useAttachedMedia.mockReturnValue( { attachedMedia: [ 1 ] } ); + } ); + + test( 'Should not run validation if a connection does not require media or if attachedMedia is empty', () => { + // Mocking useAttachedMedia to return an empty array to simulate no attached media + useAttachedMedia.mockReturnValue( { attachedMedia: [] } ); + + // Define media that would normally fail validation + const INVALID_MEDIA = { + metaData: { mime: 'image/jpg', fileSize: 100000000 }, // Large file size + mediaData: { width: 400, height: 500 }, + }; + + const { result } = renderHook( () => + useMediaRestrictions( + ...getHookProps( { media: INVALID_MEDIA, connections: DUMMY_CONNECTIONS } ) + ) + ); + + // Expect only the Instagram connection to have an error since it requires media + // and we validate it even if there is no attached media + expect( result.current.validationErrors ).toEqual( { + 'instagram-business': 'FILE_SIZE_ERROR', + } ); + } ); test( 'should not get any errors for image that accepted by all platforms', () => { VALID_MEDIA_ALL.forEach( media => { const { result } = renderHook( () => useMediaRestrictions( ...getHookProps( { media } ) ) ); From 45b955ce97374667205067c9ea5b234b3a4d8899 Mon Sep 17 00:00:00 2001 From: Karen Attfield Date: Tue, 9 Jul 2024 11:58:56 +0100 Subject: [PATCH 061/254] Classic Theme Helper Plugin: Ensure Featured Content and imported / required files in the package are initialized (#38156) --- ...-helper-theme-plugin-videos-featured-content | 4 ++++ .../classic-theme-helper-plugin.php | 17 +++++++++++++++++ .../classic-theme-helper-plugin/composer.json | 1 + .../classic-theme-helper-plugin/composer.lock | 2 +- 4 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 projects/plugins/classic-theme-helper-plugin/changelog/update-classic-helper-theme-plugin-videos-featured-content diff --git a/projects/plugins/classic-theme-helper-plugin/changelog/update-classic-helper-theme-plugin-videos-featured-content b/projects/plugins/classic-theme-helper-plugin/changelog/update-classic-helper-theme-plugin-videos-featured-content new file mode 100644 index 0000000000000..db503ec90ae89 --- /dev/null +++ b/projects/plugins/classic-theme-helper-plugin/changelog/update-classic-helper-theme-plugin-videos-featured-content @@ -0,0 +1,4 @@ +Significance: patch +Type: added + +Classic Theme Helper: Ensure Responsive Videos and Featured Content will load from the plugin diff --git a/projects/plugins/classic-theme-helper-plugin/classic-theme-helper-plugin.php b/projects/plugins/classic-theme-helper-plugin/classic-theme-helper-plugin.php index 296c06c0c2d7a..45cff16915141 100644 --- a/projects/plugins/classic-theme-helper-plugin/classic-theme-helper-plugin.php +++ b/projects/plugins/classic-theme-helper-plugin/classic-theme-helper-plugin.php @@ -51,3 +51,20 @@ function ( $actions ) { return $actions; } ); + + // Init Jetpack packages + add_action( 'plugins_loaded', 'init_packages', 1 ); + + /** + * Configure what Jetpack packages should get automatically initialized. + * + * @return void + */ +function init_packages() { + if ( class_exists( 'Automattic\Jetpack\Classic_Theme_Helper\Main' ) ) { + Automattic\Jetpack\Classic_Theme_Helper\Main::init(); + } + if ( class_exists( 'Automattic\Jetpack\Classic_Theme_Helper\Featured_Content' ) ) { + Automattic\Jetpack\Classic_Theme_Helper\Featured_Content::setup(); + } +} diff --git a/projects/plugins/classic-theme-helper-plugin/composer.json b/projects/plugins/classic-theme-helper-plugin/composer.json index 77b58b7fda046..d439ae5449195 100644 --- a/projects/plugins/classic-theme-helper-plugin/composer.json +++ b/projects/plugins/classic-theme-helper-plugin/composer.json @@ -57,6 +57,7 @@ "mirror-repo": "Automattic/classic-theme-plugin", "release-branch-prefix": "classic-theme-plugin", "beta-plugin-slug": "classic-theme-helper-plugin", + "wp-plugin-slug": "classic-theme-helper-plugin", "changelogger": { "versioning": "semver" } diff --git a/projects/plugins/classic-theme-helper-plugin/composer.lock b/projects/plugins/classic-theme-helper-plugin/composer.lock index 150e1436a5070..d795d23299f56 100644 --- a/projects/plugins/classic-theme-helper-plugin/composer.lock +++ b/projects/plugins/classic-theme-helper-plugin/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "4cc54a7de0dd0b5f40570ba71b33fc96", + "content-hash": "37d376f477c972d17866ba617e05e65f", "packages": [ { "name": "automattic/jetpack-a8c-mc-stats", From bfa2cbf6371a2b279424145232bdba498e1a0a1a Mon Sep 17 00:00:00 2001 From: Kosta Date: Tue, 9 Jul 2024 13:24:16 +0200 Subject: [PATCH 062/254] Avoid showing help center for woocommerce admin homepage (#38253) --- .../jetpack-mu-wpcom/changelog/fix-hide-hc-wc-admin | 4 ++++ .../src/features/help-center/class-help-center.php | 12 ++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/fix-hide-hc-wc-admin diff --git a/projects/packages/jetpack-mu-wpcom/changelog/fix-hide-hc-wc-admin b/projects/packages/jetpack-mu-wpcom/changelog/fix-hide-hc-wc-admin new file mode 100644 index 0000000000000..2367fa37c97e4 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/fix-hide-hc-wc-admin @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Hide help-center for wc-admin home page diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php index 616ca34424fc4..5de78be8928d3 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php @@ -296,6 +296,14 @@ public function is_block_editor() { return $current_screen->is_block_editor() && $current_screen->id !== 'widgets'; } + /** + * Returns true if the current screen is the woo commerce admin home page. + */ + private function is_wc_admin_home_page() { + global $current_screen; + return $current_screen->id === 'woocommerce_page_wc-admin'; + } + /** * Returns true if the current user is connected through Jetpack */ @@ -362,6 +370,10 @@ public function enqueue_wp_admin_scripts() { return; } + if ( $this->is_wc_admin_home_page() ) { + return; + } + $variant = $this->is_block_editor() ? 'gutenberg' : 'wp-admin'; $variant .= $this->is_jetpack_disconnected() ? '-disconnected' : ''; From b3e94374d6fe90286b30a648e4bff4a18100a001 Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Tue, 9 Jul 2024 07:57:59 -0400 Subject: [PATCH 063/254] beta: Fix undefined variable reference (#38247) `$plugin` wasn't defined when `show-needed-updates.template.php` was used from `plugin-select.template.php`. Define it as null. Also remove an unnecessary `isset()`, by that point it is defined. --- .../plugins/beta/changelog/fix-beta-undefined-variable-ref | 4 ++++ projects/plugins/beta/src/admin/plugin-select.template.php | 3 +++ .../plugins/beta/src/admin/show-needed-updates.template.php | 4 ++-- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 projects/plugins/beta/changelog/fix-beta-undefined-variable-ref diff --git a/projects/plugins/beta/changelog/fix-beta-undefined-variable-ref b/projects/plugins/beta/changelog/fix-beta-undefined-variable-ref new file mode 100644 index 0000000000000..fc6f298dd021e --- /dev/null +++ b/projects/plugins/beta/changelog/fix-beta-undefined-variable-ref @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Fix an undefined variable reference. diff --git a/projects/plugins/beta/src/admin/plugin-select.template.php b/projects/plugins/beta/src/admin/plugin-select.template.php index d7b14f1e5a458..6efbae363f6ba 100644 --- a/projects/plugins/beta/src/admin/plugin-select.template.php +++ b/projects/plugins/beta/src/admin/plugin-select.template.php @@ -18,6 +18,9 @@ $plugins = Plugin::get_all_plugins( true ); +// This needs to be defined for show-needed-updates.template.php. +$plugin = null; + ?> diff --git a/projects/plugins/beta/src/admin/show-needed-updates.template.php b/projects/plugins/beta/src/admin/show-needed-updates.template.php index b1704c4bc2e91..5ff90a1782905 100644 --- a/projects/plugins/beta/src/admin/show-needed-updates.template.php +++ b/projects/plugins/beta/src/admin/show-needed-updates.template.php @@ -3,7 +3,7 @@ * Jetpack Beta wp-admin template to show needed updates. * * @html-template \Automattic\JetpackBeta\Admin::render -- Via plugin-select.template.php or plugin-manage.template.php - * @html-template-var \Automattic\JetpackBeta\Plugin $plugin Plugin being managed (from render()). + * @html-template-var \Automattic\JetpackBeta\Plugin|null $plugin Plugin being managed. * @package automattic/jetpack-beta */ @@ -18,7 +18,7 @@ // Wrap in a function to avoid leaking all the variables we create to subsequent runs. ( function ( $plugin ) { $updates = Utils::plugins_needing_update( true ); - if ( isset( $plugin ) ) { + if ( $plugin ) { $updates = array_intersect_key( $updates, array( From 1893ee2996ed42a433a03b5a84310934bcf0bb9a Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Tue, 9 Jul 2024 07:59:45 -0400 Subject: [PATCH 064/254] autoloader: Avoid a deprecation notice in `Autoloader_Locator::find_latest_autoloader()` (#38245) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If one of the cached plugin paths has gone missing, `get_autoloader_version()` will return `null` when trying to check it. Avoid passing that `null` to `is_version_update_required()`. This sort of thing happens weekly during Atomic upgrades, because there they have symlinks `wp-content/plugins/jetpack` → `/wordpress/plugins/jetpack/latest` → `/wordpress/plugins/jetpack/` and the update process deletes the old `` at the same time as creating the new and updating the `latest` symlink. --- .../fix-autoloader-atomic-deprecated-notice | 4 ++++ .../packages/autoloader/src/AutoloadGenerator.php | 2 +- .../autoloader/src/class-autoloader-locator.php | 2 +- .../tests/php/tests/unit/AutoloaderLocatorTest.php | 14 ++++++++++++-- 4 files changed, 18 insertions(+), 4 deletions(-) create mode 100644 projects/packages/autoloader/changelog/fix-autoloader-atomic-deprecated-notice diff --git a/projects/packages/autoloader/changelog/fix-autoloader-atomic-deprecated-notice b/projects/packages/autoloader/changelog/fix-autoloader-atomic-deprecated-notice new file mode 100644 index 0000000000000..a0d72b89720d2 --- /dev/null +++ b/projects/packages/autoloader/changelog/fix-autoloader-atomic-deprecated-notice @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Avoid a deprecation notice in `Autoloader_Locator::find_latest_autoloader()`. diff --git a/projects/packages/autoloader/src/AutoloadGenerator.php b/projects/packages/autoloader/src/AutoloadGenerator.php index 594ebb59faec4..b767b723147d7 100644 --- a/projects/packages/autoloader/src/AutoloadGenerator.php +++ b/projects/packages/autoloader/src/AutoloadGenerator.php @@ -21,7 +21,7 @@ */ class AutoloadGenerator { - const VERSION = '3.0.8'; + const VERSION = '3.0.9-alpha'; /** * IO object. diff --git a/projects/packages/autoloader/src/class-autoloader-locator.php b/projects/packages/autoloader/src/class-autoloader-locator.php index 7c05e88a693ef..908222601c81d 100644 --- a/projects/packages/autoloader/src/class-autoloader-locator.php +++ b/projects/packages/autoloader/src/class-autoloader-locator.php @@ -37,7 +37,7 @@ public function find_latest_autoloader( $plugin_paths, &$latest_version ) { foreach ( $plugin_paths as $plugin_path ) { $version = $this->get_autoloader_version( $plugin_path ); - if ( ! $this->version_selector->is_version_update_required( $latest_version, $version ) ) { + if ( ! $version || ! $this->version_selector->is_version_update_required( $latest_version, $version ) ) { continue; } diff --git a/projects/packages/autoloader/tests/php/tests/unit/AutoloaderLocatorTest.php b/projects/packages/autoloader/tests/php/tests/unit/AutoloaderLocatorTest.php index 823e603f01154..841d7326c799d 100644 --- a/projects/packages/autoloader/tests/php/tests/unit/AutoloaderLocatorTest.php +++ b/projects/packages/autoloader/tests/php/tests/unit/AutoloaderLocatorTest.php @@ -63,19 +63,29 @@ public function test_finds_latest_autoloader() { $this->assertNull( $latest ); $this->assertNull( $latest_version ); - $latest = $this->autoloader_locator->find_latest_autoloader( + $latest_version = null; + $latest = $this->autoloader_locator->find_latest_autoloader( array( self::$older_plugin_dir ), $latest_version ); $this->assertEquals( self::$older_plugin_dir, $latest ); $this->assertEquals( self::OLDER_VERSION, $latest_version ); - $latest = $this->autoloader_locator->find_latest_autoloader( + $latest_version = null; + $latest = $this->autoloader_locator->find_latest_autoloader( array( TEST_PLUGIN_DIR, self::$older_plugin_dir ), $latest_version ); $this->assertEquals( TEST_PLUGIN_DIR, $latest ); $this->assertEquals( Test_Plugin_Factory::VERSION_CURRENT, $latest_version ); + + $latest_version = null; + $latest = $this->autoloader_locator->find_latest_autoloader( + array( TEST_PLUGIN_DIR, WP_PLUGIN_DIR . DIRECTORY_SEPARATOR . 'this-does-not-exist' ), + $latest_version + ); + $this->assertEquals( TEST_PLUGIN_DIR, $latest ); + $this->assertEquals( Test_Plugin_Factory::VERSION_CURRENT, $latest_version ); } /** From f3a4265dc8700ece54b532b6810aeaeb5670c1ed Mon Sep 17 00:00:00 2001 From: Foteini Giannaropoulou Date: Tue, 9 Jul 2024 15:43:05 +0300 Subject: [PATCH 065/254] Jetpack Sync HPOS: Ensure get_objects_by_id will return all relevant orders (#38251) * Jetpack Sync HPOS: Ensure get_objects_by_id will return all relevant orders --- .../changelog/fix-sync-hpos-get_objects_by_id | 4 ++ .../sync/src/class-package-version.php | 2 +- .../modules/class-woocommerce-hpos-orders.php | 43 ++++++++++++++++--- 3 files changed, 43 insertions(+), 6 deletions(-) create mode 100644 projects/packages/sync/changelog/fix-sync-hpos-get_objects_by_id diff --git a/projects/packages/sync/changelog/fix-sync-hpos-get_objects_by_id b/projects/packages/sync/changelog/fix-sync-hpos-get_objects_by_id new file mode 100644 index 0000000000000..7e74a60f5ac0b --- /dev/null +++ b/projects/packages/sync/changelog/fix-sync-hpos-get_objects_by_id @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Jetpack Sync HPOS: Ensure get_objects_by_id will return all relevant orders diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index 9b553235766a6..11b69a9326782 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.2.0'; + const PACKAGE_VERSION = '3.2.1-alpha'; const PACKAGE_SLUG = 'sync'; diff --git a/projects/packages/sync/src/modules/class-woocommerce-hpos-orders.php b/projects/packages/sync/src/modules/class-woocommerce-hpos-orders.php index b83d11ba82e91..caad159f17a2c 100644 --- a/projects/packages/sync/src/modules/class-woocommerce-hpos-orders.php +++ b/projects/packages/sync/src/modules/class-woocommerce-hpos-orders.php @@ -160,19 +160,24 @@ public function get_object_by_id( $object_type, $id ) { * @return array */ public function get_objects_by_id( $object_type, $ids ) { - if ( 'order' !== $object_type ) { - return $ids; + if ( 'order' !== $object_type || empty( $ids ) || ! is_array( $ids ) ) { + return array(); } - $orders = wc_get_orders( + + $orders = wc_get_orders( array( - 'post__in' => $ids, - 'type' => $this->get_order_types_to_sync( true ), + 'post__in' => $ids, + 'type' => $this->get_order_types_to_sync( true ), + 'post_status' => $this->get_all_possible_order_status_keys(), + 'limit' => -1, ) ); + $orders_data = array(); foreach ( $orders as $order ) { $orders_data[ $order->get_id() ] = $this->filter_order_data( $order ); } + return $orders_data; } @@ -302,6 +307,34 @@ private function filter_order_data( $order_object ) { return $filtered_order_data; } + /** + * Returns all possible order status keys using 'wc_get_order_statuses', if possible.. + * + * @access protected + * + * @return array Filtered order metadata. + */ + protected function get_all_possible_order_status_keys() { + $order_statuses = array( 'checkout-draft', 'auto-draft', 'trash' ); + $wc_order_statuses = array(); + if ( function_exists( 'wc_get_order_statuses' ) ) { + $wc_order_statuses = array_keys( wc_get_order_statuses() ); + } else { + $wc_order_statuses = array( + 'wc-pending', + 'wc-processing', + 'wc-on-hold', + 'wc-completed', + 'wc-cancelled', + 'wc-refunded', + 'wc-failed', + 'wc-checkout-draft', + ); + } + + return array_unique( array_merge( $wc_order_statuses, $order_statuses ) ); + } + /** * Returns metadata for order object. * From a6012f69f47a62d1146e76319599e43612534506 Mon Sep 17 00:00:00 2001 From: Karen Attfield Date: Tue, 9 Jul 2024 13:47:40 +0100 Subject: [PATCH 066/254] Classic Theme Helper: Adding in Responsive Video class initialization from the Jetpack Mu WPcom package (#38218) --- .../changelog/add-classic-theme-helper-package-initialization | 4 ++++ .../packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php | 1 + 2 files changed, 5 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/add-classic-theme-helper-package-initialization diff --git a/projects/packages/jetpack-mu-wpcom/changelog/add-classic-theme-helper-package-initialization b/projects/packages/jetpack-mu-wpcom/changelog/add-classic-theme-helper-package-initialization new file mode 100644 index 0000000000000..8d462fff77e4c --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/add-classic-theme-helper-package-initialization @@ -0,0 +1,4 @@ +Significance: patch +Type: added + +Classic Theme Helper: Adding in Responsive Video class initialization from the Jetpack Mu WPcom package diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 221feca6f8aef..a2c242a310791 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -112,6 +112,7 @@ public static function load_features() { // Initializers, if needed. \Marketplace_Products_Updater::init(); + \Automattic\Jetpack\Classic_Theme_Helper\Main::init(); \Automattic\Jetpack\Classic_Theme_Helper\Featured_Content::setup(); // Only load the Calypsoify and Masterbar features on WoA sites. From dc7e0bf804219aee41e8333fb1ae4ef8c8f0b9de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20P=C3=A9rez=20Pellicer?= <5908855+puntope@users.noreply.github.com> Date: Tue, 9 Jul 2024 17:37:21 +0400 Subject: [PATCH 067/254] WooCommerce Analytics: Initialize the package only if is not loaded in WooCommerce Core (#38236) * Load Initialize WooCommerce Analytics only if WC_ANALYTICS constant is not defined. * Add changelog --- .../jetpack/changelog/tweak-load-wc-analytics-core | 4 ++++ .../jetpack/modules/woocommerce-analytics.php | 12 ++++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/tweak-load-wc-analytics-core diff --git a/projects/plugins/jetpack/changelog/tweak-load-wc-analytics-core b/projects/plugins/jetpack/changelog/tweak-load-wc-analytics-core new file mode 100644 index 0000000000000..ee9ed3e53f69a --- /dev/null +++ b/projects/plugins/jetpack/changelog/tweak-load-wc-analytics-core @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +WooCommerce Analytics: Initialize the module only if is not initialized in WooCommerce core. diff --git a/projects/plugins/jetpack/modules/woocommerce-analytics.php b/projects/plugins/jetpack/modules/woocommerce-analytics.php index 7e9d066ba27f5..58bb8fc616225 100644 --- a/projects/plugins/jetpack/modules/woocommerce-analytics.php +++ b/projects/plugins/jetpack/modules/woocommerce-analytics.php @@ -16,6 +16,14 @@ use Automattic\Woocommerce_Analytics; /** - * Load module functionality from the package. + * Load module functionality from the package only if + * WC_ANALYTICS constant is not defined by WooCommerce + * + * When WC_ANALYTICS constant is defined it means WooCommerce_Analytics package is being + * loaded by WooCommerce core instead of Jetpack. + * + * We maintain for now the initialization here for compatibility reasons. */ -Woocommerce_Analytics::init(); +if ( ! defined( 'WC_ANALYTICS' ) ) { + Woocommerce_Analytics::init(); +} From f3c56d1f087889135060cb3fc738513731ba4751 Mon Sep 17 00:00:00 2001 From: Renato Augusto Gama dos Santos Date: Tue, 9 Jul 2024 13:06:08 -0300 Subject: [PATCH 068/254] AI Proofread: Update highlight hover (#38261) --- .../changelog/update-breve-highlight-hover | 4 ++ .../breve/features/complex-words/index.ts | 31 ------------- .../components/breve/features/events.ts | 44 +++++++++++++++++++ .../components/breve/features/index.ts | 3 +- .../components/breve/highlight/index.tsx | 34 ++++++++++---- .../components/breve/store/actions.ts | 33 ++++++++------ .../components/breve/store/reducer.ts | 18 ++++++-- .../components/breve/store/selectors.ts | 12 ++++- 8 files changed, 119 insertions(+), 60 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/update-breve-highlight-hover create mode 100644 projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts diff --git a/projects/plugins/jetpack/changelog/update-breve-highlight-hover b/projects/plugins/jetpack/changelog/update-breve-highlight-hover new file mode 100644 index 0000000000000..511a53cf89bcb --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-breve-highlight-hover @@ -0,0 +1,4 @@ +Significance: minor +Type: other + +Update AI Proofread hover events diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts index 983238ed7bb07..3af68a27a0514 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts @@ -1,12 +1,7 @@ -/** - * External dependencies - */ -import { dispatch } from '@wordpress/data'; /** * Internal dependencies */ import { escapeRegExp } from '../../utils/escapeRegExp'; -import getContainer from '../container'; import phrases from './phrases'; export const COMPLEX_WORDS = { @@ -16,32 +11,6 @@ export const COMPLEX_WORDS = { className: 'has-proofread-highlight', }; -function handleMouseEnter( e ) { - e.stopPropagation(); - e.target.setAttribute( 'data-ai-breve-anchor', true ); - // eslint-disable-next-line @typescript-eslint/no-explicit-any - ( dispatch( 'jetpack/ai-breve' ) as any ).setPopoverState( true ); -} - -function handleMouseLeave( e ) { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - ( dispatch( 'jetpack/ai-breve' ) as any ).setPopoverState( false ); - e.stopPropagation(); - e.target.removeAttribute( 'data-ai-breve-anchor' ); -} - -export function registerComplexWordsEvents() { - const { foundContainer: container } = getContainer(); - const items = container?.querySelectorAll?.( "[data-type='complex-words']" ); - - items.forEach( highlightEl => { - highlightEl?.removeEventListener?.( 'mouseenter', handleMouseEnter ); - highlightEl?.addEventListener?.( 'mouseenter', handleMouseEnter ); - highlightEl?.removeEventListener?.( 'mouseleave', handleMouseLeave ); - highlightEl?.addEventListener?.( 'mouseleave', handleMouseLeave ); - } ); -} - export default function complexWords( text ) { const list = new RegExp( `(${ Object.keys( phrases ).map( escapeRegExp ).join( '|' ) })\\b`, diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts new file mode 100644 index 0000000000000..140cc731fc723 --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts @@ -0,0 +1,44 @@ +/** + * External dependencies + */ +import { dispatch } from '@wordpress/data'; +/** + * Internal dependencies + */ +import getContainer from './container'; +import features from './index'; + +let timeout; + +function handleMouseEnter( e ) { + e.stopPropagation(); + clearTimeout( timeout ); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + ( dispatch( 'jetpack/ai-breve' ) as any ).setHighlightHover( true ); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + ( dispatch( 'jetpack/ai-breve' ) as any ).setPopoverAnchor( e.target ); +} + +function handleMouseLeave( e ) { + e.stopPropagation(); + timeout = setTimeout( () => { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + ( dispatch( 'jetpack/ai-breve' ) as any ).setHighlightHover( false ); + }, 100 ); +} + +export default function registerEvents( clientId: string ) { + const { foundContainer: container } = getContainer(); + const id = `block-${ clientId }`; + const block = container?.querySelector( `#${ id }` ); + + features.forEach( ( { config } ) => { + const items = block?.querySelectorAll?.( `[data-type='${ config.name }']` ); + items.forEach( highlightEl => { + highlightEl?.removeEventListener?.( 'mouseenter', handleMouseEnter ); + highlightEl?.addEventListener?.( 'mouseenter', handleMouseEnter ); + highlightEl?.removeEventListener?.( 'mouseleave', handleMouseLeave ); + highlightEl?.addEventListener?.( 'mouseleave', handleMouseLeave ); + } ); + } ); +} diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts index 2946bb2cd4785..b39f8582e4013 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts @@ -1,13 +1,12 @@ /** * Features */ -import complexWords, { COMPLEX_WORDS, registerComplexWordsEvents } from './complex-words'; +import complexWords, { COMPLEX_WORDS } from './complex-words'; // Breve Highlights Features export default [ { config: COMPLEX_WORDS, highlight: complexWords, - events: registerComplexWordsEvents, }, ]; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx index 6f4a125249f5f..530e324e2f9c7 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx @@ -10,14 +10,11 @@ import { registerFormatType } from '@wordpress/rich-text'; */ import BREVE_FEATURES from '../features'; import './style.scss'; -import getContainer from '../features/container'; // Setup the Breve highlights export default function Highlight() { const debounce = useRef( null ); const { setBlockContent } = useDispatch( 'jetpack/ai-breve' ); - const { foundContainer: container } = getContainer(); - const anchor = container?.querySelector?.( `[data-ai-breve-anchor]` ); const postContent = useSelect( select => { // eslint-disable-next-line @typescript-eslint/no-explicit-any @@ -26,11 +23,30 @@ export default function Highlight() { return richValues; }, [] ); - const popoverOpen = useSelect( + const popoverOpen = useSelect( select => { // eslint-disable-next-line @typescript-eslint/no-explicit-any - select => ( select( 'jetpack/ai-breve' ) as any ).isPopoverOpen(), - [] - ); + const store = select( 'jetpack/ai-breve' ) as any; + const isPopoverHover = store.isPopoverHover(); + const isHighlightHover = store.isHighlightHover(); + return isHighlightHover || isPopoverHover; + }, [] ); + + const anchor = useSelect( select => { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + return ( select( 'jetpack/ai-breve' ) as any ).getPopoverAnchor(); + }, [] ); + + const isPopoverOpen = popoverOpen && anchor; + + const { setPopoverHover } = useDispatch( 'jetpack/ai-breve' ); + + const handleMouseEnter = () => { + setPopoverHover( true ); + }; + + const handleMouseLeave = () => { + setPopoverHover( false ); + }; useLayoutEffect( () => { if ( postContent?.length > 0 ) { @@ -46,7 +62,7 @@ export default function Highlight() { return ( <> - { popoverOpen && anchor && ( + { isPopoverOpen && (
Popover
diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts index 46a15ff1b2b51..fdb1c5ae1eb21 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts @@ -3,21 +3,27 @@ */ import { create, getTextContent, toHTMLString } from '@wordpress/rich-text'; import features from '../features'; +import registerEvents from '../features/events'; import highlight from '../highlight/highlight'; -export function setPopoverState( isOpen ) { +export function setHighlightHover( isHover ) { return { - type: 'SET_POPOVER_STATE', - isOpen, + type: 'SET_HIGHLIGHT_HOVER', + isHover, }; } -export function setBlockText( block ) { +export function setPopoverHover( isHover ) { return { - type: 'SET_BLOCK_TEXT', - clientId: block.clientId, - text: block.text, - index: block.index, + type: 'SET_POPOVER_HOVER', + isHover, + }; +} + +export function setPopoverAnchor( anchor ) { + return { + type: 'SET_POPOVER_ANCHOR', + anchor, }; } @@ -55,12 +61,11 @@ export function setBlockContent( clientId ) { dispatchFromRegistry( 'core/block-editor' ).updateBlockAttributes; updateBlockAttributes( clientId, { content: toHTMLString( { value: newContent } ) } ); - features.forEach( feature => { - // We need to wait for the highlights to be applied before we can attach events - setTimeout( () => { - feature.events(); - }, 2000 ); - } ); + + // We need to wait for the highlights to be applied before we can attach events + setTimeout( () => { + registerEvents( clientId ); + }, 2000 ); dispatch( { type: 'SET_BLOCK_TEXT', diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts index d7e4be3789e9c..53cd71046053a 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts @@ -3,12 +3,24 @@ */ import { combineReducers } from '@wordpress/data'; -export function popover( state = { isOpen: false }, action ) { +export function popover( state = {}, action ) { switch ( action.type ) { - case 'SET_POPOVER_STATE': + case 'SET_HIGHLIGHT_HOVER': return { ...state, - isOpen: action.isOpen, + isHighlightHover: action.isHover, + }; + + case 'SET_POPOVER_HOVER': + return { + ...state, + isPopoverHover: action.isHover, + }; + + case 'SET_POPOVER_ANCHOR': + return { + ...state, + anchor: action.anchor, }; } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts index 957cf4200a974..94ead955500f8 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts @@ -1,5 +1,13 @@ -export function isPopoverOpen( state ) { - return state.popover.isOpen; +export function isHighlightHover( state ) { + return state.popover.isHighlightHover; +} + +export function isPopoverHover( state ) { + return state.popover.isPopoverHover; +} + +export function getPopoverAnchor( state ) { + return state.popover.anchor; } export function getBlocksContent( state ) { From 69de7c7cb67b35f2987ef9d6114f9c619aaec71f Mon Sep 17 00:00:00 2001 From: Miguel Lezama Date: Tue, 9 Jul 2024 13:27:53 -0300 Subject: [PATCH 069/254] Newsletters Settings: Fix Full text-Excerpt default value (#38256) --- .../jetpack/_inc/lib/class.core-rest-api-endpoints.php | 2 +- .../jetpack/changelog/fix-email-should-excerpt-default-value | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 projects/plugins/jetpack/changelog/fix-email-should-excerpt-default-value diff --git a/projects/plugins/jetpack/_inc/lib/class.core-rest-api-endpoints.php b/projects/plugins/jetpack/_inc/lib/class.core-rest-api-endpoints.php index 8d49ef35d9c8a..af93ffefd189a 100644 --- a/projects/plugins/jetpack/_inc/lib/class.core-rest-api-endpoints.php +++ b/projects/plugins/jetpack/_inc/lib/class.core-rest-api-endpoints.php @@ -2663,7 +2663,7 @@ public static function get_updateable_data_list( $selector = '' ) { 'wpcom_subscription_emails_use_excerpt' => array( 'description' => esc_html__( 'Whether to use the excerpt in the email or not', 'jetpack' ), 'type' => 'boolean', - 'default' => 1, + 'default' => 0, 'validate_callback' => __CLASS__ . '::validate_boolean', 'jp_group' => 'subscriptions', ), diff --git a/projects/plugins/jetpack/changelog/fix-email-should-excerpt-default-value b/projects/plugins/jetpack/changelog/fix-email-should-excerpt-default-value new file mode 100644 index 0000000000000..63697f885ee9d --- /dev/null +++ b/projects/plugins/jetpack/changelog/fix-email-should-excerpt-default-value @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +Newsletter Settings: Fix default value for Full text vs Excerpt From b615c4345049376283b0dbbde2746714cecabf07 Mon Sep 17 00:00:00 2001 From: Luiz Kowalski Date: Tue, 9 Jul 2024 15:30:44 -0300 Subject: [PATCH 070/254] Jetpack AI Image: Automatically start generation of featured image when there is content on the post (#38262) * Trigger auto generation when there is postContent * Changelog --- .../update-jetpack-ai-featured-image-auto-start-generation | 4 ++++ .../components/ai-image/featured-image.tsx | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 projects/plugins/jetpack/changelog/update-jetpack-ai-featured-image-auto-start-generation diff --git a/projects/plugins/jetpack/changelog/update-jetpack-ai-featured-image-auto-start-generation b/projects/plugins/jetpack/changelog/update-jetpack-ai-featured-image-auto-start-generation new file mode 100644 index 0000000000000..b7e895f54193e --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-jetpack-ai-featured-image-auto-start-generation @@ -0,0 +1,4 @@ +Significance: minor +Type: other + +Jetpack AI Image: trigger featured image auto generation when there is content on the post. diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-image/featured-image.tsx b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-image/featured-image.tsx index baee34616a9c1..710992659fea9 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-image/featured-image.tsx +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-image/featured-image.tsx @@ -308,6 +308,8 @@ export default function FeaturedImage( { ) } Date: Tue, 9 Jul 2024 13:56:28 -0600 Subject: [PATCH 071/254] Protect: Add TypeScript Support (#38146) --- pnpm-lock.yaml | 8 +++++++- projects/plugins/protect/changelog/add-typescript | 5 +++++ projects/plugins/protect/package.json | 2 ++ .../plugins/protect/src/js/{index.js => index.tsx} | 0 projects/plugins/protect/tsconfig.json | 10 ++++++++++ projects/plugins/protect/webpack.config.js | 2 +- 6 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 projects/plugins/protect/changelog/add-typescript rename projects/plugins/protect/src/js/{index.js => index.tsx} (100%) create mode 100644 projects/plugins/protect/tsconfig.json diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 19aa8af3b1e6d..73bb415ea4af7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4076,7 +4076,7 @@ importers: version: 7.2.0 '@wordpress/components': specifier: 28.2.0 - version: 28.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 28.2.0(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@wordpress/data': specifier: 10.2.0 version: 10.2.0(react@18.3.1) @@ -4132,6 +4132,9 @@ importers: '@babel/runtime': specifier: 7.24.7 version: 7.24.7 + '@types/react': + specifier: 18.3.1 + version: 18.3.1 '@wordpress/browserslist-config': specifier: 6.2.0 version: 6.2.0 @@ -4144,6 +4147,9 @@ importers: sass-loader: specifier: 12.4.0 version: 12.4.0(sass@1.64.1)(webpack@5.76.0(webpack-cli@4.9.1)) + typescript: + specifier: 5.0.4 + version: 5.0.4 webpack: specifier: 5.76.0 version: 5.76.0(webpack-cli@4.9.1) diff --git a/projects/plugins/protect/changelog/add-typescript b/projects/plugins/protect/changelog/add-typescript new file mode 100644 index 0000000000000..c4a5630b33e0e --- /dev/null +++ b/projects/plugins/protect/changelog/add-typescript @@ -0,0 +1,5 @@ +Significance: patch +Type: added +Comment: Added TypeScript support to the project. + + diff --git a/projects/plugins/protect/package.json b/projects/plugins/protect/package.json index c33741f0cef3a..c0b14dafaa139 100644 --- a/projects/plugins/protect/package.json +++ b/projects/plugins/protect/package.json @@ -51,10 +51,12 @@ "@babel/core": "7.24.7", "@babel/preset-env": "7.24.7", "@babel/runtime": "7.24.7", + "@types/react": "18.3.1", "@wordpress/browserslist-config": "6.2.0", "concurrently": "7.6.0", "sass": "1.64.1", "sass-loader": "12.4.0", + "typescript": "5.0.4", "webpack": "5.76.0", "webpack-cli": "4.9.1" } diff --git a/projects/plugins/protect/src/js/index.js b/projects/plugins/protect/src/js/index.tsx similarity index 100% rename from projects/plugins/protect/src/js/index.js rename to projects/plugins/protect/src/js/index.tsx diff --git a/projects/plugins/protect/tsconfig.json b/projects/plugins/protect/tsconfig.json new file mode 100644 index 0000000000000..527e1f5fd0401 --- /dev/null +++ b/projects/plugins/protect/tsconfig.json @@ -0,0 +1,10 @@ +{ + "extends": "jetpack-js-tools/tsconfig.base.json", + "include": [ "./src/js" ], + "compilerOptions": { + "sourceMap": true, + "outDir": "./build/", + "target": "esnext", + "typeRoots": [ "./node_modules/@types/", "./src/js/*" ] + } +} diff --git a/projects/plugins/protect/webpack.config.js b/projects/plugins/protect/webpack.config.js index aa2eb5135cac7..f0883c9b9a4ed 100644 --- a/projects/plugins/protect/webpack.config.js +++ b/projects/plugins/protect/webpack.config.js @@ -4,7 +4,7 @@ const jetpackWebpackConfig = require( '@automattic/jetpack-webpack-config/webpac module.exports = [ { entry: { - index: './src/js/index.js', + index: './src/js/index.tsx', }, mode: jetpackWebpackConfig.mode, devtool: jetpackWebpackConfig.devtool, From 0731a28cd0ea1649c4e646be9b07a4069de76eea Mon Sep 17 00:00:00 2001 From: Griffith Chen Date: Wed, 10 Jul 2024 11:52:05 +0800 Subject: [PATCH 072/254] Port wpcom-documentation-links from ETK (#38249) --- .../changelog/etk-documentation-links | 4 + .../src/class-jetpack-mu-wpcom.php | 1 + .../wpcom-documentation-links.css | 7 ++ .../wpcom-documentation-links.php | 45 ++++++++++++ .../wpcom-documentation-links.ts | 73 +++++++++++++++++++ .../jetpack-mu-wpcom/webpack.config.js | 2 + 6 files changed, 132 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/etk-documentation-links create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-documentation-links/wpcom-documentation-links.css create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-documentation-links/wpcom-documentation-links.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-documentation-links/wpcom-documentation-links.ts diff --git a/projects/packages/jetpack-mu-wpcom/changelog/etk-documentation-links b/projects/packages/jetpack-mu-wpcom/changelog/etk-documentation-links new file mode 100644 index 0000000000000..959f12d2b55b3 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/etk-documentation-links @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Port wpcom-documentation-links feature from ETK diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index a2c242a310791..a56a4824d840c 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -137,6 +137,7 @@ public static function load_etk_features() { require_once __DIR__ . '/features/override-preview-button-url/override-preview-button-url.php'; require_once __DIR__ . '/features/paragraph-block-placeholder/paragraph-block-placeholder.php'; require_once __DIR__ . '/features/tags-education/tags-education.php'; + require_once __DIR__ . '/features/wpcom-documentation-links/wpcom-documentation-links.php'; require_once __DIR__ . '/features/wpcom-whats-new/wpcom-whats-new.php'; } diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-documentation-links/wpcom-documentation-links.css b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-documentation-links/wpcom-documentation-links.css new file mode 100644 index 0000000000000..9ad41b0b5aedd --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-documentation-links/wpcom-documentation-links.css @@ -0,0 +1,7 @@ +/* + For simple sites in "Customize Widgets" we override translations with empty strings. + This will result in empty link in that section shown without text and href. The CSS will hide those. + */ +.customize-widgets-welcome-guide__more-info a[href=""] { + display: none; +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-documentation-links/wpcom-documentation-links.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-documentation-links/wpcom-documentation-links.php new file mode 100644 index 0000000000000..1ba68d9c1bea5 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-documentation-links/wpcom-documentation-links.php @@ -0,0 +1,45 @@ +get_data( 'customize-controls', 'data' ); + + if ( $data ) { + $data = str_replace( 'https:\\/\\/wordpress.org\\/documentation\\/article\\/site-editor\\/\\', 'https:\\/\\/wordpress.com\\/support\\/site-editor\\/\\', $data ); + $wp_scripts->registered['customize-controls']->extra['data'] = $data; + } + + wp_set_script_translations( 'wpcom-documentation-links-script', 'jetpack-mu-wpcom' ); +} + +add_action( 'enqueue_block_editor_assets', 'wpcom_enqueue_documentation_links_assets', 100 ); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-documentation-links/wpcom-documentation-links.ts b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-documentation-links/wpcom-documentation-links.ts new file mode 100644 index 0000000000000..ba2b1c344cfd9 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-documentation-links/wpcom-documentation-links.ts @@ -0,0 +1,73 @@ +import { addFilter } from '@wordpress/hooks'; +import './wpcom-documentation-links.css'; + +declare global { + interface Window { + _currentSiteId: number; + _currentSiteType: string; + } +} + +/** + * Override Core documentation that has matching WordPress.com documentation. + * + * @param translation - string Translated text. + * @param text - string Original text. + */ +function overrideCoreDocumentationLinksToWpcom( translation: string, text: string ) { + switch ( text ) { + case 'https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/': + case 'https://wordpress.org/documentation/article/page-post-settings-sidebar/#excerpt': + return 'https://wordpress.com/support/excerpts/'; + case 'https://wordpress.org/documentation/article/write-posts-classic-editor/#post-field-descriptions': + case 'https://wordpress.org/documentation/article/page-post-settings-sidebar/#permalink': + return 'https://wordpress.com/support/permalinks-and-slugs/'; + case 'https://wordpress.org/documentation/article/wordpress-block-editor/': + return 'https://wordpress.com/support/wordpress-editor/'; + case 'https://wordpress.org/documentation/article/site-editor/': + return 'https://wordpress.com/support/site-editor/'; + case 'https://wordpress.org/documentation/article/block-based-widgets-editor/': + return 'https://wordpress.com/support/widgets/'; + case 'https://wordpress.org/plugins/classic-widgets/': + return 'https://wordpress.com/plugins/classic-widgets'; + case 'https://wordpress.org/documentation/article/styles-overview/': + return 'https://wordpress.com/support/using-styles/'; + } + + return translation; +} + +/** + * Override Core documentation that doesn't have matching WordPress.com documentation. + * + * @param translation - string Translated text. + * @param text - string Original text. + */ +function hideSimpleSiteTranslations( translation: string, text: string ) { + switch ( text ) { + case 'https://wordpress.org/plugins/classic-widgets/': + return ''; + case 'Want to stick with the old widgets?': + return ''; + case 'Get the Classic Widgets plugin.': + return ''; + } + + return translation; +} + +addFilter( + 'i18n.gettext_default', + 'jetpack-mu-wpcom/override-core-docs-to-wpcom', + overrideCoreDocumentationLinksToWpcom, + 9 +); + +if ( window?._currentSiteType === 'simple' ) { + addFilter( + 'i18n.gettext_default', + 'jetpack-mu-wpcom/override-core-docs-to-wpcom', + hideSimpleSiteTranslations, + 10 + ); +} diff --git a/projects/packages/jetpack-mu-wpcom/webpack.config.js b/projects/packages/jetpack-mu-wpcom/webpack.config.js index ae4cbd79f3144..9b344eb0ba846 100644 --- a/projects/packages/jetpack-mu-wpcom/webpack.config.js +++ b/projects/packages/jetpack-mu-wpcom/webpack.config.js @@ -25,6 +25,8 @@ module.exports = [ 'tags-education': './src/features/tags-education/tags-education.js', 'wpcom-admin-bar': './src/features/wpcom-admin-bar/wpcom-admin-bar.scss', 'wpcom-sidebar-notice': './src/features/wpcom-sidebar-notice/wpcom-sidebar-notice.scss', + 'wpcom-documentation-links': + './src/features/wpcom-documentation-links/wpcom-documentation-links.ts', }, mode: jetpackWebpackConfig.mode, devtool: jetpackWebpackConfig.devtool, From ae3a8d746cceeafa6eadeea61443bdc6878ea176 Mon Sep 17 00:00:00 2001 From: Griffith Chen Date: Wed, 10 Jul 2024 12:08:32 +0800 Subject: [PATCH 073/254] Port wpcom-block-description-links from ETK (#38254) --- .../etk-wpcom-block-description-links | 4 + .../src/class-jetpack-mu-wpcom.php | 1 + .../wpcom-block-description-links/README.md | 9 + .../wpcom-block-description-links/index.tsx | 116 ++++++ .../src/block-links-map.ts | 367 ++++++++++++++++++ .../src/inline-support-link.tsx | 81 ++++ .../wpcom-block-description-links.php | 43 ++ .../jetpack-mu-wpcom/webpack.config.js | 1 + 8 files changed, 622 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/etk-wpcom-block-description-links create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/README.md create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/index.tsx create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/src/block-links-map.ts create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/src/inline-support-link.tsx create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/wpcom-block-description-links.php diff --git a/projects/packages/jetpack-mu-wpcom/changelog/etk-wpcom-block-description-links b/projects/packages/jetpack-mu-wpcom/changelog/etk-wpcom-block-description-links new file mode 100644 index 0000000000000..eaa6ecacaa45a --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/etk-wpcom-block-description-links @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Port wpcom-block-description-links from ETK diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index a56a4824d840c..60cbfeeb2301a 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -137,6 +137,7 @@ public static function load_etk_features() { require_once __DIR__ . '/features/override-preview-button-url/override-preview-button-url.php'; require_once __DIR__ . '/features/paragraph-block-placeholder/paragraph-block-placeholder.php'; require_once __DIR__ . '/features/tags-education/tags-education.php'; + require_once __DIR__ . '/features/wpcom-block-description-links/wpcom-block-description-links.php'; require_once __DIR__ . '/features/wpcom-documentation-links/wpcom-documentation-links.php'; require_once __DIR__ . '/features/wpcom-whats-new/wpcom-whats-new.php'; } diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/README.md b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/README.md new file mode 100644 index 0000000000000..9df6dc5bdde38 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/README.md @@ -0,0 +1,9 @@ +# Block Description Links + +## Summary + +This adds a "Learn more" link inline with the Block Description **ONLY** when displayed in the block editor. + +## Adding more + +To extend this to more blocks you can add the block name along with the desired external link to the map found in [./src/block-links-map.ts](./src/block-links-map.ts). Please notice they are segregated as Core, Jetpack, and A8C. diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/index.tsx b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/index.tsx new file mode 100644 index 0000000000000..37f7ad3e3e7ed --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/index.tsx @@ -0,0 +1,116 @@ +import { createInterpolateElement } from '@wordpress/element'; +import { addFilter } from '@wordpress/hooks'; +import { JSXElementConstructor, ReactElement } from 'react'; +import blockInfoMapping, { + blockInfoWithVariations, + childrenBlockInfoWithDifferentUrl, +} from './src/block-links-map'; +import DescriptionSupportLink from './src/inline-support-link'; + +const createLocalizedDescriptionWithLearnMore = ( + title: string, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + description: string | ReactElement< string | JSXElementConstructor< any > >, + url: string, + postId: number +) => { + return createInterpolateElement( '', { + InlineSupportLink: ( + + { description } + + ), + } ); +}; + +const processedBlocks: { [ key: string ]: true } = {}; + +const addBlockSupportLinks = ( + settings: { + variations: Array< { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + description: string | ReactElement< string | JSXElementConstructor< any > >; + name: string; + title: string; + } >; + } & { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + [ key: string ]: string | ReactElement< string | JSXElementConstructor< any > >; + }, + name: string +) => { + // If block has a parent, use the parents name in the switch. This will apply the link to all nested blocks. + // The exception is "post content" block because it's used to allow blocks like "more" and "jetpack/paywall" only in post content areas & post editor + // `parent` is actually an array of strings, so converting to string is going to join multiple blocks together, making the method buggy. + const parentName = settings?.parent?.toString(); + const isChild = parentName && parentName !== 'core/post-content'; + const blockName = isChild ? parentName : name; + + /** + * This is needed because the `blocks.registerBlockType` filter is also triggered for deprecations. + * + * When the block has deprecations, this filter is triggered multiple times, resulting the Learn more link being appended multiple times. + */ + if ( processedBlocks[ name ] ) { + return settings; + } + + processedBlocks[ name ] = true; + + const additonalDescLink = + childrenBlockInfoWithDifferentUrl[ name ]?.link || blockInfoMapping[ blockName ]?.link; + + const additionalDescPostId = + childrenBlockInfoWithDifferentUrl[ name ]?.postId || blockInfoMapping[ blockName ]?.postId; + + /** + * Some elements are children, but have their own url for Learn More, and we want to show those. + */ + if ( additonalDescLink && additionalDescPostId ) { + settings.description = createLocalizedDescriptionWithLearnMore( + String( settings.title ), + settings.description, + additonalDescLink, + additionalDescPostId + ); + } + + if ( + blockInfoWithVariations[ name ] && + settings.variations && + Array.isArray( settings.variations ) + ) { + settings.variations = settings.variations.map( + ( variation: { + title: string; + name: string; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + description: string | ReactElement< string | JSXElementConstructor< any > >; + } ) => { + const link = blockInfoWithVariations[ name ][ variation.name ]?.link; + const postId = blockInfoWithVariations[ name ][ variation.name ]?.postId; + + if ( ! link ) { + return variation; + } + + variation.description = createLocalizedDescriptionWithLearnMore( + variation.title, + variation.description, + link, + postId + ); + + return variation; + } + ); + } + + return settings; +}; + +addFilter( + 'blocks.registerBlockType', + 'jetpack-mu-wpcom/add-block-support-link', + addBlockSupportLinks +); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/src/block-links-map.ts b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/src/block-links-map.ts new file mode 100644 index 0000000000000..1ea5a3ef817db --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/src/block-links-map.ts @@ -0,0 +1,367 @@ +/* URLs are localized within the function where these URLs are used. */ +const blockInfoMapping: { [ key: string ]: { link: string; postId: number } } = { + /** + * Core Blocks + */ + 'core/template-part': { + link: 'https://wordpress.com/support/full-site-editing/theme-blocks/template-part-block/', + postId: 192398, + }, + 'core/site-title': { + link: 'https://wordpress.com/support/full-site-editing/theme-blocks/site-title-block/', + postId: 184569, + }, + 'core/site-tagline': { + link: 'https://wordpress.com/support/full-site-editing/theme-blocks/site-tagline-block/', + postId: 184553, + }, + 'core/site-logo': { + link: 'https://wordpress.com/support/full-site-editing/theme-blocks/site-logo-block/', + postId: 184537, + }, + 'core/page-list': { + link: 'https://wordpress.com/support/full-site-editing/theme-blocks/page-list-block/', + postId: 180696, + }, + 'core/loginout': { + link: 'https://wordpress.com/support/full-site-editing/theme-blocks/login-out-block/', + postId: 184610, + }, + 'core/video': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/video-block/', + postId: 149045, + }, + 'core/verse': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/verse-block/', + postId: 149992, + }, + 'core/spacer': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/spacer-block/', + postId: 148996, + }, + 'core/shortcode': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/shortcode-block/', + postId: 149209, + }, + 'core/separator': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/separator-block/', + postId: 149012, + }, + 'core/search': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/search-block/', + postId: 187104, + }, + 'core/rss': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/rss-block/', + postId: 174794, + }, + 'core/navigation': { + link: 'https://wordpress.com/support/site-editing/theme-blocks/navigation-block/', + postId: 162159, + }, + 'core/tag-cloud': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/tag-cloud-block/', + postId: 188957, + }, + 'core/quote': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/quote-block/', + postId: 148575, + }, + 'core/pullquote': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/pullquote-block/', + postId: 149344, + }, + 'core/preformatted': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/preformatted-block/', + postId: 149339, + }, + 'core/more': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/more-block/', + postId: 148614, + }, + 'core/list': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/list-block/', + postId: 148563, + }, + 'core/latest-posts': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/latest-posts-block/', + postId: 149818, + }, + 'core/latest-comments': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/latest-comments-block/', + postId: 149811, + }, + 'core/heading': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/heading-block/', + postId: 148403, + }, + 'core/file': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/file-block/', + postId: 148586, + }, + 'core/embed': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/embed-block/', + postId: 150644, + }, + 'core/html': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/custom-html-block/', + postId: 149059, + }, + 'core/code': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/code-block/', + postId: 149042, + }, + 'core/freeform': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/classic-block/', + postId: 149026, + }, + 'core/categories': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/categories-block/', + postId: 149793, + }, + 'core/calendar': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/calendar-block/', + postId: 171935, + }, + 'core/audio': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/audio-block/', + postId: 148670, + }, + 'core/archives': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/archives-block/', + postId: 149225, + }, + 'core/query': { + link: 'https://wordpress.com/support/full-site-editing/theme-blocks/query-loop-block/', + postId: 184188, + }, + 'core/media-text': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/media-text-block/', + postId: 151100, + }, + 'core/table': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/table-block/', + postId: 149666, + }, + 'core/social-links': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/social-links-block/', + postId: 159466, + }, + 'core/columns': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/columns-block/', + postId: 149073, + }, + 'core/image': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/image-block/', + postId: 148378, + }, + 'core/cover': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/cover-block/', + postId: 148675, + }, + 'core/buttons': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/buttons-block/', + postId: 162116, + }, + 'core/gallery': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/gallery-block/', + postId: 148667, + }, + 'core/post-content': { + link: 'https://wordpress.com/support/full-site-editing/theme-blocks/post-content-block/', + postId: 216265, + }, + 'core/table-of-contents': { + link: 'https://wordpress.com/support/wordpress-editor/table-of-contents-block/', + postId: 201571, + }, + 'core/comments': { + link: 'https://wordpress.com/support/full-site-editing/theme-blocks/comments-block/', + postId: 218903, + }, + 'core/post-time-to-read': { + link: 'https://wordpress.com/support/site-editing/theme-blocks/time-to-read-block', + postId: 243241, + }, + 'syntaxhighlighter/code': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/syntax-highlighter-code-block/', + postId: 4743, + }, + 'crowdsignal-forms/vote': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/vote-block/', + postId: 174824, + }, + 'crowdsignal-forms/poll': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/poll-block/', + postId: 170183, + }, + 'crowdsignal-forms/nps': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/measure-nps-block/', + postId: 182393, + }, + 'crowdsignal-forms/feedback': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/feedback-button-block/', + postId: 183578, + }, + 'a8c/posts-carousel': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/posts-carousel-block/', + postId: 166417, + }, + 'premium-content/container': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/premium-content-block/', + postId: 243475, + }, + 'a8c/blog-posts': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/blog-posts-block/', + postId: 158419, + }, + 'jetpack/send-a-message': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/whatsapp-button-block/', + postId: 169728, + }, + 'jetpack/blogroll': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/blogroll-block/', + postId: 291406, + }, + 'jetpack/timeline': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/timeline-block/', + postId: 158453, + }, + 'jetpack/story': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/story-block/', + postId: 176320, + }, + 'jetpack/revue': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/revue-block/', + postId: 67810, + }, + 'jetpack/rating-star': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/ratings-block/', + postId: 158224, + }, + 'jetpack/related-posts': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/related-posts-block/', + postId: 1545, + }, + 'jetpack/repeat-visitor': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/repeat-visitor-block/', + postId: 154471, + }, + 'jetpack/podcast-player': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/podcast-player-block/', + postId: 163160, + }, + 'jetpack/opentable': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/opentable-block/', + postId: 162208, + }, + 'jetpack/map': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/map-block/', + postId: 149684, + }, + 'jetpack/image-compare': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/image-compare-block/', + postId: 168169, + }, + 'jetpack/gif': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/gif-block/', + postId: 174810, + }, + 'jetpack/event-countdown': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/event-countdown-block/', + postId: 159246, + }, + 'jetpack/donations': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/donations/', + postId: 171110, + }, + 'jetpack/calendly': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/calendly-block/', + postId: 162199, + }, + 'jetpack/business-hours': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/business-hours-block/', + postId: 173136, + }, + 'jetpack/wordads': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/ad-block/', + postId: 190916, + }, + 'jetpack/payments-intro': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/payments/', + postId: 169123, + }, + 'jetpack/contact-info': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/contact-info-block/', + postId: 186162, + }, + 'jetpack/tiled-gallery': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/tiled-gallery-block/', + postId: 150746, + }, + 'jetpack/slideshow': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/slideshow-block/', + postId: 157055, + }, + 'jetpack/subscriptions': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/subscription-form-block/', + postId: 170164, + }, + 'jetpack/contact-form': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/form-block/', + postId: 168307, + }, + 'jetpack/layout-grid': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/layout-grid-block/', + postId: 160172, + }, + 'jetpack/mailchimp': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/mailchimp-block/', + postId: 152657, + }, + 'jetpack/paywall': { + link: 'https://wordpress.com/support/paid-newsletters/#use-the-paywall-block', + postId: 168381, + }, + 'jetpack/sharing-buttons': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/sharing-buttons-block/', + postId: 330003, + }, + 'jetpack/like': { + link: 'https://wordpress.com/support/likes/', + postId: 7294, + }, +}; + +export const blockInfoWithVariations: { + [ key: string ]: { [ key: string ]: { link: string; postId: number } }; +} = { + 'core/group': { + group: { + link: 'https://wordpress.com/support/wordpress-editor/blocks/group-block/', + postId: 161882, + }, + 'group-row': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/row-block/', + postId: 190036, + }, + 'group-stack': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/row-block/', + postId: 190036, + }, + }, +}; + +export const childrenBlockInfoWithDifferentUrl: { + [ key: string ]: { link: string; postId: number }; +} = { + /** + * Core Blocks + */ + 'core/nextpage': { + link: 'https://wordpress.com/support/wordpress-editor/blocks/page-break-block/', + postId: 149374, + }, +}; + +export default blockInfoMapping; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/src/inline-support-link.tsx b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/src/inline-support-link.tsx new file mode 100644 index 0000000000000..d85e88e23bf57 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/src/inline-support-link.tsx @@ -0,0 +1,81 @@ +import { useAnalytics } from '@automattic/jetpack-shared-extension-utils'; +import { Button, ExternalLink } from '@wordpress/components'; +import { useDispatch } from '@wordpress/data'; +import { __ } from '@wordpress/i18n'; +import { useState, JSXElementConstructor, ReactElement } from 'react'; + +interface Props { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + children: string | ReactElement< string | JSXElementConstructor< any > >; + title: string; + url: string; + postId: number; +} + +/** + * Create the block description link. + * + * @param {Props} props - The component props. + * @param {string | ReactElement>} props.children - The component children. + * @param {string} props.title - Block title. + * @param {string} props.url - Support link URL. + * @param {number} props.postId - Post ID. + */ +export default function DescriptionSupportLink( { + children, + title, + url, + postId, +}: Props ): JSX.Element { + // This was cooked up to only apply the link in the BlockEditor sidebar. + // Since there was no identifier in the environment to differentiate. + const [ ref, setRef ] = useState< Element | null >(); + const { tracks } = useAnalytics(); + const helpCenterDispatch = useDispatch( 'automattic/help-center' ); + const setShowHelpCenter = helpCenterDispatch?.setShowHelpCenter; + const setShowSupportDoc = helpCenterDispatch?.setShowSupportDoc; + + if ( ref && ! ref?.closest( '.block-editor-block-inspector' ) ) { + return children as JSX.Element; + } + + return ( + <> + { children } +
+ { setShowHelpCenter ? ( + + ) : ( + { + tracks.recordEvent( 'jetpack_mu_wpcom_block_description_support_link_click', { + block: title, + support_link: url, + } ); + } } + ref={ reference => ref !== reference && setRef( reference ) } + style={ { display: 'block', marginTop: 10, maxWidth: 'fit-content' } } + className="fse-inline-support-link" + href={ url } + > + { __( 'Learn more', 'jetpack-mu-wpcom' ) } + + ) } + + ); +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/wpcom-block-description-links.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/wpcom-block-description-links.php new file mode 100644 index 0000000000000..ff0dffe928742 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/wpcom-block-description-links.php @@ -0,0 +1,43 @@ +should_enable_tracking( new Terms_Of_Service(), $status ); + + if ( $can_use_analytics ) { + Tracking::register_tracks_functions_scripts( true ); + } +} + +add_action( 'enqueue_block_editor_assets', 'wpcom_enqueue_block_description_links_assets', 100 ); diff --git a/projects/packages/jetpack-mu-wpcom/webpack.config.js b/projects/packages/jetpack-mu-wpcom/webpack.config.js index 9b344eb0ba846..df9f24f6314d5 100644 --- a/projects/packages/jetpack-mu-wpcom/webpack.config.js +++ b/projects/packages/jetpack-mu-wpcom/webpack.config.js @@ -24,6 +24,7 @@ module.exports = [ './src/features/paragraph-block-placeholder/paragraph-block-placeholder.js', 'tags-education': './src/features/tags-education/tags-education.js', 'wpcom-admin-bar': './src/features/wpcom-admin-bar/wpcom-admin-bar.scss', + 'wpcom-block-description-links': './src/features/wpcom-block-description-links/index.tsx', 'wpcom-sidebar-notice': './src/features/wpcom-sidebar-notice/wpcom-sidebar-notice.scss', 'wpcom-documentation-links': './src/features/wpcom-documentation-links/wpcom-documentation-links.ts', From f868d562963c7708ead836c356906eadbc24fdd0 Mon Sep 17 00:00:00 2001 From: arthur791004 Date: Wed, 10 Jul 2024 14:27:30 +0900 Subject: [PATCH 074/254] Jetpack Blocks: Migrate the EventCountdown block from ETK (#38250) * Jetpack Blocks: Migrate the EventCoutdown block from ETK * changelog * Load the event-countdown styles from view.js * Update styles --- .../feat-jetpack-event-countdown-block | 4 + .../blocks/event-countdown/block.json | 31 +++ .../extensions/blocks/event-countdown/edit.js | 130 ++++++++++ .../blocks/event-countdown/editor.js | 10 + .../blocks/event-countdown/editor.scss | 31 +++ .../blocks/event-countdown/event-countdown.js | 73 ++++++ .../event-countdown/event-countdown.php | 39 +++ .../event-countdown/event-countdown.scss | 232 ++++++++++++++++++ .../extensions/blocks/event-countdown/icon.js | 7 + .../extensions/blocks/event-countdown/save.js | 20 ++ .../extensions/blocks/event-countdown/view.js | 92 +++++++ .../plugins/jetpack/extensions/index.json | 1 + 12 files changed, 670 insertions(+) create mode 100644 projects/plugins/jetpack/changelog/feat-jetpack-event-countdown-block create mode 100644 projects/plugins/jetpack/extensions/blocks/event-countdown/block.json create mode 100644 projects/plugins/jetpack/extensions/blocks/event-countdown/edit.js create mode 100644 projects/plugins/jetpack/extensions/blocks/event-countdown/editor.js create mode 100644 projects/plugins/jetpack/extensions/blocks/event-countdown/editor.scss create mode 100644 projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.js create mode 100644 projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.php create mode 100644 projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.scss create mode 100644 projects/plugins/jetpack/extensions/blocks/event-countdown/icon.js create mode 100644 projects/plugins/jetpack/extensions/blocks/event-countdown/save.js create mode 100644 projects/plugins/jetpack/extensions/blocks/event-countdown/view.js diff --git a/projects/plugins/jetpack/changelog/feat-jetpack-event-countdown-block b/projects/plugins/jetpack/changelog/feat-jetpack-event-countdown-block new file mode 100644 index 0000000000000..a4765f5d44c95 --- /dev/null +++ b/projects/plugins/jetpack/changelog/feat-jetpack-event-countdown-block @@ -0,0 +1,4 @@ +Significance: minor +Type: enhancement + +Jetpack Blocks: Migrate the EventCoutdown block from ETK diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/block.json b/projects/plugins/jetpack/extensions/blocks/event-countdown/block.json new file mode 100644 index 0000000000000..76a8ca78021ef --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/event-countdown/block.json @@ -0,0 +1,31 @@ +{ + "$schema": "https://schemas.wp.org/trunk/block.json", + "apiVersion": 3, + "name": "jetpack/event-countdown", + "title": "Event Countdown", + "description": "Count down to your favorite next thing, and celebrate with fireworks when the time is right!", + "keywords": [ "events", "tickets" ], + "version": "12.5.0", + "textdomain": "jetpack", + "category": "widgets", + "icon": "", + "supports": { + "align": [ "wide", "full" ] + }, + "attributes": { + "eventTitle": { + "type": "string", + "source": "text", + "selector": ".event-countdown__event-title" + }, + "eventTimestamp": { + "type": "number" + } + }, + "example": { + "attributes": { + "eventTitle": "Total Solar Eclipse", + "eventTimestamp": 1318874398 + } + } +} diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/edit.js b/projects/plugins/jetpack/extensions/blocks/event-countdown/edit.js new file mode 100644 index 0000000000000..6c86afc38dc56 --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/event-countdown/edit.js @@ -0,0 +1,130 @@ +import { useBlockProps } from '@wordpress/block-editor'; +import { Button, DateTimePicker, Dropdown, Placeholder } from '@wordpress/components'; +import { useInstanceId } from '@wordpress/compose'; +// eslint-disable-next-line wpcalypso/no-unsafe-wp-apis +import { dateI18n, __experimentalGetSettings } from '@wordpress/date'; +import { __ } from '@wordpress/i18n'; +import clsx from 'clsx'; +import moment from 'moment'; +import EventCountDown from './event-countdown'; +import { EventCountdownIcon } from './icon'; + +const TIMEZONELESS_FORMAT = 'YYYY-MM-DDTHH:mm:ss'; + +/** + * Assigns timezone to a date without altering it + * @param {string} date - a date in YYYY-MM-DDTHH:mm:ss format + * @param {number} offset - the offset in hours + * @param {string} format - the format of the date + * @returns {object} a moment instance + */ +function assignTimezone( date, offset, format = TIMEZONELESS_FORMAT ) { + // passing the `true` flag to `utcOffset` keeps the date unaltered, only adds a tz + return moment( date, format ).utcOffset( offset * 60, true ); +} + +const EventCountDownBlockEdit = ( { attributes, setAttributes, isSelected } ) => { + const blockProps = useBlockProps( { + className: 'wp-block-jetpack-event-countdown', + } ); + + const instanceId = useInstanceId( EventCountDownBlockEdit ); + + const settings = __experimentalGetSettings(); + + let label = __( 'Choose Date', 'jetpack' ); + let eventDate; + + if ( attributes.eventTimestamp ) { + label = dateI18n( + settings.formats.datetimeAbbreviated, + // eventTimestamp is UNIX (in seconds), Date expect milliseconds + new Date( attributes.eventTimestamp * 1000 ) + ); + + // the DateTimePicker requires the date to be in this format + // we offset the date by the site timezone settings to counteract the Datepicker automatic adjustment to the client-side timezone + eventDate = moment( attributes.eventTimestamp * 1000 ) + .utcOffset( settings.timezone.offset * 60 ) + .format( TIMEZONELESS_FORMAT ); + } else if ( attributes.eventDate ) { + // backwards compatibility + const siteTimeZoneAdjustedTime = assignTimezone( + attributes.eventDate, + Number.parseFloat( settings.timezone.offset ) // offset can be a string if a manual timezone is selected + ); + + label = dateI18n( settings.formats.datetimeAbbreviated, siteTimeZoneAdjustedTime ); + eventDate = attributes.eventDate; + } + + return ( +
+ { isSelected && ( + } + > +
+ + setAttributes( { eventTitle: evt.target.value } ) } + /> +
+
+ + ( + + ) } + renderContent={ () => ( + + setAttributes( { + eventTimestamp: assignTimezone( date, settings.timezone.offset ).unix(), + } ) + } + currentDate={ eventDate } + /> + ) } + /> +
+
+ ) } + { ! isSelected && ( + + ) } +
+ ); +}; + +export default EventCountDownBlockEdit; diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/editor.js b/projects/plugins/jetpack/extensions/blocks/event-countdown/editor.js new file mode 100644 index 0000000000000..0e5ea7078774f --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/event-countdown/editor.js @@ -0,0 +1,10 @@ +import { registerJetpackBlockFromMetadata } from '../../shared/register-jetpack-block'; +import metadata from './block.json'; +import edit from './edit'; +import save from './save'; +import './editor.scss'; + +registerJetpackBlockFromMetadata( metadata, { + edit, + save, +} ); diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/editor.scss b/projects/plugins/jetpack/extensions/blocks/event-countdown/editor.scss new file mode 100644 index 0000000000000..d5ba3e54a9a62 --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/event-countdown/editor.scss @@ -0,0 +1,31 @@ +@import '@automattic/jetpack-base-styles/gutenberg-base-styles'; + +/* Editor styles */ +.wp-block-jetpack-event-countdown .components-placeholder__fieldset { + flex-direction: column; + + p { + margin: 0 0 1em; + } + + label { + display: block; + margin-bottom: 4px; + } + + .components-placeholder__input[type="text"] { + @include input-control; + } + + .event-countdown__event-title { + min-width: 240px; + width: 100%; + } +} + +// Fix so datetime picker doesn't have horizontal scrollbar. +// This is a global fix, unscoped, and not very nice. +// @todo: It won't be necessary once https://github.com/WordPress/gutenberg/pull/18235/files gets merged. +.components-datetime { + padding: 8px; +} diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.js b/projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.js new file mode 100644 index 0000000000000..94ac0b8346d65 --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.js @@ -0,0 +1,73 @@ +import { __, _x } from '@wordpress/i18n'; + +import './event-countdown.scss'; + +const EventCountdown = ( { eventTitle, eventTimestamp, eventDate, isPreviewing } ) => { + // Expected values in save. + let days = ' '; + let hours = ' '; + let mins = ' '; + let secs = ' '; + + if ( isPreviewing ) { + // Zero out. + days = hours = mins = secs = 0; + let eventTime; + if ( eventTimestamp ) { + eventTime = eventTimestamp * 1000; + } else { + // backwards compatibility + eventTime = new Date( eventDate ).getTime(); + } + const now = Date.now(); + const diff = eventTime - now; + + if ( diff > 0 ) { + // Convert diff to seconds. + let rem = Math.round( diff / 1000 ); + + days = Math.floor( rem / ( 24 * 60 * 60 ) ); + rem = rem - days * 24 * 60 * 60; + + hours = Math.floor( rem / ( 60 * 60 ) ); + rem = rem - hours * 60 * 60; + + mins = Math.floor( rem / 60 ); + rem = rem - mins * 60; + + secs = rem; + } + } + + return ( +
+
{ eventTimestamp || eventDate }
+
+

+ { days }{ ' ' } + { _x( 'days', 'Countdown days remaining', 'jetpack' ) } +

+

+ + { hours }{ ' ' } + { _x( 'hours', 'Countdown hours remaining', 'jetpack' ) } + + + { mins }{ ' ' } + { _x( 'minutes', 'Countdown minutes remaining', 'jetpack' ) } + + + { secs }{ ' ' } + { _x( 'seconds', 'Countdown seconds remaining', 'jetpack' ) } + +

+

{ __( 'until', 'jetpack' ) }

+
+
+

{ eventTitle }

+
+
+ ); +}; + +export default EventCountdown; diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.php b/projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.php new file mode 100644 index 0000000000000..31b99a434dc10 --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.php @@ -0,0 +1,39 @@ + __NAMESPACE__ . '\load_assets' ) + ); +} +add_action( 'init', __NAMESPACE__ . '\register_block' ); + +/** + * EventCountdown block. + * + * @param array $attr Array containing the EventCountdown block attributes. + * @param string $content String containing the EventCountdown block content. + * + * @return string + */ +function load_assets( $attr, $content ) { + Jetpack_Gutenberg::load_assets_as_required( __DIR__ ); + return $content; +} diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.scss b/projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.scss new file mode 100644 index 0000000000000..00e2c9bdbc0b5 --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.scss @@ -0,0 +1,232 @@ +/* Front end styles */ +.wp-block-jetpack-event-countdown { + text-align: center; + position: relative; + + .event-countdown__counter { + text-transform: uppercase; + /* stylelint-disable-next-line declaration-property-unit-allowed-list */ + font-size: 16px; + font-weight: 600; + } + + .event-countdown__counter span { + margin: 0 1em; + display: inline-flex; + align-items: center; + } + + .event-countdown__counter span strong { + margin-right: 8px; + /* stylelint-disable-next-line declaration-property-unit-allowed-list */ + font-size: 24px; + } + + .event-countdown__day { + line-height: 1; + font-weight: 900; /* stylelint-disable-line scales/font-weights */ + /* stylelint-disable-next-line declaration-property-unit-allowed-list */ + font-size: 56px; + display: block; + } + + .event-countdown__hour, + .event-countdown__minute, + .event-countdown__second { + min-width: 1.5em; // A min-width means 2 digit numbers don't cause too much resizing. + text-align: right; + } + + .event-countdown__counter p, + .event-countdown__event-title p { + margin-top: 1rem; + margin-bottom: 1rem; + } + + // It's time! + .event-countdown__counter.event-countdown__counter-stopped p, + .event-countdown__counter.event-countdown__counter-stopped span, + .event-countdown__counter.event-countdown__counter-stopped strong { + /* stylelint-disable-next-line declaration-property-unit-allowed-list */ + font-size: 100%; + display: inline; + + &.event-countdown__day { + font-weight: bold; + } + } + + .event-countdown__counter-stopped + .event-countdown__event-title { + position: absolute; + left: 1em; + right: 1em; + top: 25%; + } + + .event-countdown__event-title { + /* stylelint-disable-next-line declaration-property-unit-allowed-list */ + font-size: 36px; + } +} + +// Font size beyond mobile. +@media only screen and (min-width: 600px) { + .wp-block-jetpack-event-countdown { + .event-countdown__counter span strong { + /* stylelint-disable-next-line declaration-property-unit-allowed-list */ + font-size: 36px; + } + + .event-countdown__day { + /* stylelint-disable-next-line declaration-property-unit-allowed-list */ + font-size: 96px; + } + + .event-countdown__event-title { + /* stylelint-disable-next-line declaration-property-unit-allowed-list */ + font-size: 48px; + } + } +} + + +/* Hidden timestamp used by the script to extract the event time. */ +.event-countdown__date { + display: none; +} + + +/** + * Fireworks + */ + +$ecf_color1: #fff922; +$ecf_color2: #685fd7; +$ecf_color3: #ecfec7; +$ecf_color4: #a3fdec; +$ecf_color5: #feb352; +$ecf_color6: #b82806; + +// Contain the fireworks, so they never cause scrollbars to appear. +.event-countdown__fireworks { + position: relative; + overflow: hidden; + z-index: -1; + padding-top: 50%; // Make responsive. + + > .event-countdown__fireworks-before, + > .event-countdown__fireworks-after { + will-change: transform; + position: absolute; + top: 0; + width: 4px; + height: 4px; + border-radius: 50%; + animation: 1s event_countdown_bang ease-out infinite backwards, 1s event_countdown_gravity ease-in infinite backwards, 5s event_countdown_position linear infinite backwards; + mix-blend-mode: overlay; + box-shadow: + -120px -218.66667px $ecf_color1, + 248px -16.66667px $ecf_color3, + 190px 16.33333px $ecf_color1, + -113px -308.66667px $ecf_color5, + -109px -287.66667px $ecf_color6, + -50px -313.66667px $ecf_color5, + 226px -31.66667px $ecf_color5, + 180px -351.66667px $ecf_color5, + -12px -338.66667px $ecf_color3, + 220px -388.66667px $ecf_color3, + -69px -27.66667px $ecf_color5, + -111px -339.66667px $ecf_color1, + 155px -237.66667px $ecf_color2, + -152px -380.66667px $ecf_color2, + -50px -37.66667px $ecf_color2, + -95px -175.66667px $ecf_color3, + -88px 10.33333px $ecf_color1, + 112px -309.66667px $ecf_color1, + 69px -415.66667px $ecf_color5, + 168px -100.66667px $ecf_color5, + -244px 24.33333px $ecf_color6, + 97px -325.66667px $ecf_color5, + -211px -182.66667px $ecf_color3, + 236px -126.66667px $ecf_color4, + 140px -196.66667px $ecf_color1, + 125px -175.66667px $ecf_color2, + 118px -381.66667px $ecf_color5, + 144px -111.66667px $ecf_color6, + 36px -78.66667px $ecf_color4, + -63px -196.66667px $ecf_color2, + -218px -227.66667px $ecf_color3, + -134px -377.66667px $ecf_color4, + -36px -412.66667px $ecf_color4, + 209px -106.66667px $ecf_color3, + 91px -278.66667px $ecf_color1, + -22px -191.66667px $ecf_color3, + 139px -392.66667px $ecf_color3, + 56px -2.66667px $ecf_color1, + -156px -276.66667px $ecf_color5, + -163px -233.66667px $ecf_color3, + -238px -346.66667px $ecf_color3, + 62px -363.66667px $ecf_color1, + 244px -170.66667px $ecf_color1, + 224px -142.66667px $ecf_color2, + 141px -208.66667px $ecf_color2, + 211px -285.66667px $ecf_color5, + 181px -128.66667px $ecf_color1, + 90px -123.66667px $ecf_color2, + 189px 70.33333px $ecf_color3, + -18px -383.66667px $ecf_color3, + 100px -6.66667px $ecf_color5; + } + + > .event-countdown__fireworks-after { + animation-delay: 1.25s, 1.25s, 1.25s; + animation-duration: 1.25s, 1.25s, 6.25s; + } +} + +@keyframes event_countdown_bang { + from { + box-shadow: 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white), 0 0 var(--studio-white); + } +} + +@keyframes event_countdown_gravity { + to { + transform: translateY(200px); + -webkit-transform: translateY(200px); + opacity: 0; + } +} + +@keyframes event_countdown_position { + 0%, + 19.9% { + margin-top: 10%; + margin-left: 40%; + } + + 20%, + 39.9% { + margin-top: 40%; + margin-left: 30%; + } + + 40%, + 59.9% { + margin-top: 20%; + margin-left: 70%; + } + + 60%, + 79.9% { + margin-top: 30%; + margin-left: 20%; + } + + 80%, + 99.9% { + margin-top: 30%; + margin-left: 80%; + } +} + diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/icon.js b/projects/plugins/jetpack/extensions/blocks/event-countdown/icon.js new file mode 100644 index 0000000000000..01fe72e5cb6d2 --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/event-countdown/icon.js @@ -0,0 +1,7 @@ +import { Path, SVG } from '@wordpress/components'; + +export const EventCountdownIcon = () => ( + + + +); diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/save.js b/projects/plugins/jetpack/extensions/blocks/event-countdown/save.js new file mode 100644 index 0000000000000..a06756275e6d1 --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/event-countdown/save.js @@ -0,0 +1,20 @@ +import { useBlockProps } from '@wordpress/block-editor'; +import EventCountDown from './event-countdown'; + +const save = ( { attributes } ) => { + const blockProps = useBlockProps.save( { + className: 'wp-block-jetpack-event-countdown', + } ); + + return ( +
+ +
+ ); +}; + +export default save; diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/view.js b/projects/plugins/jetpack/extensions/blocks/event-countdown/view.js new file mode 100644 index 0000000000000..203b5f7344310 --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/event-countdown/view.js @@ -0,0 +1,92 @@ +import domReady from '@wordpress/dom-ready'; + +import './event-countdown.scss'; + +domReady( function () { + function isUnixTimestamp( dtstr ) { + return /^[0-9]+$/.test( dtstr ); + } + // loop through all event countdown blocks on page + const intervalIds = []; + const cals = document.getElementsByClassName( 'wp-block-jetpack-event-countdown' ); + for ( let i = 0; i < cals.length; i++ ) { + const cal = cals[ i ]; + + // grab date from event-countdown__date field + const eventDateElem = cal.getElementsByClassName( 'event-countdown__date' ); + if ( eventDateElem.length < 1 ) { + continue; + } + + const dtstr = eventDateElem[ 0 ].textContent; + + let eventTime; + if ( isUnixTimestamp( dtstr ) ) { + eventTime = dtstr * 1000; + } else { + // backwards compatibility, event date was stored as YYYY-MM-DDTHH:mm:ss + // parse date into unix time (but in ms) + eventTime = new Date( dtstr ).getTime(); + } + if ( isNaN( eventTime ) ) { + continue; + } + + // only start interval if event is in the future + if ( eventTime - Date.now() > 0 ) { + intervalIds[ i ] = window.setInterval( updateCountdown, 1000, eventTime, cal, i ); + } else { + itsHappening( cal ); + } + } + + // function called by interval to update displayed time + // Countdown element passed in as the dom node to search + // within, supporting multiple events per page + function updateCountdown( ts, elem, id ) { + const now = Date.now(); + const diff = ts - now; + + if ( diff < 0 ) { + itsHappening( elem ); + window.clearInterval( intervalIds[ id ] ); // remove interval here + return; + } + + // convert diff to seconds + let rem = Math.round( diff / 1000 ); + + const days = Math.floor( rem / ( 24 * 60 * 60 ) ); + rem = rem - days * 24 * 60 * 60; + + const hours = Math.floor( rem / ( 60 * 60 ) ); + rem = rem - hours * 60 * 60; + + const mins = Math.floor( rem / 60 ); + rem = rem - mins * 60; + + const secs = rem; + + elem.getElementsByClassName( 'event-countdown__day' )[ 0 ].innerHTML = days; + elem.getElementsByClassName( 'event-countdown__hour' )[ 0 ].innerHTML = hours; + elem.getElementsByClassName( 'event-countdown__minute' )[ 0 ].innerHTML = mins; + elem.getElementsByClassName( 'event-countdown__second' )[ 0 ].innerHTML = secs; + } + + // what should we do after the event has passed + // the majority of views will be well after and + // not during the transition + function itsHappening( elem ) { + const countdown = elem.getElementsByClassName( 'event-countdown__counter' )[ 0 ]; + const fireworks = document.createElement( 'div' ); + elem.getElementsByClassName( 'event-countdown__day' )[ 0 ].innerHTML = 0; + elem.getElementsByClassName( 'event-countdown__hour' )[ 0 ].innerHTML = 0; + elem.getElementsByClassName( 'event-countdown__minute' )[ 0 ].innerHTML = 0; + elem.getElementsByClassName( 'event-countdown__second' )[ 0 ].innerHTML = 0; + countdown.classList.add( 'event-countdown__counter-stopped' ); + fireworks.className = 'event-countdown__fireworks'; + fireworks.innerHTML = + "
"; + countdown.parentNode.appendChild( fireworks, countdown ); + } +} ); diff --git a/projects/plugins/jetpack/extensions/index.json b/projects/plugins/jetpack/extensions/index.json index c7ee8bf1e3c87..0ce53c7228b56 100644 --- a/projects/plugins/jetpack/extensions/index.json +++ b/projects/plugins/jetpack/extensions/index.json @@ -12,6 +12,7 @@ "contact-form/salesforce-lead-form", "contact-info", "donations", + "event-countdown", "eventbrite", "gif", "google-calendar", From 3ce744a4a1a9ce3e997fe26eeaaccdbdcbca6a41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nauris=20P=C5=AB=C4=B7is?= Date: Wed, 10 Jul 2024 10:02:34 +0300 Subject: [PATCH 075/254] Jetpack Boost: Enhance Image and CSS Proxy with CDN and Caching (#38252) * Make sure CSS proxy only attempts to fetch CSS * Pass image guide requests through photon * esc_html the error message * Add plugins/boost changelog entry. * excess space * wp_parse_url * remove undefined variable * Make sure that $css is set * return void * Remove escess return * Use `wp_safe_remote_get` --- .../modules/image-guide/Image_Guide_Proxy.php | 12 +++++- .../optimizations/critical-css/CSS_Proxy.php | 41 +++++++++++++++---- .../plugins/boost/changelog/fix-boost-proxy | 4 ++ 3 files changed, 46 insertions(+), 11 deletions(-) create mode 100644 projects/plugins/boost/changelog/fix-boost-proxy diff --git a/projects/plugins/boost/app/modules/image-guide/Image_Guide_Proxy.php b/projects/plugins/boost/app/modules/image-guide/Image_Guide_Proxy.php index eb1d0e4954fcd..4d6ef31835cb7 100644 --- a/projects/plugins/boost/app/modules/image-guide/Image_Guide_Proxy.php +++ b/projects/plugins/boost/app/modules/image-guide/Image_Guide_Proxy.php @@ -2,6 +2,8 @@ namespace Automattic\Jetpack_Boost\Modules\Image_Guide; +use Automattic\Jetpack\Image_CDN\Image_CDN_Core; + /** * Add an ajax endpoint to proxy external CSS files. */ @@ -34,12 +36,18 @@ public static function handle_proxy() { wp_send_json_error( 'Invalid URL', 400 ); } - $response = wp_remote_get( $proxy_url ); + $photon_url = Image_CDN_Core::cdn_url( $proxy_url ); + $photon_url_domain = wp_parse_url( $photon_url, PHP_URL_HOST ); + $photon_domain = wp_parse_url( apply_filters( 'jetpack_photon_domain', 'https://i0.wp.com' ), PHP_URL_HOST ); + if ( $photon_url_domain !== $photon_domain ) { + wp_send_json_error( 'Failed to proxy the image.', 400 ); + } + + $response = wp_safe_remote_get( $photon_url ); if ( is_wp_error( $response ) ) { wp_send_json_error( 'error', 400 ); } wp_send_json_success( iterator_to_array( wp_remote_retrieve_headers( $response ) ) ); - die(); } } diff --git a/projects/plugins/boost/app/modules/optimizations/critical-css/CSS_Proxy.php b/projects/plugins/boost/app/modules/optimizations/critical-css/CSS_Proxy.php index ff9379278b9bb..0584aaf03627b 100644 --- a/projects/plugins/boost/app/modules/optimizations/critical-css/CSS_Proxy.php +++ b/projects/plugins/boost/app/modules/optimizations/critical-css/CSS_Proxy.php @@ -21,7 +21,7 @@ public static function init() { /** * AJAX handler to handle proxying of external CSS resources. * - * @return never + * @return void */ public function handle_css_proxy() { @@ -46,18 +46,41 @@ public function handle_css_proxy() { die( 'Invalid URL' ); } - $response = wp_remote_get( $proxy_url ); + $url_path = wp_parse_url( $proxy_url, PHP_URL_PATH ); + if ( ! $url_path || substr( strtolower( $url_path ), -4 ) !== '.css' ) { + wp_die( 'Invalid CSS file URL', 400 ); + } + + $cache_key = 'jb_css_proxy_' . md5( $proxy_url ); + $response = wp_cache_get( $cache_key ); + + if ( is_array( $response ) && isset( $response['error'] ) ) { + wp_die( esc_html( $response['error'] ), 400 ); + } + + $css = ''; + if ( false === $response ) { + $response = wp_safe_remote_get( $proxy_url ); + $content_type = wp_remote_retrieve_header( $response, 'content-type' ); + if ( strpos( $content_type, 'text/css' ) === false ) { + wp_cache_set( $cache_key, array( 'error' => 'Invalid content type. Expected CSS.' ), '', HOUR_IN_SECONDS ); + wp_die( 'Invalid content type. Expected CSS.', 400 ); + } + $css = wp_remote_retrieve_body( $response ); + wp_cache_set( $cache_key, $css, '', HOUR_IN_SECONDS ); + } + if ( is_wp_error( $response ) ) { // TODO: Nicer error handling. die( 'error' ); } - header( 'Content-type: text/css' ); - - // Outputting proxied CSS contents unescaped. - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo wp_strip_all_tags( $response['body'] ); - - die(); + if ( $css ) { + header( 'Content-type: text/css' ); + // Outputting proxied CSS contents unescaped. + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + echo wp_strip_all_tags( $css ); + die(); + } } } diff --git a/projects/plugins/boost/changelog/fix-boost-proxy b/projects/plugins/boost/changelog/fix-boost-proxy new file mode 100644 index 0000000000000..2b88d6792dd7a --- /dev/null +++ b/projects/plugins/boost/changelog/fix-boost-proxy @@ -0,0 +1,4 @@ +Significance: patch +Type: security + +Jetpack Boost: Improved image and CSS proxy functionalities with CDN support, caching, and other enhancements. From 4dc8e34112d12ed92d6aff93dab8142da9799e4d Mon Sep 17 00:00:00 2001 From: Karen Attfield Date: Wed, 10 Jul 2024 09:15:03 +0100 Subject: [PATCH 076/254] Classic Theme Helper: Copy Social Menu code to Classic Theme Helper package (#38243) --- .../classic-theme-helper/.phan/baseline.php | 2 + ...ocial-menu-to-classic-theme-helper-package | 4 + .../classic-theme-helper/package.json | 2 +- .../classic-theme-helper/src/class-main.php | 2 +- .../classic-theme-helper/src/social-menu.php | 127 ++++++++++ .../src/social-menu/icon-functions.php | 213 +++++++++++++++++ .../src/social-menu/social-menu.css | 222 ++++++++++++++++++ .../src/social-menu/social-menu.svg | 192 +++++++++++++++ projects/plugins/jetpack/.phan/baseline.php | 6 +- ...ocial-menu-to-classic-theme-helper-package | 4 + .../modules/theme-tools/social-menu.php | 176 +++++++------- .../social-menu/icon-functions.php | 16 +- 12 files changed, 869 insertions(+), 97 deletions(-) create mode 100644 projects/packages/classic-theme-helper/changelog/add-social-menu-to-classic-theme-helper-package create mode 100644 projects/packages/classic-theme-helper/src/social-menu.php create mode 100644 projects/packages/classic-theme-helper/src/social-menu/icon-functions.php create mode 100644 projects/packages/classic-theme-helper/src/social-menu/social-menu.css create mode 100644 projects/packages/classic-theme-helper/src/social-menu/social-menu.svg create mode 100644 projects/plugins/jetpack/changelog/add-social-menu-to-classic-theme-helper-package diff --git a/projects/packages/classic-theme-helper/.phan/baseline.php b/projects/packages/classic-theme-helper/.phan/baseline.php index 889311320576f..89047ffe08480 100644 --- a/projects/packages/classic-theme-helper/.phan/baseline.php +++ b/projects/packages/classic-theme-helper/.phan/baseline.php @@ -19,11 +19,13 @@ // PhanTypeMismatchProperty : 1 occurrence // PhanTypeMismatchPropertyProbablyReal : 1 occurrence // PhanTypePossiblyInvalidDimOffset : 1 occurrence + // PhanUndeclaredFunction : 1 occurrence // Currently, file_suppressions and directory_suppressions are the only supported suppressions 'file_suppressions' => [ '_inc/lib/tonesque.php' => ['PhanNonClassMethodCall', 'PhanTypeMismatchArgument', 'PhanTypeMismatchArgumentInternal', 'PhanTypeMismatchArgumentProbablyReal', 'PhanTypeMismatchPropertyProbablyReal', 'PhanUndeclaredClassMethod'], 'src/class-featured-content.php' => ['PhanTypeComparisonToArray', 'PhanTypeInvalidDimOffset', 'PhanTypeMismatchArgument', 'PhanTypeMismatchProperty', 'PhanTypePossiblyInvalidDimOffset'], + 'src/social-menu/icon-functions.php' => ['PhanUndeclaredFunction'], ], // 'directory_suppressions' => ['src/directory_name' => ['PhanIssueName1', 'PhanIssueName2']] can be manually added if needed. // (directory_suppressions will currently be ignored by subsequent calls to --save-baseline, but may be preserved in future Phan releases) diff --git a/projects/packages/classic-theme-helper/changelog/add-social-menu-to-classic-theme-helper-package b/projects/packages/classic-theme-helper/changelog/add-social-menu-to-classic-theme-helper-package new file mode 100644 index 0000000000000..9c018ceec030b --- /dev/null +++ b/projects/packages/classic-theme-helper/changelog/add-social-menu-to-classic-theme-helper-package @@ -0,0 +1,4 @@ +Significance: patch +Type: added + +Theme Tools: Adding Social Menu to Classic Theme Helper package diff --git a/projects/packages/classic-theme-helper/package.json b/projects/packages/classic-theme-helper/package.json index c57a08d135d77..e0d78bd18d0f2 100644 --- a/projects/packages/classic-theme-helper/package.json +++ b/projects/packages/classic-theme-helper/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-classic-theme-helper", - "version": "0.4.0", + "version": "0.4.1-alpha", "description": "Features used with classic themes", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/classic-theme-helper/#readme", "bugs": { diff --git a/projects/packages/classic-theme-helper/src/class-main.php b/projects/packages/classic-theme-helper/src/class-main.php index a495cf2e9cd05..c03dea06b286c 100644 --- a/projects/packages/classic-theme-helper/src/class-main.php +++ b/projects/packages/classic-theme-helper/src/class-main.php @@ -14,7 +14,7 @@ */ class Main { - const PACKAGE_VERSION = '0.4.0'; + const PACKAGE_VERSION = '0.4.1-alpha'; /** * Modules to include. diff --git a/projects/packages/classic-theme-helper/src/social-menu.php b/projects/packages/classic-theme-helper/src/social-menu.php new file mode 100644 index 0000000000000..be89a1c68c36a --- /dev/null +++ b/projects/packages/classic-theme-helper/src/social-menu.php @@ -0,0 +1,127 @@ + esc_html( $social_menu_description ), + ) + ); + + // Enqueue CSS + add_action( 'wp_enqueue_scripts', 'jetpack_social_menu_style' ); + + // Load SVG icons related functions and filters + if ( 'svg' === jetpack_social_menu_get_type() ) { + require __DIR__ . '/social-menu/icon-functions.php'; + } + } + add_action( 'after_setup_theme', 'jetpack_social_menu_init', 99 ); + add_action( 'restapi_theme_init', 'jetpack_social_menu_init' ); +} + +if ( ! function_exists( 'jetpack_social_menu_get_type' ) ) { + /** + * Return the type of menu the theme is using. + * + * @uses get_theme_support() + * @return null|string $menu_type + */ + function jetpack_social_menu_get_type() { + $options = get_theme_support( 'jetpack-social-menu' ); + + if ( ! $options ) { + $menu_type = null; + } else { + $menu_type = 'genericons'; + if ( is_array( $options ) && isset( $options[0] ) ) { + $menu_type = ( in_array( $options[0], array( 'genericons', 'svg' ), true ) ) ? $options[0] : 'genericons'; + } + } + + return $menu_type; + } +} + +if ( ! function_exists( 'jetpack_social_menu_style' ) ) { + /** + * Function to enqueue the CSS. + */ + function jetpack_social_menu_style() { + $menu_type = jetpack_social_menu_get_type(); + + if ( ! $menu_type ) { + return; + } + + $deps = ( 'genericons' === $menu_type ) ? array( 'genericons' ) : null; + + if ( has_nav_menu( 'jetpack-social-menu' ) ) { + wp_enqueue_style( 'jetpack-social-menu', plugins_url( 'social-menu/social-menu.css', __FILE__ ), $deps, '1.0' ); + } + } +} + +if ( ! function_exists( 'jetpack_social_menu' ) ) { + /** + * Create the function for the menu. + */ + function jetpack_social_menu() { + if ( has_nav_menu( 'jetpack-social-menu' ) ) : + $menu_type = (string) jetpack_social_menu_get_type(); + $link_after = '
'; + + if ( 'svg' === $menu_type ) { + $link_after .= jetpack_social_menu_get_svg( array( 'icon' => 'chain' ) ); + } ?> + + '', + 'fallback' => false, + ); + + // Parse args. + $args = wp_parse_args( $args, $defaults ); + + // Set aria hidden. + $aria_hidden = ' aria-hidden="true"'; + + // Begin SVG markup. + $svg = ''; + + /* + * Display the icon. + * + * The whitespace around `` is intentional - it is a work around to a keyboard navigation bug in Safari 10. + * + * See https://core.trac.wordpress.org/ticket/38387. + */ + $svg .= ' '; + + // Add some markup to use as a fallback for browsers that do not support SVGs. + if ( $args['fallback'] ) { + $svg .= ''; + } + + $svg .= ''; + + return $svg; + } +} + +if ( ! function_exists( 'jetpack_social_menu_nav_menu_social_icons' ) ) { + /** + * Display SVG icons in social links menu. + * + * @param string $item_output The menu item output. + * @param WP_Post $item Menu item object. + * @param int $depth Depth of the menu. + * @param object $args wp_nav_menu() arguments. + * @return string $item_output The menu item output with social icon. + */ + function jetpack_social_menu_nav_menu_social_icons( $item_output, $item, $depth, $args ) { + // Get supported social icons. + $social_icons = jetpack_social_menu_social_links_icons(); + + // Change SVG icon inside social links menu if there is supported URL. + if ( 'jetpack-social-menu' === $args->theme_location ) { + foreach ( $social_icons as $attr => $value ) { + /* + * attr can be a URL host, or a regex, starting with #. + * Let's check for both scenarios. + */ + if ( + // First Regex. + ( + str_starts_with( $attr, '#' ) && str_ends_with( $attr, '#' ) + && preg_match( $attr, $item_output ) + ) + // Then, regular host name. + || str_contains( $item_output, $attr ) + ) { + $item_output = str_replace( + $args->link_after, + '' . jetpack_social_menu_get_svg( array( 'icon' => esc_attr( $value ) ) ), + $item_output + ); + } + } + } + + return $item_output; + } + add_filter( 'walker_nav_menu_start_el', 'jetpack_social_menu_nav_menu_social_icons', 10, 4 ); +} + +if ( ! function_exists( 'jetpack_social_menu_social_links_icons' ) ) { + /** + * Returns an array of supported social links (URL / regex and icon name). + * For regex, use the # delimiter. + * + * @return array $social_links_icons + */ + function jetpack_social_menu_social_links_icons() { + // Supported social links icons. + $social_links_icons = array( + '#https?:\/\/(www\.)?amazon\.(com|cn|in|fr|de|it|nl|es|co|ca)\/#' => 'amazon', + '500px.com' => '500px', + 'apple.com' => 'apple', + 'itunes.com' => 'apple', + 'bandcamp.com' => 'bandcamp', + 'behance.net' => 'behance', + 'blogger.com' => 'blogger', + 'blogspot.com' => 'blogger', + 'bsky.app' => 'bluesky', + 'codepen.io' => 'codepen', + 'deviantart.com' => 'deviantart', + 'discord.gg' => 'discord', + 'discordapp.com' => 'discord', + 'digg.com' => 'digg', + 'dribbble.com' => 'dribbble', + 'dropbox.com' => 'dropbox', + 'etsy.com' => 'etsy', + 'eventbrite.com' => 'eventbrite', + 'facebook.com' => 'facebook', + '/feed/' => 'feed', + 'flickr.com' => 'flickr', + 'foursquare.com' => 'foursquare', + 'ghost.org' => 'ghost', + 'goodreads.com' => 'goodreads', + 'google.com' => 'google', + 'github.com' => 'github', + 'instagram.com' => 'instagram', + 'linkedin.com' => 'linkedin', + 'mailto:' => 'mail', + 'meetup.com' => 'meetup', + 'medium.com' => 'medium', + 'nextdoor.com' => 'nextdoor', + 'patreon.com' => 'patreon', + 'pinterest.' => 'pinterest', + 'getpocket.com' => 'pocket', + 'ravelry.com' => 'ravelry', + 'reddit.com' => 'reddit', + 'skype.com' => 'skype', + 'skype:' => 'skype', + 'slideshare.net' => 'slideshare', + 'sms:' => 'sms', + 'snapchat.com' => 'snapchat', + 'soundcloud.com' => 'soundcloud', + 'spotify.com' => 'spotify', + 'stackoverflow.com' => 'stackoverflow', + 'strava.com' => 'strava', + 'stumbleupon.com' => 'stumbleupon', + 'telegram.me' => 'telegram', + 'threads.net' => 'threads', + 'tiktok.com' => 'tiktok', + 'tumblr.com' => 'tumblr', + 'twitch.tv' => 'twitch', + 'twitter.com' => 'twitter', + 'vimeo.com' => 'vimeo', + 'vk.com' => 'vk', + 'whatsapp.com' => 'whatsapp', + 'woocommerce.com' => 'woocommerce', + 'wordpress.org' => 'wordpress', + 'wordpress.com' => 'wordpress', + 'yelp.com' => 'yelp', + 'x.com' => 'x', + 'xanga.com' => 'xanga', + 'youtube.com' => 'youtube', + ); + + /* + * Add Mastodon instances to this array. + */ + $mastodon_instance_list = jetpack_mastodon_get_instance_list(); + foreach ( $mastodon_instance_list as $instance ) { + $social_links_icons[ $instance ] = 'mastodon'; + } + + return $social_links_icons; + } +} diff --git a/projects/packages/classic-theme-helper/src/social-menu/social-menu.css b/projects/packages/classic-theme-helper/src/social-menu/social-menu.css new file mode 100644 index 0000000000000..aad2f077364d3 --- /dev/null +++ b/projects/packages/classic-theme-helper/src/social-menu/social-menu.css @@ -0,0 +1,222 @@ +/*-------------------------------------------------------------- +Global +--------------------------------------------------------------*/ +.jetpack-social-navigation ul { + display: block; + margin: 0 0 1.5em; + padding: 0; +} + +.jetpack-social-navigation li { + display: inline-block; + margin: 0; + line-height: 1; +} + +.jetpack-social-navigation a { + border: 0; + height: 1em; + text-decoration: none; + width: 1em; +} + +/*-------------------------------------------------------------- +SVG +--------------------------------------------------------------*/ +.jetpack-social-navigation-svg .icon { + color: inherit; + fill: currentColor; + height: 1em; + vertical-align: middle; + width: 1em; +} + +/*-------------------------------------------------------------- +Genericons +--------------------------------------------------------------*/ +.jetpack-social-navigation-genericons a:before { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + display: inline-block; + font-family: Genericons; + font-size: 1em; + font-style: normal; + font-weight: normal; + height: 1em; + line-height: 1; + speak: none; + text-decoration: inherit; + vertical-align: top; + width: 1em; +} + +/* Default */ +.jetpack-social-navigation-genericons a:before { + content: "\f415"; +} + +/* Bluesky */ +.jetpack-social-navigation-genericons a[href*="bsky.app"]:before { + content: "\f10f"; +} + +/* CodePen */ +.jetpack-social-navigation-genericons a[href*="codepen.io"]:before { + content: "\f216"; +} + +/* Digg */ +.jetpack-social-navigation-genericons a[href*="digg.com"]:before { + content: "\f221"; +} + +/* Dribbble */ +.jetpack-social-navigation-genericons a[href*="dribbble.com"]:before { + content: "\f201"; +} + +/* Dropbox */ +.jetpack-social-navigation-genericons a[href*="dropbox.com"]:before { + content: "\f225"; +} + +/* Email */ +.jetpack-social-navigation-genericons a[href*="mailto:"]:before { + content: "\f410"; +} + +/* Facebook */ +.jetpack-social-navigation-genericons a[href*="facebook.com"]:before { + content: "\f203"; +} + +/* Flickr */ +.jetpack-social-navigation-genericons a[href*="flickr.com"]:before { + content: "\f211"; +} + +/* Foursquare */ +.jetpack-social-navigation-genericons a[href*="foursquare.com"]:before { + content: "\f226"; +} + +/* GitHub */ +.jetpack-social-navigation-genericons a[href*="github.com"]:before { + content: "\f200"; +} + +/* Google Plus */ +.jetpack-social-navigation-genericons a[href*="plus.google.com"]:before { + content: "\f206"; +} + +/* Instagram */ +.jetpack-social-navigation-genericons a[href*="instagram.com"]:before { + content: "\f215"; +} + +/* LinkedIn */ +.jetpack-social-navigation-genericons a[href*="linkedin.com"]:before { + content: "\f208"; +} + +/* Nextdoor */ +.jetpack-social-navigation-genericons a[href*="nextdoor.com"]:before { + content: "\f10c"; +} + +/* Path */ +.jetpack-social-navigation-genericons a[href*="path.com"]:before { + content: "\f219"; +} + +/* Pinterest */ +.jetpack-social-navigation-genericons a[href*="pinterest."]:before { + content: "\f210"; +} + +/* Pocket */ +.jetpack-social-navigation-genericons a[href*="getpocket.com"]:before { + content: "\f224"; +} + +/* Polldaddy */ +.jetpack-social-navigation-genericons a[href*="polldaddy.com"]:before { + content: "\f217"; +} + +/* Reddit */ +.jetpack-social-navigation-genericons a[href*="reddit.com"]:before { + content: "\f222"; +} + +/* RSS Feed */ +.jetpack-social-navigation-genericons a[href$="/feed/"]:before { + content: "\f413"; +} + +/* Skype */ +.jetpack-social-navigation-genericons a[href*="skype:"]:before { + content: "\f220"; +} + +/* Skype */ +.jetpack-social-navigation-genericons a[href*="sms:"]:before { + content: "\f110"; +} + +/* Spotify */ +.jetpack-social-navigation-genericons a[href*="spotify.com"]:before { + content: "\f515"; +} + +/* StumbleUpon */ +.jetpack-social-navigation-genericons a[href*="stumbleupon.com"]:before { + content: "\f223"; +} + +/* Threads */ +.jetpack-social-navigation-genericons a[href*="threads.net"]:before { + content: "\f10d"; +} + +/* Tumblr */ +.jetpack-social-navigation-genericons a[href*="tumblr.com"]:before { + content: "\f214"; +} + +/* Twitch */ +.jetpack-social-navigation-genericons a[href*="twitch.tv"]:before { + content: "\f516"; +} + +/* Twitter */ +.jetpack-social-navigation-genericons a[href*="twitter.com"]:before { + content: "\f202"; +} + +/* Vimeo */ +.jetpack-social-navigation-genericons a[href*="vimeo.com"]:before { + content: "\f212"; +} + +/* Vine */ +.jetpack-social-navigation-genericons a[href*="vine.co"]:before { + content: "\f517"; +} + +/* WordPress */ +.jetpack-social-navigation-genericons a[href*="wordpress.com"]:before, +.jetpack-social-navigation-genericons a[href*="wordpress.org"]:before { + content: "\f205"; +} + +/* X */ +.jetpack-social-navigation-genericons a[href*="x.com"]:before { + content: "\f10e"; +} + +/* YouTube */ +.jetpack-social-navigation-genericons a[href*="youtube.com"]:before { + content: "\f213"; +} diff --git a/projects/packages/classic-theme-helper/src/social-menu/social-menu.svg b/projects/packages/classic-theme-helper/src/social-menu/social-menu.svg new file mode 100644 index 0000000000000..6d68732322fd8 --- /dev/null +++ b/projects/packages/classic-theme-helper/src/social-menu/social-menu.svg @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/projects/plugins/jetpack/.phan/baseline.php b/projects/plugins/jetpack/.phan/baseline.php index 74a6598a9d95a..35e86c79b8916 100644 --- a/projects/plugins/jetpack/.phan/baseline.php +++ b/projects/plugins/jetpack/.phan/baseline.php @@ -28,6 +28,7 @@ // PhanUndeclaredProperty : 35+ occurrences // PhanParamSignatureMismatch : 25+ occurrences // PhanPluginSimplifyExpressionBool : 25+ occurrences + // PhanRedefineFunction : 25+ occurrences // PhanTypeInvalidDimOffset : 25+ occurrences // PhanTypeMismatchDefault : 25+ occurrences // PhanTypeMismatchPropertyProbablyReal : 25+ occurrences @@ -38,7 +39,6 @@ // PhanTypeMismatchDimFetch : 20+ occurrences // PhanPluginDuplicateExpressionAssignmentOperation : 15+ occurrences // PhanPluginMixedKeyNoKey : 15+ occurrences - // PhanRedefineFunction : 15+ occurrences // PhanSuspiciousMagicConstant : 15+ occurrences // PhanTypeExpectedObjectPropAccessButGotNull : 15+ occurrences // PhanTypeMismatchArgumentNullableInternal : 15+ occurrences @@ -444,8 +444,8 @@ 'modules/theme-tools/site-logo/inc/class-site-logo.php' => ['PhanRedundantCondition', 'PhanTypeComparisonToArray', 'PhanTypeMismatchReturn'], 'modules/theme-tools/site-logo/inc/functions.php' => ['PhanTypeMismatchReturnProbablyReal'], 'modules/theme-tools/social-links.php' => ['PhanNoopNew', 'PhanTypeMismatchArgumentInternal'], - 'modules/theme-tools/social-menu.php' => ['PhanTypeMismatchArgumentNullable'], - 'modules/theme-tools/social-menu/icon-functions.php' => ['PhanPluginSimplifyExpressionBool', 'PhanTypeExpectedObjectPropAccess'], + 'modules/theme-tools/social-menu.php' => ['PhanRedefineFunction', 'PhanTypeMismatchArgumentNullable'], + 'modules/theme-tools/social-menu/icon-functions.php' => ['PhanPluginSimplifyExpressionBool', 'PhanRedefineFunction', 'PhanTypeExpectedObjectPropAccess'], 'modules/tiled-gallery/math/class-constrained-array-rounding.php' => ['PhanTypeMismatchDefault'], 'modules/tiled-gallery/tiled-gallery.php' => ['PhanPluginDuplicateConditionalNullCoalescing', 'PhanTypeMismatchArgumentProbablyReal'], 'modules/tiled-gallery/tiled-gallery/templates/carousel-container.php' => ['PhanTypeMismatchArgument'], diff --git a/projects/plugins/jetpack/changelog/add-social-menu-to-classic-theme-helper-package b/projects/plugins/jetpack/changelog/add-social-menu-to-classic-theme-helper-package new file mode 100644 index 0000000000000..83b75a9ebbd51 --- /dev/null +++ b/projects/plugins/jetpack/changelog/add-social-menu-to-classic-theme-helper-package @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +Theme tools: Add social menu to Classic Theme Helper package diff --git a/projects/plugins/jetpack/modules/theme-tools/social-menu.php b/projects/plugins/jetpack/modules/theme-tools/social-menu.php index df241b89844a7..36152af2c8f7e 100644 --- a/projects/plugins/jetpack/modules/theme-tools/social-menu.php +++ b/projects/plugins/jetpack/modules/theme-tools/social-menu.php @@ -11,109 +11,117 @@ * @package automattic/jetpack */ -/** - * Activate the Social Menu plugin. - * - * @uses current_theme_supports() - */ -function jetpack_social_menu_init() { - // Only load our code if our theme declares support - if ( ! current_theme_supports( 'jetpack-social-menu' ) ) { - return; - } - - /* - * Social Menu description. - * - * Rename the social menu description. - * - * @module theme-tools +if ( ! function_exists( 'jetpack_social_menu_init' ) ) { + /** + * Activate the Social Menu plugin. * - * @since 3.9.0 - * - * @param string $social_menu_description Social Menu description + * @uses current_theme_supports() */ - $social_menu_description = apply_filters( 'jetpack_social_menu_description', __( 'Social Menu', 'jetpack' ) ); + function jetpack_social_menu_init() { + // Only load our code if our theme declares support + if ( ! current_theme_supports( 'jetpack-social-menu' ) ) { + return; + } - // Register a new menu location - register_nav_menus( - array( - 'jetpack-social-menu' => esc_html( $social_menu_description ), - ) - ); + /* + * Social Menu description. + * + * Rename the social menu description. + * + * @module theme-tools + * + * @since 3.9.0 + * + * @param string $social_menu_description Social Menu description + */ + $social_menu_description = apply_filters( 'jetpack_social_menu_description', __( 'Social Menu', 'jetpack' ) ); - // Enqueue CSS - add_action( 'wp_enqueue_scripts', 'jetpack_social_menu_style' ); + // Register a new menu location + register_nav_menus( + array( + 'jetpack-social-menu' => esc_html( $social_menu_description ), + ) + ); - // Load SVG icons related functions and filters - if ( 'svg' === jetpack_social_menu_get_type() ) { - require __DIR__ . '/social-menu/icon-functions.php'; + // Enqueue CSS + add_action( 'wp_enqueue_scripts', 'jetpack_social_menu_style' ); + + // Load SVG icons related functions and filters + if ( 'svg' === jetpack_social_menu_get_type() ) { + require __DIR__ . '/social-menu/icon-functions.php'; + } } + add_action( 'after_setup_theme', 'jetpack_social_menu_init', 99 ); + add_action( 'restapi_theme_init', 'jetpack_social_menu_init' ); } -add_action( 'after_setup_theme', 'jetpack_social_menu_init', 99 ); -add_action( 'restapi_theme_init', 'jetpack_social_menu_init' ); -/** - * Return the type of menu the theme is using. - * - * @uses get_theme_support() - * @return null|string $menu_type - */ -function jetpack_social_menu_get_type() { - $options = get_theme_support( 'jetpack-social-menu' ); +if ( ! function_exists( 'jetpack_social_menu_get_type' ) ) { + /** + * Return the type of menu the theme is using. + * + * @uses get_theme_support() + * @return null|string $menu_type + */ + function jetpack_social_menu_get_type() { + $options = get_theme_support( 'jetpack-social-menu' ); - if ( ! $options ) { - $menu_type = null; - } else { - $menu_type = 'genericons'; - if ( is_array( $options ) && isset( $options[0] ) ) { - $menu_type = ( in_array( $options[0], array( 'genericons', 'svg' ), true ) ) ? $options[0] : 'genericons'; + if ( ! $options ) { + $menu_type = null; + } else { + $menu_type = 'genericons'; + if ( is_array( $options ) && isset( $options[0] ) ) { + $menu_type = ( in_array( $options[0], array( 'genericons', 'svg' ), true ) ) ? $options[0] : 'genericons'; + } } - } - return $menu_type; + return $menu_type; + } } -/** - * Function to enqueue the CSS. - */ -function jetpack_social_menu_style() { - $menu_type = jetpack_social_menu_get_type(); +if ( ! function_exists( 'jetpack_social_menu_style' ) ) { + /** + * Function to enqueue the CSS. + */ + function jetpack_social_menu_style() { + $menu_type = jetpack_social_menu_get_type(); - if ( ! $menu_type ) { - return; - } + if ( ! $menu_type ) { + return; + } - $deps = ( 'genericons' === $menu_type ) ? array( 'genericons' ) : null; + $deps = ( 'genericons' === $menu_type ) ? array( 'genericons' ) : null; - if ( has_nav_menu( 'jetpack-social-menu' ) ) { - wp_enqueue_style( 'jetpack-social-menu', plugins_url( 'social-menu/social-menu.css', __FILE__ ), $deps, '1.0' ); + if ( has_nav_menu( 'jetpack-social-menu' ) ) { + wp_enqueue_style( 'jetpack-social-menu', plugins_url( 'social-menu/social-menu.css', __FILE__ ), $deps, '1.0' ); + } } } -/** - * Create the function for the menu. - */ -function jetpack_social_menu() { - if ( has_nav_menu( 'jetpack-social-menu' ) ) : - $menu_type = jetpack_social_menu_get_type(); - $link_after = ''; +if ( ! function_exists( 'jetpack_social_menu' ) ) { + /** + * Create the function for the menu. + */ + function jetpack_social_menu() { + if ( has_nav_menu( 'jetpack-social-menu' ) ) : + $menu_type = jetpack_social_menu_get_type(); + $link_after = ''; - if ( 'svg' === $menu_type ) { - $link_after .= jetpack_social_menu_get_svg( array( 'icon' => 'chain' ) ); - } ?> - - Date: Wed, 10 Jul 2024 11:18:38 +0300 Subject: [PATCH 077/254] Backport boost 3.4.7 Changes (#38273) --- projects/js-packages/image-guide/CHANGELOG.md | 5 +++++ .../renovate-rollup-plugin-commonjs-26.x | 4 ---- .../update-replace-eslint-plugin-svelte3 | 5 ----- .../changelog/update-rollup-plugin-svelte-svg | 5 ----- projects/js-packages/image-guide/package.json | 2 +- projects/packages/autoloader/CHANGELOG.md | 5 +++++ .../fix-autoloader-atomic-deprecated-notice | 4 ---- .../packages/autoloader/src/AutoloadGenerator.php | 2 +- projects/packages/my-jetpack/CHANGELOG.md | 5 +++++ .../changelog/fix-social-my-jetpack-plan-slug | 4 ---- projects/packages/my-jetpack/package.json | 2 +- .../packages/my-jetpack/src/class-initializer.php | 2 +- projects/packages/sync/CHANGELOG.md | 5 +++++ .../changelog/fix-sync-hpos-get_objects_by_id | 4 ---- .../packages/sync/src/class-package-version.php | 2 +- projects/plugins/boost/CHANGELOG.md | 6 +++++- .../boost/changelog/add-ga-deprecation-notice | 5 ----- .../plugins/boost/changelog/add-tracks-events | 5 ----- .../boost/changelog/boost-fix-logging-too-much | 5 ----- projects/plugins/boost/changelog/fix-boost-proxy | 4 ---- .../plugins/boost/changelog/init-new-plugin-cycle | 5 ----- .../plugins/boost/changelog/port-wpcomsh-1904 | 5 ----- .../changelog/renovate-lock-file-maintenance | 4 ---- .../boost/changelog/renovate-playwright-monorepo | 4 ---- .../boost/changelog/renovate-wordpress-monorepo | 4 ---- ...i-add-title-optimization-video-to-product-page | 5 ----- .../changelog/update-sync-must-sync-data-settings | 5 ----- projects/plugins/boost/composer.json | 4 ++-- projects/plugins/boost/composer.lock | 2 +- projects/plugins/boost/jetpack-boost.php | 4 ++-- projects/plugins/boost/package.json | 2 +- projects/plugins/boost/readme.txt | 15 +++------------ 32 files changed, 39 insertions(+), 101 deletions(-) delete mode 100644 projects/js-packages/image-guide/changelog/renovate-rollup-plugin-commonjs-26.x delete mode 100644 projects/js-packages/image-guide/changelog/update-replace-eslint-plugin-svelte3 delete mode 100644 projects/js-packages/image-guide/changelog/update-rollup-plugin-svelte-svg delete mode 100644 projects/packages/autoloader/changelog/fix-autoloader-atomic-deprecated-notice delete mode 100644 projects/packages/my-jetpack/changelog/fix-social-my-jetpack-plan-slug delete mode 100644 projects/packages/sync/changelog/fix-sync-hpos-get_objects_by_id delete mode 100644 projects/plugins/boost/changelog/add-ga-deprecation-notice delete mode 100644 projects/plugins/boost/changelog/add-tracks-events delete mode 100644 projects/plugins/boost/changelog/boost-fix-logging-too-much delete mode 100644 projects/plugins/boost/changelog/fix-boost-proxy delete mode 100644 projects/plugins/boost/changelog/init-new-plugin-cycle delete mode 100644 projects/plugins/boost/changelog/port-wpcomsh-1904 delete mode 100644 projects/plugins/boost/changelog/renovate-lock-file-maintenance delete mode 100644 projects/plugins/boost/changelog/renovate-playwright-monorepo delete mode 100644 projects/plugins/boost/changelog/renovate-wordpress-monorepo delete mode 100644 projects/plugins/boost/changelog/update-jetpack-ai-add-title-optimization-video-to-product-page delete mode 100644 projects/plugins/boost/changelog/update-sync-must-sync-data-settings diff --git a/projects/js-packages/image-guide/CHANGELOG.md b/projects/js-packages/image-guide/CHANGELOG.md index 0390f2488db70..e773c91e2dbfb 100644 --- a/projects/js-packages/image-guide/CHANGELOG.md +++ b/projects/js-packages/image-guide/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.5.10] - 2024-07-10 +### Changed +- Updated package dependencies. [#38092] + ## [0.5.9] - 2024-06-21 ### Changed - Updated package dependencies. [#37796] @@ -109,6 +113,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - Minor package.json change - removing private entry. +[0.5.10]: https://github.com/Automattic/jetpack-image-guide/compare/v0.5.9...v0.5.10 [0.5.9]: https://github.com/Automattic/jetpack-image-guide/compare/v0.5.8...v0.5.9 [0.5.8]: https://github.com/Automattic/jetpack-image-guide/compare/v0.5.7...v0.5.8 [0.5.7]: https://github.com/Automattic/jetpack-image-guide/compare/v0.5.6...v0.5.7 diff --git a/projects/js-packages/image-guide/changelog/renovate-rollup-plugin-commonjs-26.x b/projects/js-packages/image-guide/changelog/renovate-rollup-plugin-commonjs-26.x deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/js-packages/image-guide/changelog/renovate-rollup-plugin-commonjs-26.x +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/js-packages/image-guide/changelog/update-replace-eslint-plugin-svelte3 b/projects/js-packages/image-guide/changelog/update-replace-eslint-plugin-svelte3 deleted file mode 100644 index b43161369d4f3..0000000000000 --- a/projects/js-packages/image-guide/changelog/update-replace-eslint-plugin-svelte3 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: removed -Comment: Remove svelte variables unused since #31145. No change to functionality. - - diff --git a/projects/js-packages/image-guide/changelog/update-rollup-plugin-svelte-svg b/projects/js-packages/image-guide/changelog/update-rollup-plugin-svelte-svg deleted file mode 100644 index 5029859c729b3..0000000000000 --- a/projects/js-packages/image-guide/changelog/update-rollup-plugin-svelte-svg +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Update rollup-plugin-svelte-svg dependency. No change to functionality. - - diff --git a/projects/js-packages/image-guide/package.json b/projects/js-packages/image-guide/package.json index 9e4aaba5d6e35..42ba6396d6624 100644 --- a/projects/js-packages/image-guide/package.json +++ b/projects/js-packages/image-guide/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/jetpack-image-guide", - "version": "0.5.10-alpha", + "version": "0.5.10", "description": "Go through the dom to analyze image size on screen vs actual file size.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/image-guide/#readme", "type": "module", diff --git a/projects/packages/autoloader/CHANGELOG.md b/projects/packages/autoloader/CHANGELOG.md index 3d579e6761679..b253cfe24e48a 100644 --- a/projects/packages/autoloader/CHANGELOG.md +++ b/projects/packages/autoloader/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.0.9] - 2024-07-10 +### Fixed +- Avoid a deprecation notice in `Autoloader_Locator::find_latest_autoloader()`. [#38245] + ## [3.0.8] - 2024-05-29 ### Fixed - `AutoloadGenerator::__construct` no longer pretends `$io` is nullable. That never worked. [#37608] @@ -364,6 +368,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add Custom Autoloader +[3.0.9]: https://github.com/Automattic/jetpack-autoloader/compare/v3.0.8...v3.0.9 [3.0.8]: https://github.com/Automattic/jetpack-autoloader/compare/v3.0.7...v3.0.8 [3.0.7]: https://github.com/Automattic/jetpack-autoloader/compare/v3.0.6...v3.0.7 [3.0.6]: https://github.com/Automattic/jetpack-autoloader/compare/v3.0.5...v3.0.6 diff --git a/projects/packages/autoloader/changelog/fix-autoloader-atomic-deprecated-notice b/projects/packages/autoloader/changelog/fix-autoloader-atomic-deprecated-notice deleted file mode 100644 index a0d72b89720d2..0000000000000 --- a/projects/packages/autoloader/changelog/fix-autoloader-atomic-deprecated-notice +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Avoid a deprecation notice in `Autoloader_Locator::find_latest_autoloader()`. diff --git a/projects/packages/autoloader/src/AutoloadGenerator.php b/projects/packages/autoloader/src/AutoloadGenerator.php index b767b723147d7..2e9a311cb3163 100644 --- a/projects/packages/autoloader/src/AutoloadGenerator.php +++ b/projects/packages/autoloader/src/AutoloadGenerator.php @@ -21,7 +21,7 @@ */ class AutoloadGenerator { - const VERSION = '3.0.9-alpha'; + const VERSION = '3.0.9'; /** * IO object. diff --git a/projects/packages/my-jetpack/CHANGELOG.md b/projects/packages/my-jetpack/CHANGELOG.md index 485e836a04eb3..25ab7ecfaff42 100644 --- a/projects/packages/my-jetpack/CHANGELOG.md +++ b/projects/packages/my-jetpack/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.27.2] - 2024-07-10 +### Fixed +- Social: Fixed plan slug [#38222] + ## [4.27.1] - 2024-07-03 ### Changed - Updated package dependencies. [#38132] @@ -1556,6 +1560,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Created package +[4.27.2]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.27.1...4.27.2 [4.27.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.27.0...4.27.1 [4.27.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.26.0...4.27.0 [4.26.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.25.4...4.26.0 diff --git a/projects/packages/my-jetpack/changelog/fix-social-my-jetpack-plan-slug b/projects/packages/my-jetpack/changelog/fix-social-my-jetpack-plan-slug deleted file mode 100644 index 0174944c43e23..0000000000000 --- a/projects/packages/my-jetpack/changelog/fix-social-my-jetpack-plan-slug +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Social: Fixed plan slug diff --git a/projects/packages/my-jetpack/package.json b/projects/packages/my-jetpack/package.json index 9fb3e07dbf03b..454ad9985055f 100644 --- a/projects/packages/my-jetpack/package.json +++ b/projects/packages/my-jetpack/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-my-jetpack", - "version": "4.27.2-alpha", + "version": "4.27.2", "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/my-jetpack/#readme", "bugs": { diff --git a/projects/packages/my-jetpack/src/class-initializer.php b/projects/packages/my-jetpack/src/class-initializer.php index c912be9b37ad4..f1266ff9a8921 100644 --- a/projects/packages/my-jetpack/src/class-initializer.php +++ b/projects/packages/my-jetpack/src/class-initializer.php @@ -37,7 +37,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '4.27.2-alpha'; + const PACKAGE_VERSION = '4.27.2'; /** * HTML container ID for the IDC screen on My Jetpack page. diff --git a/projects/packages/sync/CHANGELOG.md b/projects/packages/sync/CHANGELOG.md index 09057d93a8803..2e160d9f085b8 100644 --- a/projects/packages/sync/CHANGELOG.md +++ b/projects/packages/sync/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.2.1] - 2024-07-10 +### Fixed +- Jetpack Sync HPOS: Ensure get_objects_by_id will return all relevant orders [#38251] + ## [3.2.0] - 2024-07-08 ### Changed - Jetpack Sync: Ensure we always sync heartbeat data and active plugins no matter the consumer config [#38135] @@ -1200,6 +1204,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Packages: Move sync to a classmapped package +[3.2.1]: https://github.com/Automattic/jetpack-sync/compare/v3.2.0...v3.2.1 [3.2.0]: https://github.com/Automattic/jetpack-sync/compare/v3.1.4...v3.2.0 [3.1.4]: https://github.com/Automattic/jetpack-sync/compare/v3.1.3...v3.1.4 [3.1.3]: https://github.com/Automattic/jetpack-sync/compare/v3.1.2...v3.1.3 diff --git a/projects/packages/sync/changelog/fix-sync-hpos-get_objects_by_id b/projects/packages/sync/changelog/fix-sync-hpos-get_objects_by_id deleted file mode 100644 index 7e74a60f5ac0b..0000000000000 --- a/projects/packages/sync/changelog/fix-sync-hpos-get_objects_by_id +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Jetpack Sync HPOS: Ensure get_objects_by_id will return all relevant orders diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index 11b69a9326782..d5f75ae75cee6 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.2.1-alpha'; + const PACKAGE_VERSION = '3.2.1'; const PACKAGE_SLUG = 'sync'; diff --git a/projects/plugins/boost/CHANGELOG.md b/projects/plugins/boost/CHANGELOG.md index a0f9303a9e927..63a9857d73a88 100644 --- a/projects/plugins/boost/CHANGELOG.md +++ b/projects/plugins/boost/CHANGELOG.md @@ -5,11 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.4.7] - 2024-07-10 +### Security +- General: Improved image and CSS proxy functionalities with CDN support, caching, and other enhancements. [#38252] + ## [3.4.6] - 2024-06-26 ### Added - General: Automatically enables Page Cache when migrating from WP Super Cache. [#37963] - ### Fixed - Image CDN: Improvements to more closely match WP core behavior. [#37931] [#37946] - General: indicate compatibility with the upcoming version of WordPress - 6.6. [#37962] @@ -477,6 +480,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First public alpha release +[3.4.7]: https://github.com/Automattic/jetpack-boost-production/compare/3.4.6...3.4.7 [3.4.6]: https://github.com/Automattic/jetpack-boost-production/compare/3.4.4...3.4.6 [3.4.4]: https://github.com/Automattic/jetpack-boost-production/compare/3.4.3...3.4.4 [3.4.3]: https://github.com/Automattic/jetpack-boost-production/compare/3.4.2...3.4.3 diff --git a/projects/plugins/boost/changelog/add-ga-deprecation-notice b/projects/plugins/boost/changelog/add-ga-deprecation-notice deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/boost/changelog/add-ga-deprecation-notice +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/boost/changelog/add-tracks-events b/projects/plugins/boost/changelog/add-tracks-events deleted file mode 100644 index 187923a7a1f04..0000000000000 --- a/projects/plugins/boost/changelog/add-tracks-events +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: added -Comment: Added some tracks events - - diff --git a/projects/plugins/boost/changelog/boost-fix-logging-too-much b/projects/plugins/boost/changelog/boost-fix-logging-too-much deleted file mode 100644 index a83add307a573..0000000000000 --- a/projects/plugins/boost/changelog/boost-fix-logging-too-much +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: fixed -Comment: Boost: no need to log successful caching, done already. Only log early page exits. - - diff --git a/projects/plugins/boost/changelog/fix-boost-proxy b/projects/plugins/boost/changelog/fix-boost-proxy deleted file mode 100644 index 2b88d6792dd7a..0000000000000 --- a/projects/plugins/boost/changelog/fix-boost-proxy +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: security - -Jetpack Boost: Improved image and CSS proxy functionalities with CDN support, caching, and other enhancements. diff --git a/projects/plugins/boost/changelog/init-new-plugin-cycle b/projects/plugins/boost/changelog/init-new-plugin-cycle deleted file mode 100644 index 64747df37381e..0000000000000 --- a/projects/plugins/boost/changelog/init-new-plugin-cycle +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Init new plugin cycle. - - diff --git a/projects/plugins/boost/changelog/port-wpcomsh-1904 b/projects/plugins/boost/changelog/port-wpcomsh-1904 deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/boost/changelog/port-wpcomsh-1904 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/boost/changelog/renovate-lock-file-maintenance b/projects/plugins/boost/changelog/renovate-lock-file-maintenance deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/plugins/boost/changelog/renovate-lock-file-maintenance +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/plugins/boost/changelog/renovate-playwright-monorepo b/projects/plugins/boost/changelog/renovate-playwright-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/plugins/boost/changelog/renovate-playwright-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/plugins/boost/changelog/renovate-wordpress-monorepo b/projects/plugins/boost/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/plugins/boost/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/plugins/boost/changelog/update-jetpack-ai-add-title-optimization-video-to-product-page b/projects/plugins/boost/changelog/update-jetpack-ai-add-title-optimization-video-to-product-page deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/boost/changelog/update-jetpack-ai-add-title-optimization-video-to-product-page +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/boost/changelog/update-sync-must-sync-data-settings b/projects/plugins/boost/changelog/update-sync-must-sync-data-settings deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/boost/changelog/update-sync-must-sync-data-settings +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/boost/composer.json b/projects/plugins/boost/composer.json index 3402213825de8..9cf8ae5375d9e 100644 --- a/projects/plugins/boost/composer.json +++ b/projects/plugins/boost/composer.json @@ -3,7 +3,7 @@ "description": "Boost your WordPress site's performance, from the creators of Jetpack", "type": "library", "license": "GPL-2.0-or-later", - "version": "3.4.7-alpha", + "version": "3.4.7", "authors": [ { "name": "Automattic, Inc.", @@ -73,7 +73,7 @@ "platform": { "ext-intl": "0.0.0" }, - "autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_4_7_alpha", + "autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_4_7", "allow-plugins": { "roots/wordpress-core-installer": true, "automattic/jetpack-autoloader": true, diff --git a/projects/plugins/boost/composer.lock b/projects/plugins/boost/composer.lock index 6810212b1e72a..3d0f59ed79f70 100644 --- a/projects/plugins/boost/composer.lock +++ b/projects/plugins/boost/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "23b6744e14480e4194c3cd73305b1537", + "content-hash": "399a08269528eb68d0c2d403b08b2b5f", "packages": [ { "name": "automattic/jetpack-a8c-mc-stats", diff --git a/projects/plugins/boost/jetpack-boost.php b/projects/plugins/boost/jetpack-boost.php index 70bd29ca73554..c33a2a30e116a 100644 --- a/projects/plugins/boost/jetpack-boost.php +++ b/projects/plugins/boost/jetpack-boost.php @@ -9,7 +9,7 @@ * Plugin Name: Jetpack Boost * Plugin URI: https://jetpack.com/boost * Description: Boost your WordPress site's performance, from the creators of Jetpack - * Version: 3.4.7-alpha + * Version: 3.4.7 * Author: Automattic - Jetpack Site Speed team * Author URI: https://jetpack.com/boost/ * License: GPL-2.0+ @@ -29,7 +29,7 @@ die; } -define( 'JETPACK_BOOST_VERSION', '3.4.7-alpha' ); +define( 'JETPACK_BOOST_VERSION', '3.4.7' ); define( 'JETPACK_BOOST_SLUG', 'jetpack-boost' ); if ( ! defined( 'JETPACK_BOOST_CLIENT_NAME' ) ) { diff --git a/projects/plugins/boost/package.json b/projects/plugins/boost/package.json index 3076b32f7825d..a052a514264ac 100644 --- a/projects/plugins/boost/package.json +++ b/projects/plugins/boost/package.json @@ -1,6 +1,6 @@ { "name": "jetpack-boost", - "version": "3.4.7-alpha", + "version": "3.4.7", "description": "Boost your WordPress site's performance, from the creators of Jetpack", "directories": { "test": "tests" diff --git a/projects/plugins/boost/readme.txt b/projects/plugins/boost/readme.txt index 1ad9e9c7b46e9..3cdd80b24b2be 100644 --- a/projects/plugins/boost/readme.txt +++ b/projects/plugins/boost/readme.txt @@ -183,18 +183,9 @@ If you run into compatibility issues, please do let us know. You can drop us a l 2. Jetpack Boost Speed Improvement == Changelog == -### 3.4.6 - 2024-06-26 -#### Added -- General: Automatically enables Page Cache when migrating from WP Super Cache. - - -#### Fixed -- Image CDN: Improvements to more closely match WP core behavior. -- General: indicate compatibility with the upcoming version of WordPress - 6.6. -- Updated package dependencies. -- Page Cache: Update WP_CACHE detection in wp-config.php -- Page Cache: Avoid caching error pages. -- General: Fix instance where deactivating Boost can break caching for other caching plugins. +### 3.4.7 - 2024-07-10 +#### Security +- General: Improved image and CSS proxy functionalities with CDN support, caching, and other enhancements. -------- From 108e974e2448f8c970052de61ac403455ecb0ef5 Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Wed, 10 Jul 2024 14:51:27 +0530 Subject: [PATCH 078/254] Social: Remove unnecessary social connection feature checks (#38216) * Social: Remove social connection feature checks * Add changelog * Remove unnecessary instagram notice * Fix up versions * Clean up --- ...te-remove-social-connection-feature-checks | 4 + .../social-previews/use-available-services.js | 56 +++++------- .../src/hooks/use-dismiss-notice/index.js | 1 - ...te-remove-social-connection-feature-checks | 4 + projects/packages/publicize/package.json | 2 +- .../publicize/src/class-publicize-base.php | 12 --- .../class-dismissed-notices.php | 1 - ...te-remove-social-connection-feature-checks | 4 + .../src/js/components/admin-page/index.jsx | 3 - .../js/components/instagram-notice/index.jsx | 85 ------------------- .../instagram-notice/styles.module.scss | 3 - 11 files changed, 33 insertions(+), 142 deletions(-) create mode 100644 projects/js-packages/publicize-components/changelog/update-remove-social-connection-feature-checks create mode 100644 projects/packages/publicize/changelog/update-remove-social-connection-feature-checks create mode 100644 projects/plugins/social/changelog/update-remove-social-connection-feature-checks delete mode 100644 projects/plugins/social/src/js/components/instagram-notice/index.jsx delete mode 100644 projects/plugins/social/src/js/components/instagram-notice/styles.module.scss diff --git a/projects/js-packages/publicize-components/changelog/update-remove-social-connection-feature-checks b/projects/js-packages/publicize-components/changelog/update-remove-social-connection-feature-checks new file mode 100644 index 0000000000000..52e5c87b3b699 --- /dev/null +++ b/projects/js-packages/publicize-components/changelog/update-remove-social-connection-feature-checks @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Social: Removed unnecessary feature checks for social connections diff --git a/projects/js-packages/publicize-components/src/components/social-previews/use-available-services.js b/projects/js-packages/publicize-components/src/components/social-previews/use-available-services.js index 2050da1c9d6f6..e479b1994d510 100644 --- a/projects/js-packages/publicize-components/src/components/social-previews/use-available-services.js +++ b/projects/js-packages/publicize-components/src/components/social-previews/use-available-services.js @@ -1,12 +1,7 @@ import { SocialServiceIcon } from '@automattic/jetpack-components'; import { __, _x } from '@wordpress/i18n'; import React, { useMemo } from 'react'; -import { - CONNECTION_SERVICE_INSTAGRAM_BUSINESS, - CONNECTION_SERVICE_MASTODON, - CONNECTION_SERVICE_NEXTDOOR, - CONNECTION_SERVICE_THREADS, -} from '../../social-store'; +import { CONNECTION_SERVICE_THREADS } from '../../social-store'; import { getSupportedAdditionalConnections } from '../../utils'; import FacebookPreview from './facebook'; import GoogleSearch from './google-search'; @@ -25,11 +20,6 @@ import Twitter from './twitter'; */ export function useAvailableSerivces() { const additionalConnections = getSupportedAdditionalConnections(); - const isInstagramSupported = additionalConnections.includes( - CONNECTION_SERVICE_INSTAGRAM_BUSINESS - ); - const isMastodonSupported = additionalConnections.includes( CONNECTION_SERVICE_MASTODON ); - const isNextdoorSupported = additionalConnections.includes( CONNECTION_SERVICE_NEXTDOOR ); const isThreadsSupported = additionalConnections.includes( CONNECTION_SERVICE_THREADS ); return useMemo( @@ -53,14 +43,12 @@ export function useAvailableSerivces() { name: 'facebook', preview: FacebookPreview, }, - isInstagramSupported - ? { - title: __( 'Instagram', 'jetpack' ), - icon: props => , - name: 'instagram', - preview: Instagram, - } - : null, + { + title: __( 'Instagram', 'jetpack' ), + icon: props => , + name: 'instagram', + preview: Instagram, + }, isThreadsSupported ? { title: _x( @@ -79,29 +67,25 @@ export function useAvailableSerivces() { name: 'linkedin', preview: LinkedIn, }, - isNextdoorSupported - ? { - title: __( 'Nextdoor', 'jetpack' ), - icon: props => , - name: 'nextdoor', - preview: Nextdoor, - } - : null, + { + title: __( 'Nextdoor', 'jetpack' ), + icon: props => , + name: 'nextdoor', + preview: Nextdoor, + }, { title: __( 'Tumblr', 'jetpack' ), icon: props => , name: 'tumblr', preview: TumblrPreview, }, - isMastodonSupported - ? { - title: __( 'Mastodon', 'jetpack' ), - icon: props => , - name: 'mastodon', - preview: MastodonPreview, - } - : null, + { + title: __( 'Mastodon', 'jetpack' ), + icon: props => , + name: 'mastodon', + preview: MastodonPreview, + }, ].filter( Boolean ), - [ isInstagramSupported, isMastodonSupported, isNextdoorSupported, isThreadsSupported ] + [ isThreadsSupported ] ); } diff --git a/projects/js-packages/publicize-components/src/hooks/use-dismiss-notice/index.js b/projects/js-packages/publicize-components/src/hooks/use-dismiss-notice/index.js index 56bedf670762b..b95ef88e06085 100644 --- a/projects/js-packages/publicize-components/src/hooks/use-dismiss-notice/index.js +++ b/projects/js-packages/publicize-components/src/hooks/use-dismiss-notice/index.js @@ -11,7 +11,6 @@ import { useCallback, useMemo, useState } from '@wordpress/element'; */ const NOTICES = { - instagram: 'instagram', advancedUpgradeEditor: 'advanced-upgrade-nudge-editor', advancedUpgradeAdmin: 'advanced-upgrade-nudge-admin', autoConversion: 'auto-conversion-editor-notice', diff --git a/projects/packages/publicize/changelog/update-remove-social-connection-feature-checks b/projects/packages/publicize/changelog/update-remove-social-connection-feature-checks new file mode 100644 index 0000000000000..52e5c87b3b699 --- /dev/null +++ b/projects/packages/publicize/changelog/update-remove-social-connection-feature-checks @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Social: Removed unnecessary feature checks for social connections diff --git a/projects/packages/publicize/package.json b/projects/packages/publicize/package.json index 5ca036dc8f251..1330f40ed2ff9 100644 --- a/projects/packages/publicize/package.json +++ b/projects/packages/publicize/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize", - "version": "0.47.2", + "version": "0.47.3-alpha", "description": "Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/publicize/#readme", "bugs": { diff --git a/projects/packages/publicize/src/class-publicize-base.php b/projects/packages/publicize/src/class-publicize-base.php index ca788a9ac7f3f..0266e31c655ba 100644 --- a/projects/packages/publicize/src/class-publicize-base.php +++ b/projects/packages/publicize/src/class-publicize-base.php @@ -2040,18 +2040,6 @@ public function has_connections_management_feature() { public function get_supported_additional_connections() { $additional_connections = array(); - if ( $this->has_connection_feature( 'instagram' ) ) { - $additional_connections[] = 'instagram-business'; - } - - if ( $this->has_connection_feature( 'mastodon' ) ) { - $additional_connections[] = 'mastodon'; - } - - if ( $this->has_connection_feature( 'nextdoor' ) ) { - $additional_connections[] = 'nextdoor'; - } - if ( $this->has_connection_feature( 'threads' ) ) { $additional_connections[] = 'threads'; } diff --git a/projects/packages/publicize/src/jetpack-social-settings/class-dismissed-notices.php b/projects/packages/publicize/src/jetpack-social-settings/class-dismissed-notices.php index 13d06eece9900..bc68614adf146 100644 --- a/projects/packages/publicize/src/jetpack-social-settings/class-dismissed-notices.php +++ b/projects/packages/publicize/src/jetpack-social-settings/class-dismissed-notices.php @@ -29,7 +29,6 @@ public function register() { 'type' => 'object', 'properties' => array( 'auto-conversion-editor-notice' => array( 'type' => 'number' ), - 'instagram' => array( 'type' => 'number' ), 'advanced-upgrade-nudge-admin' => array( 'type' => 'number' ), 'advanced-upgrade-nudge-editor' => array( 'type' => 'number' ), ), diff --git a/projects/plugins/social/changelog/update-remove-social-connection-feature-checks b/projects/plugins/social/changelog/update-remove-social-connection-feature-checks new file mode 100644 index 0000000000000..52e5c87b3b699 --- /dev/null +++ b/projects/plugins/social/changelog/update-remove-social-connection-feature-checks @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Social: Removed unnecessary feature checks for social connections diff --git a/projects/plugins/social/src/js/components/admin-page/index.jsx b/projects/plugins/social/src/js/components/admin-page/index.jsx index 4e450e8a09a4b..abdd43492e694 100644 --- a/projects/plugins/social/src/js/components/admin-page/index.jsx +++ b/projects/plugins/social/src/js/components/admin-page/index.jsx @@ -21,7 +21,6 @@ import SupportSection from '../support-section'; import ConnectionScreen from './../connection-screen'; import Header from './../header'; import InfoSection from './../info-section'; -import InstagramNotice from './../instagram-notice'; import AdminPageHeader from './header'; import './styles.module.scss'; @@ -32,7 +31,6 @@ const Admin = () => { const refreshJetpackSocialSettings = useDispatch( socialStore ).refreshJetpackSocialSettings; - const onUpgradeToggle = useCallback( () => setForceDisplayPricingPage( true ), [] ); const onPricingPageDismiss = useCallback( () => setForceDisplayPricingPage( false ), [] ); const { @@ -108,7 +106,6 @@ const Admin = () => { { shouldShowAdvancedPlanNudge && } - { isModuleEnabled && } { isModuleEnabled && isAutoConversionAvailable && ( diff --git a/projects/plugins/social/src/js/components/instagram-notice/index.jsx b/projects/plugins/social/src/js/components/instagram-notice/index.jsx deleted file mode 100644 index b5c59f93f2490..0000000000000 --- a/projects/plugins/social/src/js/components/instagram-notice/index.jsx +++ /dev/null @@ -1,85 +0,0 @@ -import { - Button as JetpackButton, - Container, - Notice, - getRedirectUrl, -} from '@automattic/jetpack-components'; -import { - useDismissNotice, - SOCIAL_STORE_ID, - getSupportedAdditionalConnections, - CONNECTION_SERVICE_INSTAGRAM_BUSINESS, -} from '@automattic/jetpack-publicize-components'; -import { useSelect } from '@wordpress/data'; -import { useCallback } from '@wordpress/element'; -import { __ } from '@wordpress/i18n'; -import styles from './styles.module.scss'; - -const freePlanNoticeText = __( - 'Share featured images directly to your Instagram Business account for free, or share unlimited photos with Jetpack Social Advanced.', - 'jetpack-social' -); -const paidPlanNoticeText = __( - 'Enjoy automatically sharing unlimited photos to Instagram Business with your Jetpack Social Advanced plan!', - 'jetpack-social' -); - -const InstagramNotice = ( { onUpgrade = () => {} } = {} ) => { - const { shouldShowNotice, dismissNotice, NOTICES } = useDismissNotice(); - - const { connectionsAdminUrl, isEnhancedPublishingEnabled } = useSelect( select => { - const store = select( SOCIAL_STORE_ID ); - return { - connectionsAdminUrl: store.getConnectionsAdminUrl(), - isEnhancedPublishingEnabled: store.isEnhancedPublishingEnabled(), - }; - } ); - - const handleDismiss = useCallback( () => { - dismissNotice( NOTICES.instagram ); - }, [ dismissNotice, NOTICES ] ); - - if ( - ! shouldShowNotice( NOTICES.instagram ) || - ! getSupportedAdditionalConnections().includes( CONNECTION_SERVICE_INSTAGRAM_BUSINESS ) - ) { - return null; - } - - const Button = () => - isEnhancedPublishingEnabled ? ( - - { __( 'Connect Instagram', 'jetpack-social' ) } - - ) : ( - - { __( 'Upgrade now', 'jetpack-social' ) } - - ); - - return ( - -
- , - - { __( 'Learn more', 'jetpack-social' ) } - , - ] } - onClose={ handleDismiss } - title={ __( 'Instagram is now available in Jetpack Social', 'jetpack-social' ) } - > - { isEnhancedPublishingEnabled ? paidPlanNoticeText : freePlanNoticeText } - -
-
- ); -}; - -export default InstagramNotice; diff --git a/projects/plugins/social/src/js/components/instagram-notice/styles.module.scss b/projects/plugins/social/src/js/components/instagram-notice/styles.module.scss deleted file mode 100644 index c79d4f4a1bd38..0000000000000 --- a/projects/plugins/social/src/js/components/instagram-notice/styles.module.scss +++ /dev/null @@ -1,3 +0,0 @@ -.wrapper { - grid-column: 1 / -1; -} From 0edc338cc0ab0b9624a74d7f2adfa30ad56b199f Mon Sep 17 00:00:00 2001 From: Foteini Giannaropoulou Date: Wed, 10 Jul 2024 13:15:31 +0300 Subject: [PATCH 079/254] Jetpack Sync: Ensure HPOS order status is prefixed with 'wc-' before sending it to WPCOM (#38258) * Jetpack Sync: Ensure HPOS order status is prefixed with 'wc-' before sending it to WPCOM --- ...pdate-sync-hpos-add-wc-order-status-prefix | 4 +++ .../sync/src/class-package-version.php | 2 +- .../modules/class-woocommerce-hpos-orders.php | 36 ++++++++++++++++--- 3 files changed, 36 insertions(+), 6 deletions(-) create mode 100644 projects/packages/sync/changelog/update-sync-hpos-add-wc-order-status-prefix diff --git a/projects/packages/sync/changelog/update-sync-hpos-add-wc-order-status-prefix b/projects/packages/sync/changelog/update-sync-hpos-add-wc-order-status-prefix new file mode 100644 index 0000000000000..887b1c1c11ce1 --- /dev/null +++ b/projects/packages/sync/changelog/update-sync-hpos-add-wc-order-status-prefix @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Jetpack Sync: Ensure HPOS order status is prefixed with 'wc-' before sending it to WPCOM diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index d5f75ae75cee6..fedcbfb8b79e8 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.2.1'; + const PACKAGE_VERSION = '3.2.2-alpha'; const PACKAGE_SLUG = 'sync'; diff --git a/projects/packages/sync/src/modules/class-woocommerce-hpos-orders.php b/projects/packages/sync/src/modules/class-woocommerce-hpos-orders.php index caad159f17a2c..610e216ec9cf0 100644 --- a/projects/packages/sync/src/modules/class-woocommerce-hpos-orders.php +++ b/projects/packages/sync/src/modules/class-woocommerce-hpos-orders.php @@ -303,22 +303,48 @@ private function filter_order_data( $order_object ) { if ( '' === $filtered_order_data['status'] ) { $filtered_order_data['status'] = 'pending'; } + $filtered_order_data['status'] = $this->get_wc_order_status_with_prefix( $filtered_order_data['status'] ); return $filtered_order_data; } /** - * Returns all possible order status keys using 'wc_get_order_statuses', if possible.. + * Returns all possible order status keys, including 'auto-draft' and 'trash'. * * @access protected * - * @return array Filtered order metadata. + * @return array An array of all possible status keys, including 'auto-draft' and 'trash'. */ protected function get_all_possible_order_status_keys() { - $order_statuses = array( 'checkout-draft', 'auto-draft', 'trash' ); + $order_statuses = array( 'auto-draft', 'trash' ); + $wc_order_statuses = $this->wc_get_order_status_keys(); + + return array_unique( array_merge( $wc_order_statuses, $order_statuses ) ); + } + + /** + * Add the 'wc-' order status to WC related order statuses. + * + * @param string $status The WC order status without the 'wc-' prefix. + * + * @return string The WC order status with the 'wc-' prefix if it's a valid order status, initial $status otherwise. + */ + protected function get_wc_order_status_with_prefix( string $status ) { + return in_array( 'wc-' . $status, $this->wc_get_order_status_keys(), true ) ? 'wc-' . $status : $status; + } + + /** + * Returns order status keys using 'wc_get_order_statuses', if possible. + * + * @see wc_get_order_statuses + * + * @return array Filtered order metadata. + */ + private function wc_get_order_status_keys() { $wc_order_statuses = array(); if ( function_exists( 'wc_get_order_statuses' ) ) { - $wc_order_statuses = array_keys( wc_get_order_statuses() ); + $wc_order_statuses = array_keys( wc_get_order_statuses() ); + $wc_order_statuses[] = 'wc-checkout-draft'; // Temp till Woo fixes a bug where this order status is missing. } else { $wc_order_statuses = array( 'wc-pending', @@ -332,7 +358,7 @@ protected function get_all_possible_order_status_keys() { ); } - return array_unique( array_merge( $wc_order_statuses, $order_statuses ) ); + return array_unique( $wc_order_statuses ); } /** From bf25dce27b8a2e0956314016896443e2778b1aae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donncha=20=C3=93=20Caoimh?= <5656673+donnchawp@users.noreply.github.com> Date: Wed, 10 Jul 2024 11:24:24 +0100 Subject: [PATCH 080/254] WP Super cache: make sure the debug log viewer isn't deleted by garbage collection (#38276) * We always want a debug log viewer. Don't GC it. * changelog --- .../changelog/super-cache-fix-log-view-deleted | 4 ++++ projects/plugins/super-cache/wp-cache-phase2.php | 10 +++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 projects/plugins/super-cache/changelog/super-cache-fix-log-view-deleted diff --git a/projects/plugins/super-cache/changelog/super-cache-fix-log-view-deleted b/projects/plugins/super-cache/changelog/super-cache-fix-log-view-deleted new file mode 100644 index 0000000000000..f3984d8528a10 --- /dev/null +++ b/projects/plugins/super-cache/changelog/super-cache-fix-log-view-deleted @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +WPSC: Don't delete the log viewer when doing garbage collection diff --git a/projects/plugins/super-cache/wp-cache-phase2.php b/projects/plugins/super-cache/wp-cache-phase2.php index 986afba161e93..c6fbcfd843a4b 100644 --- a/projects/plugins/super-cache/wp-cache-phase2.php +++ b/projects/plugins/super-cache/wp-cache-phase2.php @@ -2775,7 +2775,7 @@ function wp_cache_rebuild_or_delete( $file ) { } function wp_cache_phase2_clean_expired( $file_prefix, $force = false ) { - global $cache_path, $cache_max_time, $blog_cache_dir, $wp_cache_preload_on; + global $cache_path, $cache_max_time, $blog_cache_dir, $wp_cache_preload_on, $wp_cache_debug_log; if ( $cache_max_time == 0 ) { wp_cache_debug( 'wp_cache_phase2_clean_expired: disabled because GC disabled.', 2 ); @@ -2786,6 +2786,14 @@ function wp_cache_phase2_clean_expired( $file_prefix, $force = false ) { if ( ! wp_cache_writers_entry() ) { return false; } + + // make sure we have a debug log viewer + if ( empty( $wp_cache_debug_log ) ) { + wpsc_create_debug_log(); + } else { + touch( $cache_path . 'view_' . $wp_cache_debug_log ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_touch + } + $now = time(); wp_cache_debug( "Cleaning expired cache files in $blog_cache_dir", 2 ); $deleted = 0; From ac04f2ecedb27759ae0db64f456a4bbe89faf006 Mon Sep 17 00:00:00 2001 From: Karen Attfield Date: Wed, 10 Jul 2024 11:41:20 +0100 Subject: [PATCH 081/254] Calypsoify: Removing Calypsoify files and references from the Jetpack plugin (#38259) --- projects/plugins/jetpack/.gitattributes | 2 - .../changelog/remove-calypoify-module-code | 4 + .../changelog/remove-calypoify-module-code#2 | 5 + projects/plugins/jetpack/composer.json | 1 - projects/plugins/jetpack/composer.lock | 65 +------- .../jetpack/modules/calypsoify/README.md | 4 - .../calypsoify/class-jetpack-calypsoify.php | 144 ------------------ .../modules/calypsoify/mods-gutenberg.js | 44 ------ .../jetpack/modules/calypsoify/mods.js | 79 ---------- .../modules/calypsoify/style-gutenberg.scss | 85 ----------- .../plugins/jetpack/modules/module-extras.php | 1 - .../jetpack/tools/webpack.config.css.js | 9 -- tools/eslint-excludelist.json | 1 - 13 files changed, 10 insertions(+), 434 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/remove-calypoify-module-code create mode 100644 projects/plugins/jetpack/changelog/remove-calypoify-module-code#2 delete mode 100644 projects/plugins/jetpack/modules/calypsoify/README.md delete mode 100644 projects/plugins/jetpack/modules/calypsoify/class-jetpack-calypsoify.php delete mode 100644 projects/plugins/jetpack/modules/calypsoify/mods-gutenberg.js delete mode 100644 projects/plugins/jetpack/modules/calypsoify/mods.js delete mode 100644 projects/plugins/jetpack/modules/calypsoify/style-gutenberg.scss diff --git a/projects/plugins/jetpack/.gitattributes b/projects/plugins/jetpack/.gitattributes index 6e8059f79e07d..4e5dc81fb5a88 100644 --- a/projects/plugins/jetpack/.gitattributes +++ b/projects/plugins/jetpack/.gitattributes @@ -53,8 +53,6 @@ /jetpack_vendor/automattic/**/src/css/*.scss production-exclude /jetpack_vendor/automattic/**/composer.json production-exclude /modules/**/test/** production-exclude -/modules/calypsoify/*.css.map production-exclude -/modules/calypsoify/*.scss production-exclude /modules/masterbar/admin-color-schemes/colors/**/*.scss production-exclude /modules/widgets/follow-button.php production-exclude /modules/widget-visibility/editor/** production-exclude diff --git a/projects/plugins/jetpack/changelog/remove-calypoify-module-code b/projects/plugins/jetpack/changelog/remove-calypoify-module-code new file mode 100644 index 0000000000000..7ab8d0c6d2dc6 --- /dev/null +++ b/projects/plugins/jetpack/changelog/remove-calypoify-module-code @@ -0,0 +1,4 @@ +Significance: minor +Type: compat + +Calypsoify: Removing functionality from Jetpack diff --git a/projects/plugins/jetpack/changelog/remove-calypoify-module-code#2 b/projects/plugins/jetpack/changelog/remove-calypoify-module-code#2 new file mode 100644 index 0000000000000..a1c1831fa1ef7 --- /dev/null +++ b/projects/plugins/jetpack/changelog/remove-calypoify-module-code#2 @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated composer.lock. + + diff --git a/projects/plugins/jetpack/composer.json b/projects/plugins/jetpack/composer.json index 32c16dcd156f8..b75a9f25baa91 100644 --- a/projects/plugins/jetpack/composer.json +++ b/projects/plugins/jetpack/composer.json @@ -19,7 +19,6 @@ "automattic/jetpack-blaze": "@dev", "automattic/jetpack-blocks": "@dev", "automattic/jetpack-boost-speed-score": "@dev", - "automattic/jetpack-calypsoify": "@dev", "automattic/jetpack-classic-theme-helper": "@dev", "automattic/jetpack-compat": "@dev", "automattic/jetpack-composer-plugin": "@dev", diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index b621fae0579b7..fe75796fe1511 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "8b707897257ea17c4df9995d01700551", + "content-hash": "bf59aa97ab4a9a5a9d72c1893f4f8ddc", "packages": [ { "name": "automattic/jetpack-a8c-mc-stats", @@ -667,68 +667,6 @@ "relative": true } }, - { - "name": "automattic/jetpack-calypsoify", - "version": "dev-trunk", - "dist": { - "type": "path", - "url": "../../packages/calypsoify", - "reference": "10f1e08f3ac93e9c6f004d1d733443370e15334f" - }, - "require": { - "automattic/jetpack-assets": "@dev", - "automattic/jetpack-status": "@dev", - "php": ">=7.0" - }, - "require-dev": { - "automattic/jetpack-changelogger": "@dev", - "yoast/phpunit-polyfills": "1.1.0" - }, - "suggest": { - "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." - }, - "type": "jetpack-library", - "extra": { - "autotagger": true, - "branch-alias": { - "dev-trunk": "0.1.x-dev" - }, - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-calypsoify/compare/v${old}...v${new}" - }, - "mirror-repo": "Automattic/jetpack-calypsoify", - "textdomain": "jetpack-calypsoify", - "version-constants": { - "::PACKAGE_VERSION": "src/class-jetpack-calypsoify.php" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "scripts": { - "build-production": [ - "pnpm run build-production" - ], - "build-development": [ - "pnpm run build" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, - "license": [ - "GPL-2.0-or-later" - ], - "description": "Calypsoify is designed to make sure specific wp-admin pages include navigation that prioritizes the Calypso navigation experience.", - "transport-options": { - "relative": true - } - }, { "name": "automattic/jetpack-classic-theme-helper", "version": "dev-trunk", @@ -5894,7 +5832,6 @@ "automattic/jetpack-blaze": 20, "automattic/jetpack-blocks": 20, "automattic/jetpack-boost-speed-score": 20, - "automattic/jetpack-calypsoify": 20, "automattic/jetpack-classic-theme-helper": 20, "automattic/jetpack-compat": 20, "automattic/jetpack-composer-plugin": 20, diff --git a/projects/plugins/jetpack/modules/calypsoify/README.md b/projects/plugins/jetpack/modules/calypsoify/README.md deleted file mode 100644 index 4b41c06a2a027..0000000000000 --- a/projects/plugins/jetpack/modules/calypsoify/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# calypsoify -WordPress plugin for redesigning WP-Admin plugin screens to match Calypso. - -![](https://cldup.com/awmrHOWz7t.png) diff --git a/projects/plugins/jetpack/modules/calypsoify/class-jetpack-calypsoify.php b/projects/plugins/jetpack/modules/calypsoify/class-jetpack-calypsoify.php deleted file mode 100644 index c938583e119aa..0000000000000 --- a/projects/plugins/jetpack/modules/calypsoify/class-jetpack-calypsoify.php +++ /dev/null @@ -1,144 +0,0 @@ -id - // Remove | and () from the plugins filter bar - $.each( $( 'ul.subsubsub li' ), function ( i, el ) { - var li = $( el ); - li.html( li.html().replace( '|', '' ).replace( '(', '' ).replace( ')', '' ) ); - } ); - - // Add in the AJAX-y goodness for toggling autoupdates. - $( 'input.autoupdate-toggle' ).change( function ( event ) { - var el = event.target; - - el.disabled = true; - el.classList.add( 'is-toggling' ); - - jQuery.post( - ajaxurl, - { - action: 'jetpack_toggle_autoupdate', - type: 'plugins', - slug: el.dataset.slug, - active: el.checked, - _wpnonce: CalypsoifyOpts.nonces.autoupdate_plugins, - }, - function () { - // Add something to test and confirm that `el.dataset.slug` is missing from `response.data` ? - el.disabled = false; - el.classList.remove( 'is-toggling' ); - } - ); - } ); - } - - $( '#wp-admin-bar-root-default' ).on( 'click', 'li', function ( event ) { - location.href = $( event.target ).closest( 'a' ).attr( 'href' ); - } ); - - $( '#wp-admin-bar-top-secondary' ).on( 'click', 'li#wp-admin-bar-my-account', function ( - event - ) { - location.href = $( event.target ).closest( 'a' ).attr( 'href' ); - } ); - - if ( document && document.location && document.location.search ) { - var params_array = document.location.search.substr( 1 ).split( '&' ), - params_object = {}, - body = $( document.body ), - i, - key_value, - pluginEl; - - if ( params_array && params_array.length ) { - for ( i = 0; i < params_array.length; i++ ) { - key_value = params_array[ i ].split( '=' ); - params_object[ key_value[ 0 ] ] = key_value[ 1 ]; - } - - if ( params_object.s && params_object[ 'modal-mode' ] && params_object.plugin ) { - pluginEl = $( - '.plugin-card-' + params_object.plugin + ' .thickbox.open-plugin-details-modal' - ); - if ( pluginEl && pluginEl.length ) { - pluginEl.click(); - } - } - } - - body.on( 'thickbox:iframe:loaded', function () { - $( '#TB_window' ).on( 'click', 'button#TB_closeWindowButton', function () { - $( '#TB_closeWindowButton' ).click(); - } ); - } ); - } - } ); -} )( jQuery ); diff --git a/projects/plugins/jetpack/modules/calypsoify/style-gutenberg.scss b/projects/plugins/jetpack/modules/calypsoify/style-gutenberg.scss deleted file mode 100644 index 5be90c95958df..0000000000000 --- a/projects/plugins/jetpack/modules/calypsoify/style-gutenberg.scss +++ /dev/null @@ -1,85 +0,0 @@ -/** - * Hide Fullscreen option from post-editor - * - * The entire menu group is not rendered on smaller screens so we need a media query. - * Hide the third item of the first group when the screen is big enough. - */ -@media (min-width: 782px) { - .interface-more-menu-dropdown__content .components-menu-group:first-child .components-button:nth-child(3) { - display: none; - } -} - -/* Hides the Fullscreen option from the Site Editor View modes */ -.edit-site-more-menu__content .components-menu-group:first-child > [role=group] > .components-menu-item__button:last-of-type { - display: none; -} - -/* REVISIONS */ - -.revision-php { - background: #f3f6f8; -} - -.wp-toolbar .revision-php { - margin-top: -32px; -} - -.revision-php #wpadminbar, -.revision-php #adminmenumain, -.revision-php #wp-admin-bar-menu-toggle { - display: none; -} - -.revision-php #wpcontent { - margin-left: 50px !important; -} - -.revision-php #wpbody { - padding-top: 0; -} - -.revision-php #screen-meta-links { - display: none !important; -} - -.revision-php #wpfooter { - display: none !important; -} - -.revision-tickmarks { - margin-top: 8px; -} - -.revisions-controls { - height: 118px; -} -.comparing-two-revisions .revisions-controls { - height: 176px; -} - -.revisions-meta { - margin-top: 28px; -} - -.diff-meta { - min-height: 46px; -} -.revisions-controls .author-card .avatar { - border-radius: 50%; - height: 38px; - margin-top: 4px; - width: 38px; -} -.revisions-controls .author-card .author-info { - line-height: 20px; - margin-top: 4px; -} - -.revision-toggle-compare-mode label { - vertical-align: top; -} - -.revisions-tooltip { - transform: translateY(-36px); -} diff --git a/projects/plugins/jetpack/modules/module-extras.php b/projects/plugins/jetpack/modules/module-extras.php index d27887b850984..71031c3c7005a 100644 --- a/projects/plugins/jetpack/modules/module-extras.php +++ b/projects/plugins/jetpack/modules/module-extras.php @@ -38,7 +38,6 @@ // Some features are only available when connected to WordPress.com. $connected_tools = array( - 'calypsoify/class-jetpack-calypsoify.php', 'plugin-search.php', 'scan/scan.php', // Shows Jetpack Scan alerts in the admin bar if threats found. 'simple-payments/simple-payments.php', diff --git a/projects/plugins/jetpack/tools/webpack.config.css.js b/projects/plugins/jetpack/tools/webpack.config.css.js index c786ba503c784..c97e17e3a5ae8 100644 --- a/projects/plugins/jetpack/tools/webpack.config.css.js +++ b/projects/plugins/jetpack/tools/webpack.config.css.js @@ -199,15 +199,6 @@ for ( const name of [ weirdRtlEntries[ name ] = path.join( __dirname, '..', name + '.css' ); } -// Calypso scss to compile. -// prettier-ignore -for ( const file of glob - .sync( 'modules/calypsoify/*.scss' ) - .filter( n => ! path.basename( n ).startsWith( '_' ) ) -) { - weirdRtlEntries[ file.substring( 0, file.length - 5 ) + '.min' ] = './' + file; -} - // General scss to compile. // prettier-ignore for ( const file of glob diff --git a/tools/eslint-excludelist.json b/tools/eslint-excludelist.json index e4b17c2718378..1c8fbb4b98a0d 100644 --- a/tools/eslint-excludelist.json +++ b/tools/eslint-excludelist.json @@ -65,7 +65,6 @@ "projects/plugins/jetpack/extensions/shared/external-media/sources/google-photos/filter-request.js", "projects/plugins/jetpack/extensions/shared/get-validated-attributes.js", "projects/plugins/jetpack/extensions/shared/plan-upgrade-notification.js", - "projects/plugins/jetpack/modules/calypsoify/mods-gutenberg.js", "projects/plugins/jetpack/modules/infinite-scroll/infinity-customizer.js", "projects/plugins/jetpack/modules/infinite-scroll/infinity.js", "projects/plugins/jetpack/modules/plugin-search/plugin-search.js", From de7347ea68f6f03be14520641eece7d178c0c8d2 Mon Sep 17 00:00:00 2001 From: Karen Attfield Date: Wed, 10 Jul 2024 11:43:07 +0100 Subject: [PATCH 082/254] Map Block: React 19 compatibility - converting defaultProps usage on MapkitComponent (#38274) --- .../changelog/fix-defaultProps-usage-react-19 | 4 + .../extensions/blocks/map/component/mapkit.js | 148 ++++++++++-------- 2 files changed, 88 insertions(+), 64 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/fix-defaultProps-usage-react-19 diff --git a/projects/plugins/jetpack/changelog/fix-defaultProps-usage-react-19 b/projects/plugins/jetpack/changelog/fix-defaultProps-usage-react-19 new file mode 100644 index 0000000000000..9dcb54b67f591 --- /dev/null +++ b/projects/plugins/jetpack/changelog/fix-defaultProps-usage-react-19 @@ -0,0 +1,4 @@ +Significance: patch +Type: compat + +Map block: Changed defaultProp usage to make use of default parameters, for React 19 compatibility. diff --git a/projects/plugins/jetpack/extensions/blocks/map/component/mapkit.js b/projects/plugins/jetpack/extensions/blocks/map/component/mapkit.js index e656cc138b9bd..0d70b9f2a7e11 100644 --- a/projects/plugins/jetpack/extensions/blocks/map/component/mapkit.js +++ b/projects/plugins/jetpack/extensions/blocks/map/component/mapkit.js @@ -16,61 +16,95 @@ import { import { createCalloutElementCallback } from '../mapkit-utils'; import InfoWindow from './info-window'; -const MapkitComponent = forwardRef( ( props, mapRef ) => { - const { admin, points, onError, onSetPoints } = props; - const { loaded, error, mapkit, currentDoc, currentWindow } = useMapkitSetup( mapRef ); - const { map } = useMapkitInit( mapkit, loaded, mapRef ); - const addPoint = Children.map( props.children, child => { - const tagName = get( child, 'props.tagName' ); - if ( 'AddPoint' === tagName ) { - return child; - } - } ); +const MapkitComponent = forwardRef( + ( + { + admin, + points = [], + mapStyle = 'default', + zoom = 13, + onSetZoom = () => {}, + onSetMapCenter = () => {}, + onMapLoaded = () => {}, + onMarkerClick = () => {}, + onError = () => {}, + markerColor = 'red', + mapCenter = {}, + mapHeight = 400, + address = null, + onSetPoints, + children, + }, + mapRef + ) => { + const { loaded, error, mapkit, currentDoc, currentWindow } = useMapkitSetup( mapRef ); + const { map } = useMapkitInit( mapkit, loaded, mapRef ); + const addPoint = Children.map( children, child => { + const tagName = get( child, 'props.tagName' ); + if ( 'AddPoint' === tagName ) { + return child; + } + } ); - useEffect( () => { - if ( error ) { - onError( 'mapkit_error', error ); - } - }, [ error, onError ] ); + useEffect( () => { + if ( error ) { + onError( 'mapkit_error', error ); + } + }, [ error, onError ] ); - return ( - - { loaded && mapkit && map ? : null } -
- { addPoint } - - - ); -} ); + return ( + + { loaded && mapkit && map ? ( + + ) : null } +
+ { addPoint } + + + ); + } +); const MapkitHelpers = memo( ( { - address, - mapCenter, - mapStyle, - zoom, - onSetMapCenter, - onSetZoom, - onSetPoints, - points, - markerColor, - onMarkerClick, - onMapLoaded, + address = null, + mapCenter = {}, + mapStyle = 'default', + zoom = 13, + onSetMapCenter = () => {}, + onSetZoom = () => {}, + onSetPoints = () => {}, + points = [], + markerColor = 'red', + onMarkerClick = () => {}, + onMapLoaded = () => {}, } ) => { const { map, mapkit, setActiveMarker, setPreviousCenter, setCalloutReference, currentDoc } = useMapkit(); @@ -114,18 +148,4 @@ const MapkitHelpers = memo( } ); -MapkitComponent.defaultProps = { - points: [], - mapStyle: 'default', - zoom: 13, - onSetZoom: () => {}, - onSetMapCenter: () => {}, - onMapLoaded: () => {}, - onMarkerClick: () => {}, - onError: () => {}, - markerColor: 'red', - mapCenter: {}, - address: null, -}; - export default MapkitComponent; From 6914afcc5dabfcbd7938b76264bc37fef67744b5 Mon Sep 17 00:00:00 2001 From: Peter Petrov Date: Wed, 10 Jul 2024 13:56:07 +0300 Subject: [PATCH 083/254] Boost: Init 3.4.8-alpha and update stable tag (#38275) * Init 3.4.8-alpha * Update stable tag * add changelog * Update composer lock --- projects/plugins/boost/changelog/init-new-plugin-cycle | 5 +++++ projects/plugins/boost/composer.json | 4 ++-- projects/plugins/boost/composer.lock | 2 +- projects/plugins/boost/jetpack-boost.php | 4 ++-- projects/plugins/boost/package.json | 2 +- projects/plugins/boost/readme.txt | 2 +- 6 files changed, 12 insertions(+), 7 deletions(-) create mode 100644 projects/plugins/boost/changelog/init-new-plugin-cycle diff --git a/projects/plugins/boost/changelog/init-new-plugin-cycle b/projects/plugins/boost/changelog/init-new-plugin-cycle new file mode 100644 index 0000000000000..634cf14fea933 --- /dev/null +++ b/projects/plugins/boost/changelog/init-new-plugin-cycle @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Init 3.4.8-alpha. + + diff --git a/projects/plugins/boost/composer.json b/projects/plugins/boost/composer.json index 9cf8ae5375d9e..12db65dfc9138 100644 --- a/projects/plugins/boost/composer.json +++ b/projects/plugins/boost/composer.json @@ -3,7 +3,7 @@ "description": "Boost your WordPress site's performance, from the creators of Jetpack", "type": "library", "license": "GPL-2.0-or-later", - "version": "3.4.7", + "version": "3.4.8-alpha", "authors": [ { "name": "Automattic, Inc.", @@ -73,7 +73,7 @@ "platform": { "ext-intl": "0.0.0" }, - "autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_4_7", + "autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_4_8_alpha", "allow-plugins": { "roots/wordpress-core-installer": true, "automattic/jetpack-autoloader": true, diff --git a/projects/plugins/boost/composer.lock b/projects/plugins/boost/composer.lock index 3d0f59ed79f70..9572462eb7f27 100644 --- a/projects/plugins/boost/composer.lock +++ b/projects/plugins/boost/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "399a08269528eb68d0c2d403b08b2b5f", + "content-hash": "453fdc3419d099e4ca8fe71380ac627b", "packages": [ { "name": "automattic/jetpack-a8c-mc-stats", diff --git a/projects/plugins/boost/jetpack-boost.php b/projects/plugins/boost/jetpack-boost.php index c33a2a30e116a..e192ea617e27d 100644 --- a/projects/plugins/boost/jetpack-boost.php +++ b/projects/plugins/boost/jetpack-boost.php @@ -9,7 +9,7 @@ * Plugin Name: Jetpack Boost * Plugin URI: https://jetpack.com/boost * Description: Boost your WordPress site's performance, from the creators of Jetpack - * Version: 3.4.7 + * Version: 3.4.8-alpha * Author: Automattic - Jetpack Site Speed team * Author URI: https://jetpack.com/boost/ * License: GPL-2.0+ @@ -29,7 +29,7 @@ die; } -define( 'JETPACK_BOOST_VERSION', '3.4.7' ); +define( 'JETPACK_BOOST_VERSION', '3.4.8-alpha' ); define( 'JETPACK_BOOST_SLUG', 'jetpack-boost' ); if ( ! defined( 'JETPACK_BOOST_CLIENT_NAME' ) ) { diff --git a/projects/plugins/boost/package.json b/projects/plugins/boost/package.json index a052a514264ac..50b5eb47e6b0b 100644 --- a/projects/plugins/boost/package.json +++ b/projects/plugins/boost/package.json @@ -1,6 +1,6 @@ { "name": "jetpack-boost", - "version": "3.4.7", + "version": "3.4.8-alpha", "description": "Boost your WordPress site's performance, from the creators of Jetpack", "directories": { "test": "tests" diff --git a/projects/plugins/boost/readme.txt b/projects/plugins/boost/readme.txt index 3cdd80b24b2be..3d3100fedba0e 100644 --- a/projects/plugins/boost/readme.txt +++ b/projects/plugins/boost/readme.txt @@ -5,7 +5,7 @@ Tags: performance, speed, web vitals, critical css, cache Requires at least: 5.5 Tested up to: 6.6 Requires PHP: 7.0 -Stable tag: 3.4.6 +Stable tag: 3.4.7 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html From 985d200715a03950bc5be704b6bac96ec17cb5ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donncha=20=C3=93=20Caoimh?= <5656673+donnchawp@users.noreply.github.com> Date: Wed, 10 Jul 2024 11:56:33 +0100 Subject: [PATCH 084/254] WP Super Cache: fix clearing the cache when scheduled posts are published (#38263) * Don't check for backend so soon, wait for hooks first. * changelog --- .../super-cache/changelog/super-cache-fix-scheduled-posts | 4 ++++ projects/plugins/super-cache/wp-cache-phase2.php | 5 ----- 2 files changed, 4 insertions(+), 5 deletions(-) create mode 100644 projects/plugins/super-cache/changelog/super-cache-fix-scheduled-posts diff --git a/projects/plugins/super-cache/changelog/super-cache-fix-scheduled-posts b/projects/plugins/super-cache/changelog/super-cache-fix-scheduled-posts new file mode 100644 index 0000000000000..b2c74a024d99b --- /dev/null +++ b/projects/plugins/super-cache/changelog/super-cache-fix-scheduled-posts @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +WPSC: fix clearing the cache when scheduled posts are published diff --git a/projects/plugins/super-cache/wp-cache-phase2.php b/projects/plugins/super-cache/wp-cache-phase2.php index c6fbcfd843a4b..989072f06b28f 100644 --- a/projects/plugins/super-cache/wp-cache-phase2.php +++ b/projects/plugins/super-cache/wp-cache-phase2.php @@ -400,11 +400,6 @@ function wp_cache_postload() { return true; } - if ( wpsc_is_backend() ) { - wp_cache_debug( 'wp_cache_postload: backend detected, not running' ); - return true; - } - if ( isset( $wp_super_cache_late_init ) && true == $wp_super_cache_late_init ) { wp_cache_debug( 'Supercache Late Init: add wp_cache_serve_cache_file to init', 3 ); add_action( 'init', 'wp_cache_late_loader', 9999 ); From 6e08792030134d5c3b48f1eb88ffa1c7c44dcf57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donncha=20=C3=93=20Caoimh?= <5656673+donnchawp@users.noreply.github.com> Date: Wed, 10 Jul 2024 12:39:26 +0100 Subject: [PATCH 085/254] Backport super-cache 1.12.3 Changes (#38278) * Changelog and readme.txt edits. * Update the stable tag to 1.12.3 --- projects/plugins/super-cache/CHANGELOG.md | 6 +++++ .../changelog/renovate-lock-file-maintenance | 4 ---- .../super-cache-fix-log-view-deleted | 4 ---- .../changelog/super-cache-fix-scheduled-posts | 4 ---- .../changelog/super-cache-new-cycle | 5 ---- projects/plugins/super-cache/composer.json | 2 +- projects/plugins/super-cache/package.json | 2 +- projects/plugins/super-cache/readme.txt | 24 ++++--------------- projects/plugins/super-cache/wp-cache.php | 2 +- 9 files changed, 13 insertions(+), 40 deletions(-) delete mode 100644 projects/plugins/super-cache/changelog/renovate-lock-file-maintenance delete mode 100644 projects/plugins/super-cache/changelog/super-cache-fix-log-view-deleted delete mode 100644 projects/plugins/super-cache/changelog/super-cache-fix-scheduled-posts delete mode 100644 projects/plugins/super-cache/changelog/super-cache-new-cycle diff --git a/projects/plugins/super-cache/CHANGELOG.md b/projects/plugins/super-cache/CHANGELOG.md index d8ed26d814dab..e0cdcde5e0ec1 100644 --- a/projects/plugins/super-cache/CHANGELOG.md +++ b/projects/plugins/super-cache/CHANGELOG.md @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.12.3] - 2024-07-10 +### Fixed +- Don't delete the log viewer when doing garbage collection [#38276] +- Fix clearing the cache when scheduled posts are published [#38263] + ## [1.12.2] - 2024-06-27 ### Added - add an admin notice to encourage migration to Jetpack Boost [#37933] @@ -752,6 +757,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Misc fixes +[1.12.3]: https://github.com/Automattic/wp-super-cache/compare/v1.12.2...v1.12.3 [1.12.2]: https://github.com/Automattic/wp-super-cache/compare/v1.12.1...v1.12.2 [1.12.1]: https://github.com/Automattic/wp-super-cache/compare/v1.12.0...v1.12.1 [1.12.0]: https://github.com/Automattic/wp-super-cache/compare/v1.11.0...v1.12.0 diff --git a/projects/plugins/super-cache/changelog/renovate-lock-file-maintenance b/projects/plugins/super-cache/changelog/renovate-lock-file-maintenance deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/plugins/super-cache/changelog/renovate-lock-file-maintenance +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/plugins/super-cache/changelog/super-cache-fix-log-view-deleted b/projects/plugins/super-cache/changelog/super-cache-fix-log-view-deleted deleted file mode 100644 index f3984d8528a10..0000000000000 --- a/projects/plugins/super-cache/changelog/super-cache-fix-log-view-deleted +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -WPSC: Don't delete the log viewer when doing garbage collection diff --git a/projects/plugins/super-cache/changelog/super-cache-fix-scheduled-posts b/projects/plugins/super-cache/changelog/super-cache-fix-scheduled-posts deleted file mode 100644 index b2c74a024d99b..0000000000000 --- a/projects/plugins/super-cache/changelog/super-cache-fix-scheduled-posts +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -WPSC: fix clearing the cache when scheduled posts are published diff --git a/projects/plugins/super-cache/changelog/super-cache-new-cycle b/projects/plugins/super-cache/changelog/super-cache-new-cycle deleted file mode 100644 index 6f6153d52d8fa..0000000000000 --- a/projects/plugins/super-cache/changelog/super-cache-new-cycle +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: fixed -Comment: Bump stable tag to 1.12.2 - - diff --git a/projects/plugins/super-cache/composer.json b/projects/plugins/super-cache/composer.json index d2d54b80fe366..c104d51b02989 100644 --- a/projects/plugins/super-cache/composer.json +++ b/projects/plugins/super-cache/composer.json @@ -51,6 +51,6 @@ "wp-svn-autopublish": true }, "config": { - "autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_3_alpha" + "autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_3" } } diff --git a/projects/plugins/super-cache/package.json b/projects/plugins/super-cache/package.json index edd4900fa4aa1..8c99c5d343ace 100644 --- a/projects/plugins/super-cache/package.json +++ b/projects/plugins/super-cache/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-super-cache", - "version": "1.12.3-alpha", + "version": "1.12.3", "description": "A very fast caching engine for WordPress that produces static html files.", "homepage": "https://jetpack.com", "bugs": { diff --git a/projects/plugins/super-cache/readme.txt b/projects/plugins/super-cache/readme.txt index 16876a8027546..f59311c9884f4 100644 --- a/projects/plugins/super-cache/readme.txt +++ b/projects/plugins/super-cache/readme.txt @@ -4,7 +4,7 @@ Tags: performance, caching, wp-cache, wp-super-cache, cache Requires at least: 6.4 Requires PHP: 7.0 Tested up to: 6.6 -Stable tag: 1.12.2 +Stable tag: 1.12.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -268,26 +268,10 @@ Your theme is probably responsive which means it resizes the page to suit whatev == Changelog == -### 1.12.2 - 2024-06-27 -#### Added -- add an admin notice to encourage migration to Jetpack Boost -- modify boost install code so it can be used by multiple buttons -- notify Boost of migration to that plugin - -#### Changed -- General: indicate compatibility with the upcoming version of WordPress - 6.6. -- tell user that Cache module of Boost must be deactivated to use WPSC -- WP Updated banner designs, added auto-install Jetpack Boost buttons - +### 1.12.3 - 2024-07-10 #### Fixed -- Detect when WP_CACHE is defined with "const" in wp-config.php -- Align detection of Boost installs with activation of that plugin -- create the cache directory before creating the config file -- do not show migration notice if already using Boost Cache -- fixed a PHP warning when deactivating the plugin. -- make sure plugins links is an array before using it. -- remove the preload interval based on the post count. Preload as often as you want. -- renamed WPSC_VERSION because it conflicted with other plugins +- Don't delete the log viewer when doing garbage collection +- Fix clearing the cache when scheduled posts are published -------- diff --git a/projects/plugins/super-cache/wp-cache.php b/projects/plugins/super-cache/wp-cache.php index d8c89e1943514..91c8f7ffcd51c 100644 --- a/projects/plugins/super-cache/wp-cache.php +++ b/projects/plugins/super-cache/wp-cache.php @@ -3,7 +3,7 @@ * Plugin Name: WP Super Cache * Plugin URI: https://wordpress.org/plugins/wp-super-cache/ * Description: Very fast caching plugin for WordPress. - * Version: 1.12.3-alpha + * Version: 1.12.3 * Author: Automattic * Author URI: https://automattic.com/ * License: GPL2+ From da8c33556c23654f7bcf75fc2f3a1a9f92009fc3 Mon Sep 17 00:00:00 2001 From: arthur791004 Date: Wed, 10 Jul 2024 21:01:57 +0900 Subject: [PATCH 086/254] Jetpack Blocks: Migrate the Timeline block from ETK (#38255) * Jetpack Blocks: Migrate the Timeline block from ETK * changelog --- .../changelog/feat-jetpack-timeline-block | 4 + .../blocks/timeline/block-appender.js | 29 +++++ .../extensions/blocks/timeline/block.json | 22 ++++ .../extensions/blocks/timeline/edit.js | 46 ++++++++ .../extensions/blocks/timeline/editor.js | 18 +++ .../extensions/blocks/timeline/editor.scss | 33 ++++++ .../extensions/blocks/timeline/example.js | 52 +++++++++ .../extensions/blocks/timeline/icon.js | 7 ++ .../extensions/blocks/timeline/save.js | 23 ++++ .../extensions/blocks/timeline/style.scss | 109 ++++++++++++++++++ .../blocks/timeline/timeline-item/edit.js | 97 ++++++++++++++++ .../blocks/timeline/timeline-item/index.js | 26 +++++ .../blocks/timeline/timeline-item/save.js | 29 +++++ .../extensions/blocks/timeline/timeline.php | 39 +++++++ .../extensions/blocks/timeline/view.js | 1 + .../plugins/jetpack/extensions/index.json | 1 + 16 files changed, 536 insertions(+) create mode 100644 projects/plugins/jetpack/changelog/feat-jetpack-timeline-block create mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/block-appender.js create mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/block.json create mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/edit.js create mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/editor.js create mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/editor.scss create mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/example.js create mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/icon.js create mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/save.js create mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/style.scss create mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/edit.js create mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/index.js create mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/save.js create mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/timeline.php create mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/view.js diff --git a/projects/plugins/jetpack/changelog/feat-jetpack-timeline-block b/projects/plugins/jetpack/changelog/feat-jetpack-timeline-block new file mode 100644 index 0000000000000..97ed845261d03 --- /dev/null +++ b/projects/plugins/jetpack/changelog/feat-jetpack-timeline-block @@ -0,0 +1,4 @@ +Significance: minor +Type: enhancement + +Jetpack Blocks: Migrate the Timeline block from ETK diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/block-appender.js b/projects/plugins/jetpack/extensions/blocks/timeline/block-appender.js new file mode 100644 index 0000000000000..fece1ead4901f --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/timeline/block-appender.js @@ -0,0 +1,29 @@ +import { Path, SVG } from '@wordpress/components'; +import { __ } from '@wordpress/i18n'; + +const BlockAppender = props => { + const { onClick } = props; + return ( + + ); +}; + +export default BlockAppender; diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/block.json b/projects/plugins/jetpack/extensions/blocks/timeline/block.json new file mode 100644 index 0000000000000..fb3263fe92815 --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/timeline/block.json @@ -0,0 +1,22 @@ +{ + "$schema": "https://schemas.wp.org/trunk/block.json", + "apiVersion": 3, + "name": "jetpack/timeline", + "title": "Timeline", + "description": "Create a timeline of events.", + "keywords": [ "events", "tickets" ], + "version": "12.5.0", + "textdomain": "jetpack", + "category": "widgets", + "icon": "", + "supports": { + "align": [ "wide", "full" ] + }, + "attributes": { + "isAlternating": { + "type": "boolean", + "selector": "ul", + "attribute": "data-is-alternating" + } + } +} diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/edit.js b/projects/plugins/jetpack/extensions/blocks/timeline/edit.js new file mode 100644 index 0000000000000..6e5b01f413a2d --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/timeline/edit.js @@ -0,0 +1,46 @@ +import { InnerBlocks, InspectorControls, useBlockProps } from '@wordpress/block-editor'; +import { createBlock } from '@wordpress/blocks'; +import { ToggleControl, PanelBody } from '@wordpress/components'; +import { dispatch } from '@wordpress/data'; +import { __ } from '@wordpress/i18n'; +import clsx from 'clsx'; +import BlockAppender from './block-appender'; + +const TimelineEdit = ( { clientId, attributes, setAttributes } ) => { + const { isAlternating } = attributes; + const className = clsx( 'wp-block-jetpack-timeline', { + 'is-alternating': isAlternating, + } ); + + const blockProps = useBlockProps( { className } ); + + const addItem = () => { + const block = createBlock( 'jetpack/timeline-item' ); + dispatch( 'core/block-editor' ).insertBlock( block, undefined, clientId ); + }; + + const toggleAlternate = () => setAttributes( { isAlternating: ! isAlternating } ); + + return ( + <> + + + + + +
    + } + /> +
+ + ); +}; + +export default TimelineEdit; diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/editor.js b/projects/plugins/jetpack/extensions/blocks/timeline/editor.js new file mode 100644 index 0000000000000..226bfd15dd6ee --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/timeline/editor.js @@ -0,0 +1,18 @@ +import { registerJetpackBlockFromMetadata } from '../../shared/register-jetpack-block'; +import metadata from './block.json'; +import edit from './edit'; +import example from './example'; +import save from './save'; +import * as timelineItem from './timeline-item'; +import './editor.scss'; +import './style.scss'; + +registerJetpackBlockFromMetadata( + metadata, + { + edit, + save, + example, + }, + [ timelineItem ] +); diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/editor.scss b/projects/plugins/jetpack/extensions/blocks/timeline/editor.scss new file mode 100644 index 0000000000000..35b445aadb6d6 --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/timeline/editor.scss @@ -0,0 +1,33 @@ +// Editor-only styles. +[data-type="jetpack/timeline"] { + + // Always show the Timeline appender, even when a child block is selected. + .block-list-appender { + display: none; + } + + &.is-selected .block-list-appender, + &.has-child-selected .block-list-appender { + display: block; + } +} + +// We replicate the appender look here. +// @todo: once https://github.com/WordPress/gutenberg/issues/16659 we should replace the button with the actual appender. +.components-button.timeline-item-appender { + background: #1e1e1e; + border-radius: 2px; + color: #fff; + min-width: 24px; + height: 24px; + margin-right: 12px; + padding-left: 0; + padding-right: 8px; + + // Temporarily make this important. It can be retired once this custom appender is replaced with the real one. + animation: none !important; + + &:hover { + color: #fff; + } +} diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/example.js b/projects/plugins/jetpack/extensions/blocks/timeline/example.js new file mode 100644 index 0000000000000..51fcb6cd0076c --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/timeline/example.js @@ -0,0 +1,52 @@ +import { __ } from '@wordpress/i18n'; + +const example = { + innerBlocks: [ + { + name: 'jetpack/timeline-item', + innerBlocks: [ + { + name: 'core/heading', + attributes: { + content: __( 'Spring', 'jetpack' ), + }, + }, + ], + }, + { + name: 'jetpack/timeline-item', + innerBlocks: [ + { + name: 'core/heading', + attributes: { + content: __( 'Summer', 'jetpack' ), + }, + }, + ], + }, + { + name: 'jetpack/timeline-item', + innerBlocks: [ + { + name: 'core/heading', + attributes: { + content: __( 'Fall', 'jetpack' ), + }, + }, + ], + }, + { + name: 'jetpack/timeline-item', + innerBlocks: [ + { + name: 'core/heading', + attributes: { + content: __( 'Winter', 'jetpack' ), + }, + }, + ], + }, + ], +}; + +export default example; diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/icon.js b/projects/plugins/jetpack/extensions/blocks/timeline/icon.js new file mode 100644 index 0000000000000..556434b23b9fa --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/timeline/icon.js @@ -0,0 +1,7 @@ +import { Path, SVG } from '@wordpress/components'; + +export const TimelineIcon = () => ( + + + +); diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/save.js b/projects/plugins/jetpack/extensions/blocks/timeline/save.js new file mode 100644 index 0000000000000..8efdfd3a19437 --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/timeline/save.js @@ -0,0 +1,23 @@ +import { InnerBlocks, useBlockProps } from '@wordpress/block-editor'; +import clsx from 'clsx'; + +const save = ( { attributes } ) => { + const { isAlternating } = attributes; + + const className = clsx( 'wp-block-jetpack-timeline', { + 'is-alternating': isAlternating, + } ); + + const blockProps = useBlockProps.save( { className } ); + + const dataProps = + typeof isAlternating === 'boolean' ? { 'data-is-alternating': isAlternating } : null; + + return ( +
    + +
+ ); +}; + +export default save; diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/style.scss b/projects/plugins/jetpack/extensions/blocks/timeline/style.scss new file mode 100644 index 0000000000000..c728ccd3a6e8a --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/timeline/style.scss @@ -0,0 +1,109 @@ +/** + * Timeline Block styles. + */ + +// Variables. +$timeline-width: 36px; +$timeline-gutter: 24px; +$timeline-border-width: 4px; + +// Styles shared between editor and frontend. +.wp-block-jetpack-timeline { + + // This padding needs extra specificity. + &.wp-block-jetpack-timeline { + padding: 0; + } + + li.wp-block-jetpack-timeline-item { + list-style-type: none; + position: relative; + padding: 1em 2em; + + // Make the spacing between items consistent so we can connect the timeline + margin-bottom: $timeline-width; + + // Make room for the timeline. + margin-left: $timeline-width; + + // Draw the line connecting to the timeline. + .timeline-item__bubble { + display: block; + width: $timeline-width; + height: $timeline-border-width; + background-color: currentColor; + position: absolute; + top: 50%; + transform: translateY(-($timeline-border-width * 0.5)); + left: -$timeline-width; + } + + // Draw the vertical timeline line. + .timeline-item::after { + content: ""; + display: block; + background: currentColor; + position: absolute; + left: -$timeline-width; + top: -$timeline-width; + bottom: -$timeline-width; + width: $timeline-border-width; + } + } + + // Add special timeline starting point and end point. + [data-type="jetpack/timeline-item"]:first-child .timeline-item::after, + & > li.wp-block-jetpack-timeline-item:first-child .timeline-item::after { // Frontend + top: 50%; + } + + [data-type="jetpack/timeline-item"]:nth-last-child(2) .timeline-item::after, + & > li.wp-block-jetpack-timeline-item:last-child .timeline-item::after { // Frontend + bottom: 50%; + } + +} + +/** + * Alternating Bubbles + */ +@media only screen and (min-width: 640px) { + ul.wp-block-jetpack-timeline.is-alternating { + display: flex; + flex-direction: column; + + // Bubbles. + .wp-block-jetpack-timeline-item { + width: calc(50% - #{ $timeline-width } + #{ $timeline-border-width * 0.5 }); + box-sizing: border-box; + } + + // Left aligned. + .wp-block-jetpack-timeline-item.is-left.is-left.is-left, + [data-type="jetpack/timeline-item"]:nth-child(odd) .wp-block-jetpack-timeline-item:not(.is-right), + & > .wp-block-jetpack-timeline-item:nth-child(odd):not(.is-right) { // Frontend + margin-left: 0; + margin-right: auto; + + // Adjust the the line connecting to the timeline. + .timeline-item__bubble { + left: auto; + right: -$timeline-width; + } + + // Adjust the vertical line. + .timeline-item::after { + left: auto; + right: -$timeline-width; + } + } + + // Right aligned. + .wp-block-jetpack-timeline-item.is-right.is-right.is-right, + [data-type="jetpack/timeline-item"]:nth-child(even) .wp-block-jetpack-timeline-item:not(.is-left), + .wp-block-jetpack-timeline-item:nth-child(even):not(.is-left) { // Frontend + margin-left: auto; + margin-right: 0; + } + } +} diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/edit.js b/projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/edit.js new file mode 100644 index 0000000000000..5f099ccc9ae6b --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/edit.js @@ -0,0 +1,97 @@ +import { + InspectorControls, + InnerBlocks, + PanelColorSettings, + BlockControls, +} from '@wordpress/block-editor'; +import { ToolbarButton, ToolbarGroup } from '@wordpress/components'; +import { useSelect } from '@wordpress/data'; +import { __ } from '@wordpress/i18n'; +import { positionLeft, positionRight } from '@wordpress/icons'; +import clsx from 'clsx'; + +export const DEFAULT_BACKGROUND = '#eeeeee'; + +const Controls = ( { alignment, clientId, toggleAlignment } ) => { + const parentIsAlternating = useSelect( select => { + const parentIds = select( 'core/block-editor' ).getBlockParents( clientId ); + const parent = select( 'core/block-editor' ).getBlock( parentIds[ 0 ] ); + return parent?.attributes?.isAlternating; + } ); + + if ( parentIsAlternating === false ) { + return null; + } + + return ( + + + toggleAlignment( 'left' ) } + isActive={ alignment === 'left' } + icon={ positionLeft } + title={ __( 'Left', 'jetpack' ) } + /> + toggleAlignment( 'right' ) } + isActive={ alignment === 'right' } + icon={ positionRight } + title={ __( 'Right', 'jetpack' ) } + /> + + + ); +}; + +const TimelineItemEdit = ( { attributes, clientId, setAttributes } ) => { + const style = { + backgroundColor: attributes.background, + }; + + const bubbleStyle = { + borderColor: attributes.background, + }; + + const toggleAlignment = alignment => { + const newAlignment = alignment === attributes.alignment ? 'auto' : alignment; + setAttributes( { alignment: newAlignment } ); + }; + + const classes = clsx( 'wp-block-jetpack-timeline-item', { + 'is-left': attributes.alignment === 'left', + 'is-right': attributes.alignment === 'right', + } ); + + return ( + <> + +
  • + + + setAttributes( { background: background || DEFAULT_BACKGROUND } ), + label: __( 'Background Color', 'jetpack' ), + }, + ] } + /> + +
    +
    +
    + +
    +
  • + + ); +}; + +export default TimelineItemEdit; diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/index.js b/projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/index.js new file mode 100644 index 0000000000000..0f4f02269bc2e --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/index.js @@ -0,0 +1,26 @@ +import { __ } from '@wordpress/i18n'; +import { TimelineIcon } from '../icon'; +import edit, { DEFAULT_BACKGROUND } from './edit'; +import save from './save'; + +export const name = 'timeline-item'; + +export const settings = { + title: __( 'Timeline Entry', 'jetpack' ), + description: __( 'An entry on the timeline', 'jetpack' ), + icon: TimelineIcon, + category: 'widgets', + parent: [ 'jetpack/timeline' ], + attributes: { + alignment: { + type: 'string', + default: 'auto', + }, + background: { + type: 'string', + default: DEFAULT_BACKGROUND, + }, + }, + edit, + save, +}; diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/save.js b/projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/save.js new file mode 100644 index 0000000000000..3698271269ce4 --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/save.js @@ -0,0 +1,29 @@ +import { InnerBlocks } from '@wordpress/block-editor'; +import clsx from 'clsx'; + +const save = ( { attributes } ) => { + const classes = clsx( { + 'is-left': attributes.alignment === 'left', + 'is-right': attributes.alignment === 'right', + } ); + + const style = { + backgroundColor: attributes.background, + }; + + const bubbleStyle = { + borderColor: attributes.background, + }; + + return ( +
  • +
    +
    +
    + +
    +
  • + ); +}; + +export default save; diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/timeline.php b/projects/plugins/jetpack/extensions/blocks/timeline/timeline.php new file mode 100644 index 0000000000000..aa31af39aec8b --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/timeline/timeline.php @@ -0,0 +1,39 @@ + __NAMESPACE__ . '\load_assets' ) + ); +} +add_action( 'init', __NAMESPACE__ . '\register_block' ); + +/** + * Timeline block. + * + * @param array $attr Array containing the Timeline block attributes. + * @param string $content String containing the Timeline block content. + * + * @return string + */ +function load_assets( $attr, $content ) { + Jetpack_Gutenberg::load_assets_as_required( __DIR__ ); + return $content; +} diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/view.js b/projects/plugins/jetpack/extensions/blocks/timeline/view.js new file mode 100644 index 0000000000000..423b033ce717c --- /dev/null +++ b/projects/plugins/jetpack/extensions/blocks/timeline/view.js @@ -0,0 +1 @@ +import './style.scss'; diff --git a/projects/plugins/jetpack/extensions/index.json b/projects/plugins/jetpack/extensions/index.json index 0ce53c7228b56..f1bc99fe035ad 100644 --- a/projects/plugins/jetpack/extensions/index.json +++ b/projects/plugins/jetpack/extensions/index.json @@ -45,6 +45,7 @@ "subscriber-login", "subscriptions", "tiled-gallery", + "timeline", "tock", "videopress", "wordads", From 762e94a8447e1d7ff1b562353e4a48c63d128985 Mon Sep 17 00:00:00 2001 From: Mark Biek Date: Wed, 10 Jul 2024 08:12:43 -0400 Subject: [PATCH 087/254] WPCOMSH: Post transfer action to conditionally enable HPOS on WooCommerce sites (#38119) * changelog * Post transfer action to conditionally enable WooCommerce HPOS * Version bump * Rename hpos flag for clarity * Switch to a direct call to check if Woo is active * Switch to direct call to check if HPOS is already enabled --- .../changelog/1468-update-hpos-wpcomsh-wpcli | 4 ++ projects/plugins/wpcomsh/composer.json | 2 +- projects/plugins/wpcomsh/package.json | 2 +- projects/plugins/wpcomsh/woa.php | 60 +++++++++++++++++++ projects/plugins/wpcomsh/wpcomsh.php | 1 - 5 files changed, 66 insertions(+), 3 deletions(-) create mode 100644 projects/plugins/wpcomsh/changelog/1468-update-hpos-wpcomsh-wpcli diff --git a/projects/plugins/wpcomsh/changelog/1468-update-hpos-wpcomsh-wpcli b/projects/plugins/wpcomsh/changelog/1468-update-hpos-wpcomsh-wpcli new file mode 100644 index 0000000000000..44dbb59c946a4 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/1468-update-hpos-wpcomsh-wpcli @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +WOA Post Transfer: Ensure that HPOS is enabled for WooCommerce sites. diff --git a/projects/plugins/wpcomsh/composer.json b/projects/plugins/wpcomsh/composer.json index 1098de7cb1343..fcc0aa228e161 100644 --- a/projects/plugins/wpcomsh/composer.json +++ b/projects/plugins/wpcomsh/composer.json @@ -149,4 +149,4 @@ "WPCOMSH_VERSION": "wpcomsh.php" } } -} +} \ No newline at end of file diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index 732fcf9e89431..79575c62d8cf8 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -31,4 +31,4 @@ "test": "jest --bail --ci --verbose", "test:watch": "jest --verbose --watchAll" } -} +} \ No newline at end of file diff --git a/projects/plugins/wpcomsh/woa.php b/projects/plugins/wpcomsh/woa.php index 77b16319b318e..92ac221e88b63 100644 --- a/projects/plugins/wpcomsh/woa.php +++ b/projects/plugins/wpcomsh/woa.php @@ -99,6 +99,66 @@ function wpcomsh_woa_post_transfer_update_safecss_to_custom_css( $args, $assoc_a add_action( 'wpcomsh_woa_post_transfer', 'wpcomsh_woa_post_transfer_update_safecss_to_custom_css', 10, 2 ); add_action( 'wpcomsh_woa_post_reset', 'wpcomsh_woa_post_transfer_update_safecss_to_custom_css', 10, 2 ); +/** + * Debug and error logging for the post-transfer action to enable HPOS. + * + * @param string $message Message to log. + */ +function wpcomsh_woa_post_transfer_maybe_enable_woocommerce_hpos_log( $message ) { + $message = sprintf( 'maybe_enable_woocommerce_hpos: %s', $message ); + + // The error_log call can be uncommented for debugging. + // error_log( $message ); + WPCOMSH_Log::unsafe_direct_log( $message ); +} + +/** + * Enable HPOS for WooCommerce sites that don't already have it enabled. + * + * @param array $args Arguments. + * @param array $assoc_args Associated arguments. + */ +function wpcomsh_woa_post_transfer_maybe_enable_woocommerce_hpos( $args, $assoc_args ) { + // This flag is only set for sites with ECOMMERCE_MANAGED_PLUGINS. Sites without this feature are skipped. + $enable_woocommerce_hpos = WP_CLI\Utils\get_flag_value( $assoc_args, 'enable_woocommerce_hpos', false ); + if ( ! $enable_woocommerce_hpos ) { + return; + } + + // Verify WooCommerce is installed and active. + $woocommerce_is_active = is_plugin_active( 'woocommerce/woocommerce.php' ); + + if ( false === $woocommerce_is_active ) { + wpcomsh_woa_post_transfer_maybe_enable_woocommerce_hpos_log( 'WooCommerce not active' ); + return; + } + + // Verify HPOS isn't already enabled + $option_value = get_option( 'woocommerce_custom_orders_table_enabled', false ); + + if ( 'yes' === $option_value ) { + wpcomsh_woa_post_transfer_maybe_enable_woocommerce_hpos_log( 'HPOS is already enabled' ); + return; + } + + // Enable HPOS + $result = WP_CLI::runcommand( + 'wc hpos enable', + array( + 'return' => 'all', + 'launch' => false, + 'exit_error' => false, + ) + ); + if ( 0 !== $result->return_code ) { + wpcomsh_woa_post_transfer_maybe_enable_woocommerce_hpos_log( sprintf( 'Error enabling HPOS: %s', $result->stderr ) ); + return; + } + + wpcomsh_woa_post_transfer_maybe_enable_woocommerce_hpos_log( 'Successfully enabled HPOS' ); +} +add_action( 'wpcomsh_woa_post_transfer', 'wpcomsh_woa_post_transfer_maybe_enable_woocommerce_hpos', 10, 2 ); + /** * Woo Express: Free Trial - deactivate simple site activated plugins. * diff --git a/projects/plugins/wpcomsh/wpcomsh.php b/projects/plugins/wpcomsh/wpcomsh.php index f89f56bae46c1..ef63d292f1129 100644 --- a/projects/plugins/wpcomsh/wpcomsh.php +++ b/projects/plugins/wpcomsh/wpcomsh.php @@ -9,7 +9,6 @@ * @package wpcomsh */ -// Increase version number if you change something in wpcomsh. define( 'WPCOMSH_VERSION', '3.28.0-alpha' ); // If true, Typekit fonts will be available in addition to Google fonts From 602fd04003134a34011a18923fda9ed0f0c2bc3f Mon Sep 17 00:00:00 2001 From: Ian Ramos <5714212+IanRamosC@users.noreply.github.com> Date: Wed, 10 Jul 2024 11:11:26 -0300 Subject: [PATCH 088/254] My Jetpack: fix Stats Learn More link when site is disconnected (#38225) * My Jetpack: Fix Learn More URL for Stats This label will be displayed when the status of the product is NEEDS_FIRST_SITE_CONNECTION. * changelog * Fix project versions * Use primaryActionOverride * Fix project versions --- .../my-jetpack/_inc/components/stats-section/index.jsx | 3 +++ .../changelog/fix-learn-more-url-for-disconnected-stats | 4 ++++ projects/packages/my-jetpack/package.json | 2 +- projects/packages/my-jetpack/src/class-initializer.php | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 projects/packages/my-jetpack/changelog/fix-learn-more-url-for-disconnected-stats diff --git a/projects/packages/my-jetpack/_inc/components/stats-section/index.jsx b/projects/packages/my-jetpack/_inc/components/stats-section/index.jsx index c1878ba1cfcbe..e052803493044 100644 --- a/projects/packages/my-jetpack/_inc/components/stats-section/index.jsx +++ b/projects/packages/my-jetpack/_inc/components/stats-section/index.jsx @@ -56,6 +56,9 @@ const StatsSection = () => { [ PRODUCT_STATUSES.ERROR ]: { label: __( 'Connect Jetpack to use Stats', 'jetpack-my-jetpack' ), }, + [ PRODUCT_STATUSES.NEEDS_FIRST_SITE_CONNECTION ]: { + href: `#/add-${ slug }`, + }, }; return ( diff --git a/projects/packages/my-jetpack/changelog/fix-learn-more-url-for-disconnected-stats b/projects/packages/my-jetpack/changelog/fix-learn-more-url-for-disconnected-stats new file mode 100644 index 0000000000000..3102ae8ae5013 --- /dev/null +++ b/projects/packages/my-jetpack/changelog/fix-learn-more-url-for-disconnected-stats @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Fix Learn More link destination when the site was never connected. diff --git a/projects/packages/my-jetpack/package.json b/projects/packages/my-jetpack/package.json index 454ad9985055f..27016098f69a2 100644 --- a/projects/packages/my-jetpack/package.json +++ b/projects/packages/my-jetpack/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-my-jetpack", - "version": "4.27.2", + "version": "4.27.3-alpha", "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/my-jetpack/#readme", "bugs": { diff --git a/projects/packages/my-jetpack/src/class-initializer.php b/projects/packages/my-jetpack/src/class-initializer.php index f1266ff9a8921..1002e122f2669 100644 --- a/projects/packages/my-jetpack/src/class-initializer.php +++ b/projects/packages/my-jetpack/src/class-initializer.php @@ -37,7 +37,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '4.27.2'; + const PACKAGE_VERSION = '4.27.3-alpha'; /** * HTML container ID for the IDC screen on My Jetpack page. From 47efccb6f69f39f47f4d574fd2b4dceae4d751a4 Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Wed, 10 Jul 2024 12:34:56 -0400 Subject: [PATCH 089/254] Enable jetpackedgephpold and jetpackedgenew (#38282) Now that the sites have been renamed, re-enable them in the appropriate scripts. --- .../files/jetpack-staging-sites/k6-shared.js | 10 +++----- .../update-jetpack-staging-sites.sh | 25 +++++++++---------- 2 files changed, 16 insertions(+), 19 deletions(-) diff --git a/.github/files/jetpack-staging-sites/k6-shared.js b/.github/files/jetpack-staging-sites/k6-shared.js index e62eb047c0a6e..91dd714441ed7 100644 --- a/.github/files/jetpack-staging-sites/k6-shared.js +++ b/.github/files/jetpack-staging-sites/k6-shared.js @@ -14,18 +14,16 @@ export const sites = [ note: 'normal site', blog_id: '215379549', }, - /* Comment out pending rename. p1720019588866209-slack-C05Q5HSS013 { - url: 'https://jetpackedgephp74.wpcomstaging.com', - note: 'php 7.4', + url: 'https://jetpackedgephpold.wpcomstaging.com', + note: 'php old', blog_id: '215379848', }, { - url: 'https://jetpackedgephp82.wpcomstaging.com', - note: 'php 8.2', + url: 'https://jetpackedgephpnew.wpcomstaging.com', + note: 'php new', blog_id: '215380000', }, - */ { url: 'https://jetpackedgeecomm.wpcomstaging.com', note: 'ecommerce plan', diff --git a/.github/files/jetpack-staging-sites/update-jetpack-staging-sites.sh b/.github/files/jetpack-staging-sites/update-jetpack-staging-sites.sh index 251f4f38b8e24..933044f606550 100755 --- a/.github/files/jetpack-staging-sites/update-jetpack-staging-sites.sh +++ b/.github/files/jetpack-staging-sites/update-jetpack-staging-sites.sh @@ -18,6 +18,18 @@ SITES='{ "ssh_string": "jetpackedge.wordpress.com@sftp.wp.com", "blog_id": "215379549" }, + "jetpackedgephpold.wpcomstaging.com": { + "url": "https://jetpackedgephpold.wpcomstaging.com/", + "note": "php old", + "ssh_string": "jetpackedgephpold.wordpress.com@sftp.wp.com", + "blog_id": "215379848" + }, + "jetpackedgephpnew.wpcomstaging.com": { + "url": "https://jetpackedgephpnew.wpcomstaging.com/", + "note": "php new", + "ssh_string": "jetpackedgephpnew.wordpress.com@sftp.wp.com", + "blog_id": "215380000" + }, "jetpackedgeecomm.wpcomstaging.com": { "url": "https://jetpackedgeecomm.wpcomstaging.com/", "note": "ecommerce plan", @@ -43,19 +55,6 @@ SITES='{ "blog_id": "215380213" } }' -# Removed from the above pending a rename. p1720019588866209-slack-C05Q5HSS013 -# "jetpackedgephp74.wpcomstaging.com": { -# "url": "https://jetpackedgephp74.wpcomstaging.com/", -# "note": "php 7.4", -# "ssh_string": "jetpackedgephp74.wordpress.com@sftp.wp.com", -# "blog_id": "215379848" -# }, -# "jetpackedgephp82.wpcomstaging.com": { -# "url": "https://jetpackedgephp82.wpcomstaging.com/", -# "note": "php 8.2", -# "ssh_string": "jetpackedgephp82.wordpress.com@sftp.wp.com", -# "blog_id": "215380000" -# }, #################################################### ## Fetch plugin data from the Jetpack Beta Builder. From 45cc515947b354cd79f39206eb2290374c5ad0cd Mon Sep 17 00:00:00 2001 From: Renato Augusto Gama dos Santos Date: Wed, 10 Jul 2024 14:37:14 -0300 Subject: [PATCH 090/254] AI Proofread: General toggle and highlights improvements (#38280) * AI Proofread: Add toggle initial * AI Proofread: Refactor to use better APIs * AI Proofread: Update toggle functionality * changelog * AI Proofread: Update complex-words regex --- .../changelog/add-proofread-highlights-toggle | 4 ++ .../ai-assistant-plugin-sidebar/index.tsx | 19 +++-- .../breve/features/complex-words/index.ts | 2 +- .../components/breve/features/events.ts | 16 +++-- .../components/breve/highlight/highlight.ts | 4 +- .../components/breve/highlight/index.tsx | 71 +++++++++++-------- .../components/breve/store/actions.ts | 62 +++------------- .../components/breve/store/reducer.ts | 50 ++++++------- .../components/breve/store/selectors.ts | 4 +- 9 files changed, 104 insertions(+), 128 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/add-proofread-highlights-toggle diff --git a/projects/plugins/jetpack/changelog/add-proofread-highlights-toggle b/projects/plugins/jetpack/changelog/add-proofread-highlights-toggle new file mode 100644 index 0000000000000..5e572021e3a1b --- /dev/null +++ b/projects/plugins/jetpack/changelog/add-proofread-highlights-toggle @@ -0,0 +1,4 @@ +Significance: minor +Type: other + +Integrate AI Proofread toggle with code diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-assistant-plugin-sidebar/index.tsx b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-assistant-plugin-sidebar/index.tsx index 332080fbcb48e..bd9b569567d69 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-assistant-plugin-sidebar/index.tsx +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-assistant-plugin-sidebar/index.tsx @@ -5,10 +5,9 @@ import { JetpackEditorPanelLogo } from '@automattic/jetpack-shared-extension-uti import { useAnalytics } from '@automattic/jetpack-shared-extension-utils'; import { PanelBody, PanelRow, BaseControl, ToggleControl } from '@wordpress/components'; import { store as coreStore } from '@wordpress/core-data'; -import { useSelect } from '@wordpress/data'; +import { useDispatch, useSelect } from '@wordpress/data'; import { PluginPrePublishPanel, PluginDocumentSettingPanel } from '@wordpress/edit-post'; import { store as editorStore } from '@wordpress/editor'; -import { useState } from '@wordpress/element'; import { __ } from '@wordpress/i18n'; import debugFactory from 'debug'; import React from 'react'; @@ -56,19 +55,25 @@ const JetpackAndSettingsContent = ( { requireUpgrade, upgradeType, }: JetpackSettingsContentProps ) => { - const { checkoutUrl } = useAICheckout(); const isBreveAvailable = getFeatureAvailability( 'ai-proofread-breve' ); - const [ isHighlighting, setIsHighlighting ] = useState( true ); + const { checkoutUrl } = useAICheckout(); + const { toggleProofread } = useDispatch( 'jetpack/ai-breve' ); + + const isProofreadEnabled = useSelect( + // eslint-disable-next-line @typescript-eslint/no-explicit-any + select => ( select( 'jetpack/ai-breve' ) as any ).isProofreadEnabled(), + [] + ); const handleAiFeedbackToggle = () => { - setIsHighlighting( current => ! current ); + toggleProofread(); }; const aiFeedbackLabel = (
    { __( 'AI feedback', 'jetpack' ) } { isBreveAvailable && ( - + ) }
    ); @@ -77,7 +82,7 @@ const JetpackAndSettingsContent = ( { <> - { isBreveAvailable && } + { isBreveAvailable && } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts index 3af68a27a0514..78fd62180afdb 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts @@ -13,7 +13,7 @@ export const COMPLEX_WORDS = { export default function complexWords( text ) { const list = new RegExp( - `(${ Object.keys( phrases ).map( escapeRegExp ).join( '|' ) })\\b`, + `\\b(${ Object.keys( phrases ).map( escapeRegExp ).join( '|' ) })\\b`, 'gi' ); diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts index 140cc731fc723..9239f59772d39 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts @@ -30,15 +30,17 @@ function handleMouseLeave( e ) { export default function registerEvents( clientId: string ) { const { foundContainer: container } = getContainer(); const id = `block-${ clientId }`; - const block = container?.querySelector( `#${ id }` ); + const block = container?.querySelector?.( `#${ id }` ); features.forEach( ( { config } ) => { const items = block?.querySelectorAll?.( `[data-type='${ config.name }']` ); - items.forEach( highlightEl => { - highlightEl?.removeEventListener?.( 'mouseenter', handleMouseEnter ); - highlightEl?.addEventListener?.( 'mouseenter', handleMouseEnter ); - highlightEl?.removeEventListener?.( 'mouseleave', handleMouseLeave ); - highlightEl?.addEventListener?.( 'mouseleave', handleMouseLeave ); - } ); + if ( items?.length > 0 ) { + items.forEach( highlightEl => { + highlightEl?.removeEventListener?.( 'mouseenter', handleMouseEnter ); + highlightEl?.addEventListener?.( 'mouseenter', handleMouseEnter ); + highlightEl?.removeEventListener?.( 'mouseleave', handleMouseLeave ); + highlightEl?.addEventListener?.( 'mouseleave', handleMouseLeave ); + } ); + } } ); } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts index ad0b571bebeb1..1a57a16ff34d1 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts @@ -5,9 +5,9 @@ import { applyFormat } from '@wordpress/rich-text'; /** * Types */ -import type { RichTextFormat } from '@wordpress/rich-text/build-types/types'; +import type { RichTextFormat, RichTextValue } from '@wordpress/rich-text/build-types/types'; -const applyHighlightFormat = ( { content, type, indexes, attributes = {} } ) => { +const applyHighlightFormat = ( { content, type, indexes, attributes = {} } ): RichTextValue => { let newContent = content; if ( indexes.length > 0 ) { diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx index 530e324e2f9c7..8c3f707bbf617 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx @@ -2,26 +2,19 @@ * External dependencies */ import { Popover } from '@wordpress/components'; -import { useDispatch, useSelect } from '@wordpress/data'; -import { useLayoutEffect, useRef } from '@wordpress/element'; -import { registerFormatType } from '@wordpress/rich-text'; +import { select as globalSelect, useDispatch, useSelect } from '@wordpress/data'; +import { registerFormatType, removeFormat, RichTextValue } from '@wordpress/rich-text'; /** * Internal dependencies */ -import BREVE_FEATURES from '../features'; +import features from '../features'; +import registerEvents from '../features/events'; +import highlight from './highlight'; import './style.scss'; // Setup the Breve highlights export default function Highlight() { - const debounce = useRef( null ); - const { setBlockContent } = useDispatch( 'jetpack/ai-breve' ); - - const postContent = useSelect( select => { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - const all = ( select( 'core/block-editor' ) as any ).getBlocks(); - const richValues = all.filter( block => block.name === 'core/paragraph' ); - return richValues; - }, [] ); + const { setPopoverHover } = useDispatch( 'jetpack/ai-breve' ); const popoverOpen = useSelect( select => { // eslint-disable-next-line @typescript-eslint/no-explicit-any @@ -38,8 +31,6 @@ export default function Highlight() { const isPopoverOpen = popoverOpen && anchor; - const { setPopoverHover } = useDispatch( 'jetpack/ai-breve' ); - const handleMouseEnter = () => { setPopoverHover( true ); }; @@ -48,18 +39,6 @@ export default function Highlight() { setPopoverHover( false ); }; - useLayoutEffect( () => { - if ( postContent?.length > 0 ) { - // Debounce the block content update - clearTimeout( debounce.current ); - debounce.current = setTimeout( () => { - postContent.forEach( block => { - setBlockContent( block?.clientId ); - } ); - }, 1000 ); - } - }, [ postContent, setBlockContent ] ); - return ( <> { isPopoverOpen && ( @@ -82,8 +61,40 @@ export default function Highlight() { } export function registerBreveHighlights() { - BREVE_FEATURES.forEach( ( { config } ) => { - const { name, ...settings } = config; - registerFormatType( `jetpack/ai-proofread-${ name }`, settings as never ); + features.forEach( ( { config, highlight: featureHighlight } ) => { + const { name, ...configSettings } = config; + const settings = { + ...configSettings, + __experimentalGetPropsForEditableTreePreparation() { + return { + isProofreadEnabled: globalSelect( 'jetpack/ai-breve' ).isProofreadEnabled(), + }; + }, + __experimentalCreatePrepareEditableTree( { isProofreadEnabled }, { blockClientId } ) { + return ( formats, text ) => { + const record = { formats, text } as RichTextValue; + const type = `jetpack/ai-proofread-${ config.name }`; + + if ( text && isProofreadEnabled ) { + const applied = highlight( { + content: record, + type, + indexes: featureHighlight( record.text ), + attributes: { 'data-type': config.name }, + } ); + + setTimeout( () => { + registerEvents( blockClientId ); + }, 100 ); + + return applied.formats; + } + + return removeFormat( record, type, 0, record.text.length ).formats; + }; + }, + } as never; + + registerFormatType( `jetpack/ai-proofread-${ name }`, settings ); } ); } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts index fdb1c5ae1eb21..633d3f1be8b3d 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts @@ -1,10 +1,9 @@ /** - * Internal dependencies + * External dependencies */ -import { create, getTextContent, toHTMLString } from '@wordpress/rich-text'; -import features from '../features'; -import registerEvents from '../features/events'; -import highlight from '../highlight/highlight'; +import { select } from '@wordpress/data'; + +// ACTIONS export function setHighlightHover( isHover ) { return { @@ -27,53 +26,12 @@ export function setPopoverAnchor( anchor ) { }; } -export function setBlockContent( clientId ) { - return ( { registry: { select, dispatch: dispatchFromRegistry }, dispatch } ) => { - const block = select( 'core/block-editor' ).getBlock( clientId ); - const blocks = select( 'jetpack/ai-breve' ).getBlocksContent(); - const blockIndex = blocks.findIndex( b => b.clientId === clientId ); - const savedText = blocks[ blockIndex ]?.text ?? ''; - - const currentContent = - typeof block.attributes.content === 'string' - ? create( { html: block.attributes.content } ) - : create( block.attributes.content ); - - const currentText = getTextContent( currentContent ); - const changed = currentText !== savedText; - - if ( changed && currentText ) { - const newContent = features.reduce( - ( acc, feature ) => { - return highlight( { - content: acc, - indexes: feature.highlight( getTextContent( acc ) ), - type: `jetpack/ai-proofread-${ feature.config.name }`, - attributes: { 'data-type': feature.config.name }, - } ); - }, - // We started with a fresh text - create( { text: currentText } ) - ); +export function toggleProofread( force?: boolean ) { + const current = select( 'jetpack/ai-breve' ).isProofreadEnabled(); + const enabled = force === undefined ? ! current : force; - if ( newContent ) { - const updateBlockAttributes = - dispatchFromRegistry( 'core/block-editor' ).updateBlockAttributes; - - updateBlockAttributes( clientId, { content: toHTMLString( { value: newContent } ) } ); - - // We need to wait for the highlights to be applied before we can attach events - setTimeout( () => { - registerEvents( clientId ); - }, 2000 ); - - dispatch( { - type: 'SET_BLOCK_TEXT', - clientId: block.clientId, - text: currentText, - index: blockIndex === -1 ? undefined : blockIndex, - } ); - } - } + return { + type: 'SET_PROOFREAD_ENABLED', + enabled, }; } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts index 53cd71046053a..0a1717100817e 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts @@ -3,6 +3,28 @@ */ import { combineReducers } from '@wordpress/data'; +const enabledFromLocalStorage = window.localStorage.getItem( 'jetpack-ai-proofread-enabled' ); +const initialConfiguration = { + // TODO: Confirm that we will start it as true + enabled: enabledFromLocalStorage === 'true' || enabledFromLocalStorage === null, +}; + +export function configuration( state = initialConfiguration, action ) { + switch ( action.type ) { + case 'SET_PROOFREAD_ENABLED': { + const enabled = action?.enabled !== undefined ? action?.enabled : ! state?.enabled; + window.localStorage.setItem( 'jetpack-ai-proofread-enabled', String( enabled ) ); + + return { + ...state, + enabled, + }; + } + } + + return state; +} + export function popover( state = {}, action ) { switch ( action.type ) { case 'SET_HIGHLIGHT_HOVER': @@ -27,30 +49,4 @@ export function popover( state = {}, action ) { return state; } -export function content( state = [], action ) { - switch ( action.type ) { - case 'SET_BLOCK_TEXT': { - const clientId = action.clientId; - const blockText = action.text; - const idx = action.index; - - if ( idx > -1 ) { - const newState = [ ...state ]; - newState[ idx ].text = blockText; - return newState; - } - - return [ - ...state, - { - clientId, - text: blockText, - }, - ]; - } - } - - return state; -} - -export default combineReducers( { popover, content } ); +export default combineReducers( { popover, configuration } ); diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts index 94ead955500f8..7c663aa676293 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts @@ -10,6 +10,6 @@ export function getPopoverAnchor( state ) { return state.popover.anchor; } -export function getBlocksContent( state ) { - return state.content; +export function isProofreadEnabled( state ) { + return state.configuration.enabled; } From b10c682ea46936ac6139e219912ef2b8b0e102e4 Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Wed, 10 Jul 2024 14:11:23 -0400 Subject: [PATCH 091/254] jetpack-mu-wpcom: Stabilize build (#38284) PR #38093 added downloading of translation data into the build for the package, and decided to store the current date in each file meaning that every file changes for every single build. This clutters up the history of the mirror repo, making it hard to see what the actual changes are since every trunk commit has these useless date changes. We can improve the situation somewhat by saving the HTTP Last-Modified date into the files instead of the current date, so they should only be updated when the translations actually change. We'll still get updates attributed to whichever unrelated trunk commit happened to be the next after a change on the translation server, but at least we won't get it for every single commit. Even better, IMO, would be if the translations could be downloaded to sites as needed like WordPress does with translations for plugins installed from wporg. But that would probably require a lot more refactoring. --- .../jetpack-mu-wpcom/bin/download-help-center-languages.js | 4 +++- .../changelog/fix-constant-changes-for-help-center-languages | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/fix-constant-changes-for-help-center-languages diff --git a/projects/packages/jetpack-mu-wpcom/bin/download-help-center-languages.js b/projects/packages/jetpack-mu-wpcom/bin/download-help-center-languages.js index 8f80edf8cd3e1..b3010a3d34a61 100644 --- a/projects/packages/jetpack-mu-wpcom/bin/download-help-center-languages.js +++ b/projects/packages/jetpack-mu-wpcom/bin/download-help-center-languages.js @@ -49,8 +49,10 @@ const path = require( 'path' ); dataParsed[ '' ][ 'plural-forms' ] = dataParsed[ '' ].plural_forms; dataParsed[ '' ].lang = dataParsed[ '' ].language; + const date = new Date( response.headers[ 'last-modified' ] ); + const JED = { - 'translation-revision-date': new Date().toISOString(), + 'translation-revision-date': date.toISOString(), generator: 'Jetpack', domain: 'jetpack-mu-wpcom', locale_data: { diff --git a/projects/packages/jetpack-mu-wpcom/changelog/fix-constant-changes-for-help-center-languages b/projects/packages/jetpack-mu-wpcom/changelog/fix-constant-changes-for-help-center-languages new file mode 100644 index 0000000000000..492d12b13dae5 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/fix-constant-changes-for-help-center-languages @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Help Center: Save Last-Modified date in downloaded language files instead of the current date. From 2b491c7bd23e61d49f987b963376e56ad1f5d12b Mon Sep 17 00:00:00 2001 From: Douglas Henri Date: Wed, 10 Jul 2024 15:53:37 -0300 Subject: [PATCH 092/254] AI Assistant: Fix blocks content definition (#38270) * fix blocks text content definition * changelog --- .../changelog/update-jetpack-ai-breve-content | 4 +++ .../components/breve/controls.js | 7 ++--- .../components/breve/utils/getPostText.ts | 31 +++++++++++++++++++ 3 files changed, 37 insertions(+), 5 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/update-jetpack-ai-breve-content create mode 100644 projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getPostText.ts diff --git a/projects/plugins/jetpack/changelog/update-jetpack-ai-breve-content b/projects/plugins/jetpack/changelog/update-jetpack-ai-breve-content new file mode 100644 index 0000000000000..eddefa84879bc --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-jetpack-ai-breve-content @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +AI Assistant: Fix blocks content definition diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js index 9ec0be17f44a3..a62bce747a010 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js @@ -1,7 +1,6 @@ /** * WordPress dependencies */ -import { getBlockContent } from '@wordpress/blocks'; import { BaseControl, PanelRow, SVG, Path } from '@wordpress/components'; import { compose, useDebounce } from '@wordpress/compose'; import { withSelect } from '@wordpress/data'; @@ -17,6 +16,7 @@ import useAiFeature from '../../../../blocks/ai-assistant/hooks/use-ai-feature'; import config from './dictionaries/dictionaries-config'; import calculateFleschKincaid from './utils/FleschKincaidUtils'; import './breve.scss'; +import { getPostText } from './utils/getPostText'; export const useInit = init => { const [ initialized, setInitialized ] = useState( false ); @@ -59,10 +59,7 @@ const Controls = ( { blocks, active } ) => { } // Get the text content from all blocks and inner blocks. - const allText = blocks - .map( block => getBlockContent( block ) ) - .join( '' ) - .replace( /<[^>]*>?/gm, ' ' ); + const allText = getPostText( blocks ); const computedGradeLevel = calculateFleschKincaid( allText ); diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getPostText.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getPostText.ts new file mode 100644 index 0000000000000..3eea562b99297 --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getPostText.ts @@ -0,0 +1,31 @@ +/* + * External dependencies + */ +import * as Blocks from '@wordpress/blocks'; +/* + * Types + */ +import type { Block } from '@automattic/jetpack-ai-client'; + +const { getBlockContent } = Blocks as unknown as { + getBlockContent: ( block: Block ) => string; +}; + +export function getHtmlText( html: string ): string { + const doc = document.implementation.createHTMLDocument( '' ); + doc.body.innerHTML = html; + + // Prevent table cells from merging into one long word + doc.body.querySelectorAll( 'td, th' ).forEach( node => { + node.innerHTML = ` ${ node.innerHTML }`; + } ); + + // innerText returns rendered text, excluding hidden content + return doc.body.innerText; +} + +export function getPostText( blocks: Array< Block > ): string { + const html = blocks.map( block => getBlockContent( block ) ).join( '' ); + + return getHtmlText( html ); +} From f8917d4beb862bf22b6c5307fee4169f4d5cee97 Mon Sep 17 00:00:00 2001 From: Renato Augusto Gama dos Santos Date: Wed, 10 Jul 2024 16:19:04 -0300 Subject: [PATCH 093/254] AI Proofread: Toggle feature and list features from configuration (#38286) * AI Proofread: Add toggle initial * AI Proofread: Refactor to use better APIs * AI Proofread: Update toggle functionality * changelog * AI Proofread: Update complex-words regex * AI Proofread: Update features colors handling * AI Proofread: Toggle specific feature and update colors * changelog --- .../changelog/add-proofread-features-toggle | 4 + .../ai-assistant-plugin-sidebar/style.scss | 3 + .../components/breve/breve.scss | 296 +----------------- .../components/breve/controls.js | 89 ++---- .../breve/features/_features.colors.scss | 20 ++ .../breve/features/complex-words/index.ts | 2 +- .../components/breve/highlight/index.tsx | 8 +- .../components/breve/highlight/style.scss | 32 +- .../components/breve/store/actions.ts | 10 + .../components/breve/store/reducer.ts | 29 ++ .../components/breve/store/selectors.ts | 12 + 11 files changed, 142 insertions(+), 363 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/add-proofread-features-toggle create mode 100644 projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/_features.colors.scss diff --git a/projects/plugins/jetpack/changelog/add-proofread-features-toggle b/projects/plugins/jetpack/changelog/add-proofread-features-toggle new file mode 100644 index 0000000000000..ede7dd1244b34 --- /dev/null +++ b/projects/plugins/jetpack/changelog/add-proofread-features-toggle @@ -0,0 +1,4 @@ +Significance: minor +Type: other + +Toggle specific feature on AI Proofread diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-assistant-plugin-sidebar/style.scss b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-assistant-plugin-sidebar/style.scss index cdb2daea57baf..7a5d4528c85f0 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-assistant-plugin-sidebar/style.scss +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-assistant-plugin-sidebar/style.scss @@ -7,4 +7,7 @@ .jetpack-ai-feedback__label { display: flex; gap: 16px; + .components-toggle-control { + margin-bottom: 8px; + } } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/breve.scss b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/breve.scss index ec024f1ea1166..7b872fadb1649 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/breve.scss +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/breve.scss @@ -1,291 +1,11 @@ -:root { - --color-phrase: rgba(251, 192, 45, 1); /* Darker yellow for border */ - --color-phrase-bg: rgba(251, 192, 45, 0.1); /* Yellow for background */ - --color-phrase-gradient: rgba( - 251, - 192, - 45, - 0.4 - ); /* Lighter yellow for gradient */ - --color-weasel: rgba(255, 140, 0, 1); /* Darker orange for border */ - --color-weasel-bg: rgba(255, 140, 0, 0.1); /* Orange for background */ - --color-weasel-gradient: rgba( - 255, - 140, - 0, - 0.4 - ); /* Lighter orange for gradient */ - --color-adjective: rgba(186, 85, 211, 1); /* Darker pink for border */ - --color-adjective-bg: rgba(186, 85, 211, 0.1); /* Pink for background */ - --color-adjective-gradient: rgba( - 186, - 85, - 211, - 0.4 - ); /* Lighter pink for gradient */ - --color-adverb: rgba(30, 144, 255, 1); /* Darker blue for border */ - --color-adverb-bg: rgba(30, 144, 255, 0.1); /* Blue for background */ - --color-adverb-gradient: rgba( - 30, - 144, - 255, - 0.4 - ); /* Lighter blue for gradient */ - --color-long-sentence: rgba(32, 178, 170, 1); /* Darker teal for border */ - --color-long-sentence-bg: rgba(32, 178, 170, 0.1); /* Teal for background */ - --color-long-sentence-gradient: rgba( - 32, - 178, - 170, - 0.4 - ); /* Lighter teal for gradient */ +@import './features/features.colors'; - - --tooltip-bg: rgba(30, 30, 30, 1); - --tooltip-color: #fff; -} - -.breve-help-text { - color: rgb(117, 117, 117); -} - -#breve-highlights { - position: relative; -} - -.highlight-container { - left: 0; - pointer-events: none; - position: relative; - top: 0; -} - -.highlight-overlay { - background-color: rgba(255, 0, 0, .01); - box-sizing: border-box; - cursor: text; - height: 100%; - pointer-events: auto; - position: absolute; - transition-delay: .15s; - transition: background-color .15s; - width: 100%; -} - -.highlight-overlay.isEditingText { - pointer-events: none; -} - -.highlight-popover { - color: black; - cursor: default; - font-size: 13px; - font-style: normal; - font-weight: 400; - line-height: 18px; - padding: 8px; - width: auto; -} - -.highlight-popover div.components-popover__content { - align-items: center; - column-gap: 12px; - display: flex; - padding: 16px; - white-space: nowrap; -} - -.highlight-popover button{ - box-shadow:none !important; // Fixing a strange left border -} - -.highlight-overlay.phrase { - border-bottom: 2px solid var(--color-phrase); - z-index: 5; -} - -.highlight-overlay.isHovering.phrase { - pointer-events: auto; -} - -.highlight-overlay.weasel { - border-bottom: 2px solid var(--color-weasel); - z-index: 4; -} - -.highlight-overlay.adjective { - border-bottom: 2px solid var(--color-adjective); - z-index: 3; -} - -.highlight-overlay.adverb { - border-bottom: 2px solid var(--color-adverb); - z-index: 2; -} - -.highlight-overlay.long-sentence { - border-bottom: 2px solid var(--color-long-sentence); - z-index: 1; -} - -.highlight-overlay.isProcessing { - animation: gradientAnimation 01s ease infinite; - cursor: wait; -} - -@keyframes gradientAnimation { - 0% { - background-position: 0% 50%; - } - 50% { - background-position: 100% 50%; - } - 100% { - background-position: 0% 50%; - } -} - -.highlight-overlay.phrase.isProcessing { - background: linear-gradient( - 270deg, - var(--color-phrase-bg), - var(--color-phrase-gradient) - ); - background-size: 400% 400%; - animation: gradientAnimation 01s ease infinite; - cursor: wait; - -} - -.highlight-overlay.weasel.isProcessing { - background: linear-gradient( - 270deg, - var(--color-weasel-bg), - var(--color-weasel-gradient) - ); - background-size: 400% 400%; - animation: gradientAnimation 01s ease infinite; - cursor: wait; -} - -.highlight-overlay.adjective.isProcessing { - background: linear-gradient( - 270deg, - var(--color-adjective-bg), - var(--color-adjective-gradient) - ); - background-size: 400% 400%; - animation: gradientAnimation 01s ease infinite; - cursor: wait; -} - -.highlight-overlay.adverb.isProcessing { - background: linear-gradient( - 270deg, - var(--color-adverb-bg), - var(--color-adverb-gradient) - ); - background-size: 400% 400%; - animation: gradientAnimation 01s ease infinite; - cursor: wait; -} - -.highlight-overlay.long-sentence.isProcessing { - background: linear-gradient( - 270deg, - var(--color-long-sentence-bg), - var(--color-long-sentence-gradient) - ); - background-size: 400% 400%; - animation: gradientAnimation 01s ease infinite; - cursor: wait; -} - -.key-row { +.jetpack-ai-proofread { margin-bottom: 16px; - cursor: pointer; - display: flex; - gap: 4px; -} - -.key-row .key { - width: 16px; - height: 16px; - border-radius: 3px; - display: inline-block; - margin-right: 4px; - position: relative; - top: 1px; - background-size: 12px 12px; /* Ensures the checkmark fits within the key */ - background-repeat: no-repeat; - background-position: center; - background-size: 90%; - background-position: center center; -} - -.key.phrase { - border: 2px solid var(--color-phrase); -} - -.key-row.enabled .key.phrase { - background-color: var(--color-phrase); - background-image: url("check.svg"); /* Ensure the path to the check.svg is correct */ -} - -.key.weasel { - border: 2px solid var(--color-weasel); -} - -.key-row.enabled .key.weasel { - background-color: var(--color-weasel); - background-image: url("check.svg"); /* Ensure the path to the check.svg is correct */ -} - -.key.adverb { - border: 2px solid var(--color-adverb); -} - -.key-row.enabled .key.adverb { - background-color: var(--color-adverb); - background-image: url("check.svg"); /* Ensure the path to the check.svg is correct */ -} - -.key.adjective { - border: 2px solid var(--color-adjective); -} - -.key-row.enabled .key.adjective { - background-color: var(--color-adjective); - background-image: url("check.svg"); /* Ensure the path to the check.svg is correct */ -} - -.key.long-sentence { - border: 2px solid var(--color-long-sentence); -} - -.key-row.enabled .key.long-sentence { - background-color: var(--color-long-sentence); - background-image: url("check.svg"); /* Ensure the path to the check.svg is correct */ -} - -.key-row .desc { - flex: 1; - font-size: 12px; - font-style: normal; - color: rgb(117, 117, 117); -} - -.grade-level-container { - display: flex; - flex-direction: row; - align-items: flex-start; -} - -.grade-level-container p { - margin-bottom: 0; -} - -.grade-level-container svg { - position: relative; - top: 2px; + .components-checkbox-control__input { + @include features-colors( ( 'border-color' ) ); + &:checked { + @include features-colors( ( 'background-color' ) ); + } + } } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js index a62bce747a010..63f5a79962f04 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js @@ -1,19 +1,17 @@ /** * WordPress dependencies */ -import { BaseControl, PanelRow, SVG, Path } from '@wordpress/components'; +import { BaseControl, PanelRow, SVG, Path, CheckboxControl } from '@wordpress/components'; import { compose, useDebounce } from '@wordpress/compose'; -import { withSelect } from '@wordpress/data'; -import { applyFilters } from '@wordpress/hooks'; +import { useDispatch, withSelect } from '@wordpress/data'; /** * External dependencies */ -import React, { useState, useEffect, useCallback, useMemo } from 'react'; +import React, { useState, useEffect, useCallback } from 'react'; /** * Internal dependencies */ -import useAiFeature from '../../../../blocks/ai-assistant/hooks/use-ai-feature'; -import config from './dictionaries/dictionaries-config'; +import features from './features'; import calculateFleschKincaid from './utils/FleschKincaidUtils'; import './breve.scss'; import { getPostText } from './utils/getPostText'; @@ -27,31 +25,10 @@ export const useInit = init => { } }; -const Controls = ( { blocks, active } ) => { - // Allow defaults to be customized, but memoise the result so we're not computing things multiple times. - const { initialAiOn } = useMemo( () => { - return applyFilters( 'breve-sidebar-defaults', { - initialAiOn: true, - } ); - }, [] ); - - // Jetpack AI Assistant feature functions. - const { requireUpgrade } = useAiFeature(); +const Controls = ( { blocks, active, disabledFeatures } ) => { const isHighlighting = active; - - // eslint-disable-next-line no-unused-vars - const [ isAIOn, setIsAIOn ] = useState( initialAiOn ); const [ gradeLevel, setGradeLevel ] = useState( null ); - // eslint-disable-next-line no-unused-vars - const [ debouncedContentChangeFlag, setDebouncedContentChangeFlag ] = useState( false ); - - const [ toggledKeys, setToggledKeys ] = useState( () => { - const initialState = {}; - Object.keys( config.dictionaries ).forEach( key => { - initialState[ key ] = true; - } ); - return initialState; - } ); + const { toggleFeature } = useDispatch( 'jetpack/ai-breve' ); const updateGradeLevel = useCallback( () => { if ( ! isHighlighting ) { @@ -67,28 +44,17 @@ const Controls = ( { blocks, active } ) => { typeof computedGradeLevel === 'number' ? computedGradeLevel.toFixed( 2 ) : null; setGradeLevel( sanitizedGradeLevel ); - - // Update the content change flag to trigger a re-highlight. - setDebouncedContentChangeFlag( prev => ! prev ); }, [ blocks, isHighlighting ] ); // Calculating the grade level is expensive, so debounce it to avoid recalculating it on every keypress. const debouncedGradeLevelUpdate = useDebounce( updateGradeLevel, 250 ); - const handleKeyToggle = key => { - setToggledKeys( prev => ( { - ...prev, - [ key ]: ! prev[ key ], - } ) ); - }; - - useEffect( () => { - if ( requireUpgrade ) { - setIsAIOn( false ); - } else { - setIsAIOn( true ); - } - }, [ requireUpgrade ] ); + const handleToggleFeature = useCallback( + feature => checked => { + toggleFeature( feature, checked ); + }, + [ toggleFeature ] + ); useEffect( () => { debouncedGradeLevelUpdate(); @@ -98,7 +64,7 @@ const Controls = ( { blocks, active } ) => { useInit( updateGradeLevel ); return ( - <> +
    { - { Object.keys( config.dictionaries ).map( key => ( -
    handleKeyToggle( key ) } - onKeyDown={ event => { - if ( [ 'Enter', ' ' ].includes( event.key ) ) { - handleKeyToggle( key ); - } - } } - role="button" - tabIndex={ 0 } - > -
    -
    - { config.dictionaries[ key ].label } -
    -
    + { features.map( feature => ( + ) ) }
    - +
    ); }; export default compose( withSelect( selectFn => ( { blocks: selectFn( 'core/block-editor' ).getBlocks(), + disabledFeatures: selectFn( 'jetpack/ai-breve' ).getDisabledFeatures(), } ) ) )( Controls ); diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/_features.colors.scss b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/_features.colors.scss new file mode 100644 index 0000000000000..2777184f72968 --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/_features.colors.scss @@ -0,0 +1,20 @@ +@use 'sass:map'; +@use 'sass:string'; + +$features-colors: ( + 'complex-words': rgba( 251, 192, 45, 1 ), +); + +@mixin properties( $feature, $color, $properties ) { + &[data-type='#{$feature}'] { + @each $property in $properties { + #{$property}: $color; + } + } +} + +@mixin features-colors( $properties ) { + @each $feature, $color in $features-colors { + @include properties( $feature, $color, $properties ); + } +} diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts index 78fd62180afdb..b6fed7ce65e15 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts @@ -6,7 +6,7 @@ import phrases from './phrases'; export const COMPLEX_WORDS = { name: 'complex-words', - title: 'Jetpack AI Proofread Complex Words', + title: 'Complex words', tagName: 'span', className: 'has-proofread-highlight', }; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx index 8c3f707bbf617..93c43c53dd10b 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx @@ -68,14 +68,18 @@ export function registerBreveHighlights() { __experimentalGetPropsForEditableTreePreparation() { return { isProofreadEnabled: globalSelect( 'jetpack/ai-breve' ).isProofreadEnabled(), + isFeatureEnabled: globalSelect( 'jetpack/ai-breve' ).isFeatureEnabled( config.name ), }; }, - __experimentalCreatePrepareEditableTree( { isProofreadEnabled }, { blockClientId } ) { + __experimentalCreatePrepareEditableTree( + { isProofreadEnabled, isFeatureEnabled }, + { blockClientId } + ) { return ( formats, text ) => { const record = { formats, text } as RichTextValue; const type = `jetpack/ai-proofread-${ config.name }`; - if ( text && isProofreadEnabled ) { + if ( text && isProofreadEnabled && isFeatureEnabled ) { const applied = highlight( { content: record, type, diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss index 4e9c9c1d728d7..b6623eb8b2301 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss @@ -1,9 +1,29 @@ -:root { - --jetpack-ai-complex-words: rgba( 251, 192, 45, 1 ); /* Darker yellow for border */ -} +@import '../features/features.colors'; + .has-proofread-highlight { border-bottom: 3px solid; - &[data-type='complex-words'] { - border-bottom-color: var( --jetpack-ai-complex-words ); - } + @include features-colors( ( 'border-bottom-color' ) ); +} + +.highlight-popover { + color: black; + cursor: default; + font-size: 13px; + font-style: normal; + font-weight: 400; + line-height: 18px; + padding: 8px; + width: auto; +} + +.highlight-popover div.components-popover__content { + align-items: center; + column-gap: 12px; + display: flex; + padding: 16px; + white-space: nowrap; +} + +.highlight-popover button { + box-shadow: none !important; // Fixing a strange left border } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts index 633d3f1be8b3d..6fbb243757b3a 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts @@ -35,3 +35,13 @@ export function toggleProofread( force?: boolean ) { enabled, }; } + +export function toggleFeature( feature: string, force?: boolean ) { + const current = select( 'jetpack/ai-breve' ).isFeatureEnabled( feature ); + const enabled = force === undefined ? ! current : force; + + return { + type: enabled ? 'ENABLE_FEATURE' : 'DISABLE_FEATURE', + feature, + }; +} diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts index 0a1717100817e..04c6443c654a5 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts @@ -4,9 +4,14 @@ import { combineReducers } from '@wordpress/data'; const enabledFromLocalStorage = window.localStorage.getItem( 'jetpack-ai-proofread-enabled' ); +const disabledFeaturesFromLocalStorage = window.localStorage.getItem( + 'jetpack-ai-proofread-disabled-features' +); const initialConfiguration = { // TODO: Confirm that we will start it as true enabled: enabledFromLocalStorage === 'true' || enabledFromLocalStorage === null, + disabled: + disabledFeaturesFromLocalStorage !== null ? JSON.parse( disabledFeaturesFromLocalStorage ) : [], }; export function configuration( state = initialConfiguration, action ) { @@ -20,6 +25,30 @@ export function configuration( state = initialConfiguration, action ) { enabled, }; } + case 'ENABLE_FEATURE': { + const disabled = state.disabled.filter( feature => feature !== action.feature ); + window.localStorage.setItem( + 'jetpack-ai-proofread-disabled-features', + JSON.stringify( disabled ) + ); + + return { + ...state, + disabled, + }; + } + case 'DISABLE_FEATURE': { + const disabled = [ ...state.disabled, action.feature ]; + window.localStorage.setItem( + 'jetpack-ai-proofread-disabled-features', + JSON.stringify( disabled ) + ); + + return { + ...state, + disabled, + }; + } } return state; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts index 7c663aa676293..4d0df05d84242 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts @@ -1,3 +1,5 @@ +// POPOVER + export function isHighlightHover( state ) { return state.popover.isHighlightHover; } @@ -10,6 +12,16 @@ export function getPopoverAnchor( state ) { return state.popover.anchor; } +// CONFIGURATION + export function isProofreadEnabled( state ) { return state.configuration.enabled; } + +export function isFeatureEnabled( state, feature ) { + return ! state.configuration.disabled.includes( feature ); +} + +export function getDisabledFeatures( state ) { + return state.configuration.disabled; +} From 6aeaff715953423255807367c0c466daf3a8fa6c Mon Sep 17 00:00:00 2001 From: Miguel Lezama Date: Wed, 10 Jul 2024 17:11:01 -0300 Subject: [PATCH 094/254] Newsletters: Enhance Subscription Modal Display Logic (#38079) --- .../update-subscribe-modal-behaviour | 4 ++ .../class-jetpack-subscribe-modal.php | 26 +++++++++++-- .../subscribe-modal/subscribe-modal.js | 37 ++++++++++++++----- 3 files changed, 54 insertions(+), 13 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/update-subscribe-modal-behaviour diff --git a/projects/plugins/jetpack/changelog/update-subscribe-modal-behaviour b/projects/plugins/jetpack/changelog/update-subscribe-modal-behaviour new file mode 100644 index 0000000000000..bf64fb0e25106 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-subscribe-modal-behaviour @@ -0,0 +1,4 @@ +Significance: minor +Type: enhancement + +Implemented a more dynamic approach to displaying the subscription modal diff --git a/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/class-jetpack-subscribe-modal.php b/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/class-jetpack-subscribe-modal.php index aa5d1febb7ee0..638c5c6150eaa 100644 --- a/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/class-jetpack-subscribe-modal.php +++ b/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/class-jetpack-subscribe-modal.php @@ -64,17 +64,35 @@ public function enqueue_assets() { wp_enqueue_script( 'subscribe-modal-js', plugins_url( 'subscribe-modal.js', __FILE__ ), array( 'wp-dom-ready' ), JETPACK__VERSION, true ); /** - * Filter how many milliseconds a user must scroll for until the Subscribe Modal appears. + * Filter how many milliseconds until the Subscribe Modal appears. * * @module subscriptions * * @since 13.4 * - * @param int 300 Time in milliseconds for the Subscribe Modal to appear upon scrolling. + * @param int 60000 Time in milliseconds for the Subscribe Modal to appear. */ - $load_time = absint( apply_filters( 'jetpack_subscribe_modal_load_time', 300 ) ); + $load_time = absint( apply_filters( 'jetpack_subscribe_modal_load_time', 60000 ) ); - wp_localize_script( 'subscribe-modal-js', 'Jetpack_Subscriptions', array( 'modalLoadTime' => $load_time ) ); + /** + * Filter how many percentage of the page should be scrolled before the Subscribe Modal appears. + * + * @module subscriptions + * + * @since 13.6 + * + * @param int Percentage of the page scrolled before the Subscribe Modal appears. + */ + $scroll_threshold = absint( apply_filters( 'jetpack_subscribe_modal_scroll_threshold', 50 ) ); + + wp_localize_script( + 'subscribe-modal-js', + 'Jetpack_Subscriptions', + array( + 'modalLoadTime' => $load_time, + 'modalScrollThreshold' => $scroll_threshold, + ) + ); } } diff --git a/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/subscribe-modal.js b/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/subscribe-modal.js index 3dca3a92b7830..f363afba5e862 100644 --- a/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/subscribe-modal.js +++ b/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/subscribe-modal.js @@ -12,17 +12,35 @@ domReady( function () { } let hasLoaded = false; - let isScrolling; + const targetElement = ( + document.querySelector( '.entry-content' ) || document.documentElement + ).getBoundingClientRect(); - window.onscroll = function () { - window.clearTimeout( isScrolling ); + function hasPassedScrollThreshold() { + const scrollPosition = window.scrollY + window.innerHeight / 2; + const scrollPositionThreshold = + targetElement.top + + ( targetElement.height * Jetpack_Subscriptions.modalScrollThreshold ) / 100; + return scrollPosition > scrollPositionThreshold; + } - isScrolling = setTimeout( function () { - if ( ! hasLoaded ) { - openModal(); - } - }, Jetpack_Subscriptions.modalLoadTime ); - }; + function onScroll() { + if ( ! hasLoaded ) { + requestAnimationFrame( () => { + if ( hasPassedScrollThreshold() ) { + openModal(); + } + } ); + } + } + + window.addEventListener( 'scroll', onScroll, { passive: true } ); + + setTimeout( () => { + if ( ! hasLoaded ) { + openModal(); + } + }, Jetpack_Subscriptions.modalLoadTime ); // When the form is submitted, and next modal loads, it'll fire "subscription-modal-loaded" signalling that this form can be hidden. const form = modal.querySelector( 'form' ); @@ -57,6 +75,7 @@ domReady( function () { hasLoaded = true; setModalDismissedCookie(); window.addEventListener( 'keydown', closeModalOnEscapeKeydown ); + window.removeEventListener( 'scroll', onScroll ); } function closeModal() { From 78f438c0c2ae4ff4cff288cc84aa45fffb7a088d Mon Sep 17 00:00:00 2001 From: Calypso Bot Date: Wed, 10 Jul 2024 15:25:14 -0500 Subject: [PATCH 095/254] Update dependency rollup-plugin-svelte to v7.2.2 (#38287) Co-authored-by: Renovate Bot --- pnpm-lock.yaml | 32 +++++++++++-------- .../renovate-rollup-plugin-svelte-7.x | 4 +++ projects/js-packages/image-guide/package.json | 4 +-- .../renovate-rollup-plugin-svelte-7.x | 4 +++ projects/plugins/inspect/package.json | 2 +- 5 files changed, 29 insertions(+), 17 deletions(-) create mode 100644 projects/js-packages/image-guide/changelog/renovate-rollup-plugin-svelte-7.x create mode 100644 projects/plugins/inspect/changelog/renovate-rollup-plugin-svelte-7.x diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 73bb415ea4af7..fb51324b0cd77 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -709,8 +709,8 @@ importers: specifier: 4.0.2 version: 4.0.2(postcss@8.4.31) rollup-plugin-svelte: - specifier: 7.1.0 - version: 7.1.0(rollup@2.79.1)(svelte@3.58.0) + specifier: 7.2.2 + version: 7.2.2(rollup@2.79.1)(svelte@3.58.0) rollup-plugin-svelte-svg: specifier: 1.0.0-beta.6 version: 1.0.0-beta.6(svelte@3.58.0) @@ -3578,8 +3578,8 @@ importers: specifier: 4.0.2 version: 4.0.2(postcss@8.4.31) rollup-plugin-svelte: - specifier: 7.1.0 - version: 7.1.0(rollup@2.79.1)(svelte@3.58.0) + specifier: 7.2.2 + version: 7.2.2(rollup@2.79.1)(svelte@3.58.0) sass: specifier: 1.64.1 version: 1.64.1 @@ -6613,6 +6613,10 @@ packages: peerDependencies: rollup: ^1.20.0||^2.0.0 + '@rollup/pluginutils@4.2.1': + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} + '@rollup/pluginutils@5.1.0': resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} engines: {node: '>=14.0.0'} @@ -13014,9 +13018,6 @@ packages: require-main-filename@2.0.0: resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} - require-relative@0.8.7: - resolution: {integrity: sha512-AKGr4qvHiryxRb19m3PsLRGuKVAbJLUD7E6eOaHkfKhwc+vSgVOCY5xNvm9EkolBKTOf0GrQAZKLimOCz81Khg==} - requireindex@1.2.0: resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} engines: {node: '>=0.10.5'} @@ -13113,8 +13114,8 @@ packages: peerDependencies: svelte: '*' - rollup-plugin-svelte@7.1.0: - resolution: {integrity: sha512-vopCUq3G+25sKjwF5VilIbiY6KCuMNHP1PFvx2Vr3REBNMDllKHFZN2B9jwwC+MqNc3UPKkjXnceLPEjTjXGXg==} + rollup-plugin-svelte@7.2.2: + resolution: {integrity: sha512-hgnIblTRewaBEVQD6N0Q43o+y6q1TmDRhBjaEzQCi50bs8TXqjc+d1zFZyE8tsfgcfNHZQzclh4RxlFUB85H8Q==} engines: {node: '>=10'} peerDependencies: rollup: '>=2.0.0' @@ -16845,6 +16846,11 @@ snapshots: picomatch: 2.2.3 rollup: 2.79.1 + '@rollup/pluginutils@4.2.1': + dependencies: + estree-walker: 2.0.2 + picomatch: 2.2.3 + '@rollup/pluginutils@5.1.0(rollup@2.79.1)': dependencies: '@types/estree': 1.0.5 @@ -26226,8 +26232,6 @@ snapshots: require-main-filename@2.0.0: {} - require-relative@0.8.7: {} - requireindex@1.2.0: {} requires-port@1.0.0: {} @@ -26329,11 +26333,11 @@ snapshots: svelte: 3.58.0 svgo: 3.3.2 - rollup-plugin-svelte@7.1.0(rollup@2.79.1)(svelte@3.58.0): + rollup-plugin-svelte@7.2.2(rollup@2.79.1)(svelte@3.58.0): dependencies: - require-relative: 0.8.7 + '@rollup/pluginutils': 4.2.1 + resolve.exports: 2.0.2 rollup: 2.79.1 - rollup-pluginutils: 2.8.2 svelte: 3.58.0 rollup-pluginutils@2.8.2: diff --git a/projects/js-packages/image-guide/changelog/renovate-rollup-plugin-svelte-7.x b/projects/js-packages/image-guide/changelog/renovate-rollup-plugin-svelte-7.x new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/image-guide/changelog/renovate-rollup-plugin-svelte-7.x @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/image-guide/package.json b/projects/js-packages/image-guide/package.json index 42ba6396d6624..6c355fe5a11a1 100644 --- a/projects/js-packages/image-guide/package.json +++ b/projects/js-packages/image-guide/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/jetpack-image-guide", - "version": "0.5.10", + "version": "0.5.11-alpha", "description": "Go through the dom to analyze image size on screen vs actual file size.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/image-guide/#readme", "type": "module", @@ -49,7 +49,7 @@ "postcss": "8.4.31", "rollup": "2.79.1", "rollup-plugin-postcss": "4.0.2", - "rollup-plugin-svelte": "7.1.0", + "rollup-plugin-svelte": "7.2.2", "rollup-plugin-svelte-svg": "1.0.0-beta.6", "sass": "1.64.1", "svelte": "3.58.0", diff --git a/projects/plugins/inspect/changelog/renovate-rollup-plugin-svelte-7.x b/projects/plugins/inspect/changelog/renovate-rollup-plugin-svelte-7.x new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/plugins/inspect/changelog/renovate-rollup-plugin-svelte-7.x @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/plugins/inspect/package.json b/projects/plugins/inspect/package.json index ca6c1c8955a37..89e7b39b95e85 100644 --- a/projects/plugins/inspect/package.json +++ b/projects/plugins/inspect/package.json @@ -36,7 +36,7 @@ "rollup": "2.79.1", "rollup-plugin-livereload": "2.0.5", "rollup-plugin-postcss": "4.0.2", - "rollup-plugin-svelte": "7.1.0", + "rollup-plugin-svelte": "7.2.2", "sass": "1.64.1", "svelte": "3.58.0", "svelte-preprocess": "5.0.4", From c3e30bab2a29fd186db9f0ad59de2f1b3b361d1e Mon Sep 17 00:00:00 2001 From: Renato Augusto Gama dos Santos Date: Wed, 10 Jul 2024 19:19:05 -0300 Subject: [PATCH 096/254] AI Proofread: Update sidebar layout (#38289) * AI Proofread: Update sidebar layout * changelog --- .../update-ai-proofread-sidebar-layout | 4 ++ .../ai-assistant-plugin-sidebar/index.tsx | 28 ++--------- .../components/breve/breve.scss | 24 +++++++-- .../components/breve/controls.js | 50 +++++++++++++------ .../components/breve/index.ts | 2 +- .../components/proofread/index.tsx | 16 +++--- 6 files changed, 74 insertions(+), 50 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/update-ai-proofread-sidebar-layout diff --git a/projects/plugins/jetpack/changelog/update-ai-proofread-sidebar-layout b/projects/plugins/jetpack/changelog/update-ai-proofread-sidebar-layout new file mode 100644 index 0000000000000..bb6b0630ee1fd --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-ai-proofread-sidebar-layout @@ -0,0 +1,4 @@ +Significance: minor +Type: other + +Update sidebar layout on Proofread diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-assistant-plugin-sidebar/index.tsx b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-assistant-plugin-sidebar/index.tsx index bd9b569567d69..a2eb4ec29d942 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-assistant-plugin-sidebar/index.tsx +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/ai-assistant-plugin-sidebar/index.tsx @@ -3,9 +3,9 @@ */ import { JetpackEditorPanelLogo } from '@automattic/jetpack-shared-extension-utils'; import { useAnalytics } from '@automattic/jetpack-shared-extension-utils'; -import { PanelBody, PanelRow, BaseControl, ToggleControl } from '@wordpress/components'; +import { PanelBody, PanelRow, BaseControl } from '@wordpress/components'; import { store as coreStore } from '@wordpress/core-data'; -import { useDispatch, useSelect } from '@wordpress/data'; +import { useSelect } from '@wordpress/data'; import { PluginPrePublishPanel, PluginDocumentSettingPanel } from '@wordpress/edit-post'; import { store as editorStore } from '@wordpress/editor'; import { __ } from '@wordpress/i18n'; @@ -57,32 +57,12 @@ const JetpackAndSettingsContent = ( { }: JetpackSettingsContentProps ) => { const isBreveAvailable = getFeatureAvailability( 'ai-proofread-breve' ); const { checkoutUrl } = useAICheckout(); - const { toggleProofread } = useDispatch( 'jetpack/ai-breve' ); - - const isProofreadEnabled = useSelect( - // eslint-disable-next-line @typescript-eslint/no-explicit-any - select => ( select( 'jetpack/ai-breve' ) as any ).isProofreadEnabled(), - [] - ); - - const handleAiFeedbackToggle = () => { - toggleProofread(); - }; - - const aiFeedbackLabel = ( -
    - { __( 'AI feedback', 'jetpack' ) } - { isBreveAvailable && ( - - ) } -
    - ); return ( <> - - { isBreveAvailable && } + + { isBreveAvailable && } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/breve.scss b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/breve.scss index 7b872fadb1649..06879afce760f 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/breve.scss +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/breve.scss @@ -1,11 +1,25 @@ @import './features/features.colors'; .jetpack-ai-proofread { - margin-bottom: 16px; - .components-checkbox-control__input { - @include features-colors( ( 'border-color' ) ); - &:checked { - @include features-colors( ( 'background-color' ) ); + margin-bottom: 24px; + .components-checkbox-control { + color: #757575; + + &__input { + @include features-colors( ( 'border-color' ) ); + &:checked { + @include features-colors( ( 'background-color' ) ); + } } } + + .components-toggle-control { + color: #1e1e1e; + margin-bottom: 16px; + } + + &__grade-label { + color: #757575; + margin-left: 12px; + } } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js index 63f5a79962f04..addd8b104a102 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js @@ -1,9 +1,17 @@ /** * WordPress dependencies */ -import { BaseControl, PanelRow, SVG, Path, CheckboxControl } from '@wordpress/components'; +import { + BaseControl, + PanelRow, + SVG, + Path, + CheckboxControl, + ToggleControl, +} from '@wordpress/components'; import { compose, useDebounce } from '@wordpress/compose'; -import { useDispatch, withSelect } from '@wordpress/data'; +import { useDispatch, useSelect, withSelect } from '@wordpress/data'; +import { __ } from '@wordpress/i18n'; /** * External dependencies */ @@ -25,13 +33,17 @@ export const useInit = init => { } }; -const Controls = ( { blocks, active, disabledFeatures } ) => { - const isHighlighting = active; +const Controls = ( { blocks, disabledFeatures } ) => { const [ gradeLevel, setGradeLevel ] = useState( null ); - const { toggleFeature } = useDispatch( 'jetpack/ai-breve' ); + const { toggleFeature, toggleProofread } = useDispatch( 'jetpack/ai-breve' ); + + const isProofreadEnabled = useSelect( + select => select( 'jetpack/ai-breve' ).isProofreadEnabled(), + [] + ); const updateGradeLevel = useCallback( () => { - if ( ! isHighlighting ) { + if ( ! isProofreadEnabled ) { return; } @@ -44,7 +56,7 @@ const Controls = ( { blocks, active, disabledFeatures } ) => { typeof computedGradeLevel === 'number' ? computedGradeLevel.toFixed( 2 ) : null; setGradeLevel( sanitizedGradeLevel ); - }, [ blocks, isHighlighting ] ); + }, [ blocks, isProofreadEnabled ] ); // Calculating the grade level is expensive, so debounce it to avoid recalculating it on every keypress. const debouncedGradeLevelUpdate = useDebounce( updateGradeLevel, 250 ); @@ -56,6 +68,10 @@ const Controls = ( { blocks, active, disabledFeatures } ) => { [ toggleFeature ] ); + const handleAiFeedbackToggle = useCallback( () => { + toggleProofread(); + }, [ toggleProofread ] ); + useEffect( () => { debouncedGradeLevelUpdate(); }, [ debouncedGradeLevelUpdate ] ); @@ -66,11 +82,7 @@ const Controls = ( { blocks, active, disabledFeatures } ) => { return (
    - +
    { gradeLevel !== null && gradeLevel <= 12 && ( <> @@ -87,7 +99,12 @@ const Controls = ( { blocks, active, disabledFeatures } ) => { { gradeLevel === null ? ( Write some words to see your grade level. ) : ( - gradeLevel + <> + { gradeLevel } + + { __( 'Readability score', 'jetpack' ) } + + ) }

    @@ -95,7 +112,12 @@ const Controls = ( { blocks, active, disabledFeatures } ) => {
    - + + { features.map( feature => ( React.JSX.Element; +const Breve = Controls as () => React.JSX.Element; export { Breve }; export { default as Highlight, registerBreveHighlights } from './highlight'; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/proofread/index.tsx b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/proofread/index.tsx index 50afbff57232f..a0517018d50bb 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/proofread/index.tsx +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/proofread/index.tsx @@ -11,6 +11,7 @@ import { __ } from '@wordpress/i18n'; * Internal dependencies */ import './style.scss'; +import { getFeatureAvailability } from '../../../../blocks/ai-assistant/lib/utils/get-feature-availability'; import usePostContent from '../../hooks/use-post-content'; import AiAssistantModal from '../modal'; /** @@ -27,6 +28,7 @@ export default function Proofread( { disabled?: boolean; busy?: boolean; } ) { + const isBreveAvailable = getFeatureAvailability( 'ai-proofread-breve' ); const [ isProofreadModalVisible, setIsProofreadModalVisible ] = useState( false ); const [ suggestion, setSuggestion ] = useState( null ); const { tracks } = useAnalytics(); @@ -96,6 +98,13 @@ export default function Proofread( { } ); }; + const defaultCopy = __( + 'Get suggestions on how to enhance your post to better engage your audience.', + 'jetpack' + ); + + const withBreveCopy = __( 'Get feedback on content structure.', 'jetpack' ); + return (
    { isProofreadModalVisible && ( @@ -103,12 +112,7 @@ export default function Proofread( {
    { suggestion }
    ) } -

    - { __( - 'Get suggestions on how to enhance your post to better engage your audience.', - 'jetpack' - ) } -

    +

    { isBreveAvailable ? withBreveCopy : defaultCopy }

    +
    +
    ) } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss index b6623eb8b2301..be3683514b980 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss @@ -12,18 +12,57 @@ font-style: normal; font-weight: 400; line-height: 18px; - padding: 8px; width: auto; -} -.highlight-popover div.components-popover__content { - align-items: center; - column-gap: 12px; - display: flex; - padding: 16px; - white-space: nowrap; -} + .highlight-content { + align-items: center; + display: flex; + justify-content: space-between; + gap: 32px; + + .title { + display: flex; + align-items: center; + justify-content: flex-start; + gap: 8px; + font-size: 14px; + font-weight: 500; + + .color { + width: 24px; + height: 24px; + border-radius: 50%; + @include features-colors( ( 'background-color' ) ); + } + } + + .action { + font-size: 13px; + display: flex; + align-items: center; + justify-content: flex-end; + gap: 4px; + + .components-button { + padding-top: 0px; + padding-bottom: 0px; + padding-right: 0px; + height: unset; + } + + & > svg, + path { + fill: #0277a8; + } + } + } -.highlight-popover button { - box-shadow: none !important; // Fixing a strange left border + & div.components-popover__content { + align-items: center; + column-gap: 12px; + display: flex; + padding: 8px 12px; + white-space: nowrap; + margin-top: 8px; + } } From 3c0aeaa5d31299d0c879b28ecfa91f9fe673eb9f Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Thu, 11 Jul 2024 02:58:58 -0400 Subject: [PATCH 098/254] jetpack: Fix undefined array warnings in Donations block (#38281) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If the donations block sets `oneTimeDonation`, `monthlyDonation`, and/or `annualDonation` without including a `planId` field, ensure the field is set by including the value used in the block.json in the defaults. If the `currency` attribute is not set or is invalid, and `showCustomAmount` is true, fall back to the generic currency symbol `¤` like `Jetpack_Currencies::format_price()` already does and default to ¤100. Also, `Jetpack_Currencies::format_price()` should honor its `$symbol` argument when doing that fallback. --- .../jetpack/_inc/lib/class-jetpack-currencies.php | 2 +- .../fix-jetpack-donations-block-missing-array-keys | 4 ++++ .../fix-jetpack-donations-block-missing-array-keys#2 | 4 ++++ .../jetpack/extensions/blocks/donations/donations.php | 9 ++++++--- .../php/_inc/lib/test-class-jetpack-currencies.php | 10 +++++++++- 5 files changed, 24 insertions(+), 5 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys create mode 100644 projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys#2 diff --git a/projects/plugins/jetpack/_inc/lib/class-jetpack-currencies.php b/projects/plugins/jetpack/_inc/lib/class-jetpack-currencies.php index f5745519b7379..fb64050ea04b4 100644 --- a/projects/plugins/jetpack/_inc/lib/class-jetpack-currencies.php +++ b/projects/plugins/jetpack/_inc/lib/class-jetpack-currencies.php @@ -161,7 +161,7 @@ public static function format_price( $price, $currency, $symbol = true ) { // Fall back to unspecified currency symbol like `¤1,234.05`. // @link https://en.wikipedia.org/wiki/Currency_sign_(typography). if ( ! array_key_exists( $currency, self::CURRENCIES ) ) { - return '¤' . number_format_i18n( $price, 2 ); + return ( $symbol ? '¤' : '' ) . number_format_i18n( $price, 2 ); } $currency_details = self::CURRENCIES[ $currency ]; diff --git a/projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys b/projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys new file mode 100644 index 0000000000000..2c3a8137e905b --- /dev/null +++ b/projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys @@ -0,0 +1,4 @@ +Significance: patch +Type: bugfix + +Donations Block: Fix undefined array key warnings with old/malformed blocks. diff --git a/projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys#2 b/projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys#2 new file mode 100644 index 0000000000000..3e78be02cc6ce --- /dev/null +++ b/projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys#2 @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +Jetpack_Currencies: Honor the `$symbol` arg when passed an unknown currency. diff --git a/projects/plugins/jetpack/extensions/blocks/donations/donations.php b/projects/plugins/jetpack/extensions/blocks/donations/donations.php index 4304688a99913..f450d64244582 100644 --- a/projects/plugins/jetpack/extensions/blocks/donations/donations.php +++ b/projects/plugins/jetpack/extensions/blocks/donations/donations.php @@ -58,6 +58,7 @@ function render_block( $attr, $content ) { $donations = array( 'one-time' => array_merge( array( + 'planId' => null, 'title' => __( 'One-Time', 'jetpack' ), 'class' => 'donations__one-time-item', 'heading' => $default_texts['oneTimeDonation']['heading'], @@ -69,6 +70,7 @@ function render_block( $attr, $content ) { if ( $attr['monthlyDonation']['show'] ) { $donations['1 month'] = array_merge( array( + 'planId' => null, 'title' => __( 'Monthly', 'jetpack' ), 'class' => 'donations__monthly-item', 'heading' => $default_texts['monthlyDonation']['heading'], @@ -80,6 +82,7 @@ function render_block( $attr, $content ) { if ( $attr['annualDonation']['show'] ) { $donations['1 year'] = array_merge( array( + 'planId' => null, 'title' => __( 'Yearly', 'jetpack' ), 'class' => 'donations__annual-item', 'heading' => $default_texts['annualDonation']['heading'], @@ -153,14 +156,14 @@ function render_block( $attr, $content ) { '

    %s

    ', wp_kses_post( $custom_amount_text ) ); - $default_custom_amount = \Jetpack_Memberships::SUPPORTED_CURRENCIES[ $currency ] * 100; + $default_custom_amount = ( \Jetpack_Memberships::SUPPORTED_CURRENCIES[ $currency ] ?? 1 ) * 100; $custom_amount .= sprintf( '
    %1$s
    ', - esc_html( \Jetpack_Currencies::CURRENCIES[ $attr['currency'] ]['symbol'] ), - esc_attr( $attr['currency'] ), + esc_html( \Jetpack_Currencies::CURRENCIES[ $currency ]['symbol'] ?? '¤' ), + esc_attr( $currency ), esc_attr( \Jetpack_Currencies::format_price( $default_custom_amount, $currency, false ) ) ); } diff --git a/projects/plugins/jetpack/tests/php/_inc/lib/test-class-jetpack-currencies.php b/projects/plugins/jetpack/tests/php/_inc/lib/test-class-jetpack-currencies.php index ac405886ed451..d1a060f1aa9f6 100644 --- a/projects/plugins/jetpack/tests/php/_inc/lib/test-class-jetpack-currencies.php +++ b/projects/plugins/jetpack/tests/php/_inc/lib/test-class-jetpack-currencies.php @@ -53,7 +53,15 @@ public function test_format_price_no_currency_symbol() { * Test that the unspecified currency symbol is displayed when the currency is not found. */ public function test_format_price_unspecified_currency_symbol() { - $formatted_price = Jetpack_Currencies::format_price( '12345.67890', 'TEST', false ); + $formatted_price = Jetpack_Currencies::format_price( '12345.67890', 'TEST' ); $this->assertEquals( '¤12,345.68', $formatted_price ); } + + /** + * Test that the unspecified currency symbol is not displayed when the currency is not found but `$symbol` is false. + */ + public function test_format_price_unspecified_currency_symbol_no_symbol() { + $formatted_price = Jetpack_Currencies::format_price( '12345.67890', 'TEST', false ); + $this->assertEquals( '12,345.68', $formatted_price ); + } } From 78ff299e5ae10c7de9f7b94ef77270f2efd054cf Mon Sep 17 00:00:00 2001 From: Fredrik Rombach Ekelund Date: Thu, 11 Jul 2024 09:30:07 +0200 Subject: [PATCH 099/254] Hide My Mailboxes link on P2 sites (#38232) * Hide My Mailboxes link on P2 sites * Added changelog entry * Fixup project version --- .../masterbar/changelog/fix-hide-mailboxes-link-on-p2-sites | 4 ++++ projects/packages/masterbar/package.json | 2 +- .../packages/masterbar/src/admin-menu/class-p2-admin-menu.php | 2 +- projects/packages/masterbar/src/class-main.php | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 projects/packages/masterbar/changelog/fix-hide-mailboxes-link-on-p2-sites diff --git a/projects/packages/masterbar/changelog/fix-hide-mailboxes-link-on-p2-sites b/projects/packages/masterbar/changelog/fix-hide-mailboxes-link-on-p2-sites new file mode 100644 index 0000000000000..dcf4db5dd5001 --- /dev/null +++ b/projects/packages/masterbar/changelog/fix-hide-mailboxes-link-on-p2-sites @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Hide "My Mailboxes" link on P2 sites diff --git a/projects/packages/masterbar/package.json b/projects/packages/masterbar/package.json index 4c46b5e7d70b3..6271534394b29 100644 --- a/projects/packages/masterbar/package.json +++ b/projects/packages/masterbar/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-masterbar", - "version": "0.3.0", + "version": "0.3.1-alpha", "description": "The WordPress.com Toolbar feature replaces the default admin bar and offers quick links to the Reader, all your sites, your WordPress.com profile, and notifications.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/masterbar/#readme", "bugs": { diff --git a/projects/packages/masterbar/src/admin-menu/class-p2-admin-menu.php b/projects/packages/masterbar/src/admin-menu/class-p2-admin-menu.php index 12e675cfbff13..cab20ad10589e 100644 --- a/projects/packages/masterbar/src/admin-menu/class-p2-admin-menu.php +++ b/projects/packages/masterbar/src/admin-menu/class-p2-admin-menu.php @@ -165,7 +165,7 @@ private function remove_menus_for_all_p2s() { remove_menu_page( 'feedback' ); remove_menu_page( $this->plugins_slug ); remove_menu_page( 'https://wordpress.com/plugins/' . $this->domain ); - remove_menu_page( 'https://wordpress.com/inbox/' . $this->domain ); + remove_menu_page( 'https://wordpress.com/mailboxes/' . $this->domain ); remove_submenu_page( 'https://wordpress.com/settings/general/' . $this->domain, 'sharing' ); remove_submenu_page( 'https://wordpress.com/settings/general/' . $this->domain, 'polls&action=options' ); diff --git a/projects/packages/masterbar/src/class-main.php b/projects/packages/masterbar/src/class-main.php index 8d34f9cd6c2da..a73c27c624486 100644 --- a/projects/packages/masterbar/src/class-main.php +++ b/projects/packages/masterbar/src/class-main.php @@ -14,7 +14,7 @@ */ class Main { - const PACKAGE_VERSION = '0.3.0'; + const PACKAGE_VERSION = '0.3.1-alpha'; /** * Initializer. From 802901fb33095dd160e75245f57717288c8daa92 Mon Sep 17 00:00:00 2001 From: "okmttdhr, tada" Date: Thu, 11 Jul 2024 16:49:20 +0900 Subject: [PATCH 100/254] MU WPCOM: Port MailerLite Widget (#38293) * Port MailerLite Widget * changelog * Load assets * Use a variable for HTML output * Load MailerLite Widget feature --- .../changelog/mu-wpcom-mailerlite | 4 + .../src/class-jetpack-mu-wpcom.php | 1 + .../features/mailerlite/subscriber-popup.js | 10 ++ .../features/mailerlite/subscriber-popup.php | 137 ++++++++++++++++++ .../jetpack-mu-wpcom/webpack.config.js | 1 + 5 files changed, 153 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-mailerlite create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/mailerlite/subscriber-popup.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/mailerlite/subscriber-popup.php diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-mailerlite b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-mailerlite new file mode 100644 index 0000000000000..090b42bb2ac74 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-mailerlite @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Port MailerLite Widget diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 60cbfeeb2301a..af54fc100da1c 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -134,6 +134,7 @@ public static function load_features() { public static function load_etk_features() { require_once __DIR__ . '/features/hide-homepage-title/hide-homepage-title.php'; require_once __DIR__ . '/features/jetpack-global-styles/class-global-styles.php'; + require_once __DIR__ . '/features/mailerlite/subscriber-popup.php'; require_once __DIR__ . '/features/override-preview-button-url/override-preview-button-url.php'; require_once __DIR__ . '/features/paragraph-block-placeholder/paragraph-block-placeholder.php'; require_once __DIR__ . '/features/tags-education/tags-education.php'; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/mailerlite/subscriber-popup.js b/projects/packages/jetpack-mu-wpcom/src/features/mailerlite/subscriber-popup.js new file mode 100644 index 0000000000000..20630838134c8 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/mailerlite/subscriber-popup.js @@ -0,0 +1,10 @@ +/* global ml,jetpackMailerliteSettings */ + +( function () { + window.ml_account = ml( + 'accounts', + jetpackMailerliteSettings.account, + jetpackMailerliteSettings.uuid, + 'load' + ); +} )(); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/mailerlite/subscriber-popup.php b/projects/packages/jetpack-mu-wpcom/src/features/mailerlite/subscriber-popup.php new file mode 100644 index 0000000000000..93dd302ad42c5 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/mailerlite/subscriber-popup.php @@ -0,0 +1,137 @@ + 'widget_mailerlite', + 'description' => __( 'Display Mailerlite subscriber popup', 'jetpack-mu-wpcom' ), + 'customize_selective_refresh' => true, + ) + ); + } + + /** + * Output the widget. + * + * @param array $args Display arguments including 'before_title', 'after_title', 'before_widget', and 'after_widget'. + * @param array $instance - The settings for the particular instance of the widget. + */ + public function widget( $args, $instance ) { + /** This action is documented in modules/widgets/gravatar-profile.php */ + do_action( 'jetpack_stats_extra', 'widget_view', 'mailerlite' ); + + if ( empty( $instance['account'] ) || empty( $instance['uuid'] ) ) { + if ( current_user_can( 'edit_theme_options' ) ) { + echo $args['before_widget']; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + echo '

    ' . sprintf( + wp_kses( + /* translators: %1$s - URL to manage the widget, %2$s - documentation URL. */ + __( 'You need to enter your numeric account ID and UUID for the Mailerlite Widget to work correctly. Full instructions.', 'jetpack-mu-wpcom' ), + array( + 'a' => array( + 'href' => array(), + 'title' => array(), + ), + ) + ), + esc_url( admin_url( 'widgets.php' ) ), + 'https://wordpress.com/support/widgets/mailerlite/' + ) . '

    '; + echo $args['after_widget']; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + } + return; + } + + if ( wp_script_is( 'mailerlite-subscriber-popup', 'enqueued' ) ) { + return; + } + + wp_register_script( 'mailerlite-universal', 'https://static.mailerlite.com/js/universal.js', array(), '20200521', true ); + $asset_file = include Jetpack_Mu_Wpcom::BASE_DIR . 'build/mailerlite-subscriber-popup/mailerlite-subscriber-popup.asset.php'; + wp_enqueue_script( + 'mailerlite-subscriber-popup', + plugins_url( 'build/mailerlite-subscriber-popup/mailerlite-subscriber-popup.js', Jetpack_Mu_Wpcom::BASE_FILE ), + array( 'mailerlite-universal' ), + $asset_file['version'] ?? filemtime( Jetpack_Mu_Wpcom::BASE_DIR . 'build/mailerlite-subscriber-popup/mailerlite-subscriber-popup.js' ), + true + ); + wp_localize_script( + 'mailerlite-subscriber-popup', + 'jetpackMailerliteSettings', + array( + 'account' => esc_attr( $instance['account'] ), + 'uuid' => esc_attr( $instance['uuid'] ), + ) + ); + } + + /** + * Updates a particular instance of a widget. + * + * @param array $new_instance New settings for this instance as input by the user via WP_Widget::form(). + * @param array $old_instance Old settings for this instance. + * + * @return mixed + */ + public function update( $new_instance, $old_instance ) { // @phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable + return array( + 'account' => wp_kses( stripslashes( $new_instance['account'] ), array() ), + 'uuid' => wp_kses( stripslashes( $new_instance['uuid'] ), array() ), + ); + } + + /** + * Editable form in WP-admin. + * + * @param array $instance - settings. + */ + public function form( $instance ) { + $instance = wp_parse_args( + (array) $instance, + array( + 'account' => '', + 'uuid' => '', + ) + ); + + $html = '

    +

    '; + + return $html; + } +} + +/** + * Registers the widget via widgets_init hook. + */ +function mailerlite_register_widget() { + register_widget( '\A8C\FSE\Mailerlite\WPCOM_Widget_Mailerlite' ); +} +add_action( 'widgets_init', '\A8C\FSE\Mailerlite\mailerlite_register_widget' ); diff --git a/projects/packages/jetpack-mu-wpcom/webpack.config.js b/projects/packages/jetpack-mu-wpcom/webpack.config.js index df9f24f6314d5..2bf75c1f6f88c 100644 --- a/projects/packages/jetpack-mu-wpcom/webpack.config.js +++ b/projects/packages/jetpack-mu-wpcom/webpack.config.js @@ -18,6 +18,7 @@ module.exports = [ 'jetpack-global-styles': './src/features/jetpack-global-styles/index.js', 'jetpack-global-styles-customizer-fonts': './src/features/jetpack-global-styles/customizer-fonts/index.js', + 'mailerlite-subscriber-popup': './src/features/mailerlite/subscriber-popup.js', 'override-preview-button-url': './src/features/override-preview-button-url/override-preview-button-url.js', 'paragraph-block-placeholder': From f01f79ed1f9e307ab3f09e21e1834757921d9967 Mon Sep 17 00:00:00 2001 From: Griffith Chen Date: Thu, 11 Jul 2024 16:26:44 +0800 Subject: [PATCH 101/254] MU WPCOM: Port block-inserter-modifications feature from ETK (#38277) --- .../etk-block-inserter-modifications | 4 ++ .../src/class-jetpack-mu-wpcom.php | 1 + .../block-inserter-modifications/README.md | 5 ++ .../block-inserter-modifications.php | 39 ++++++++++++ .../block-inserter-modifications/index.js | 39 ++++++++++++ .../src/contextual-tip.js | 53 +++++++++++++++++ .../block-inserter-modifications/src/list.js | 59 +++++++++++++++++++ .../src/style.scss | 3 + .../src/tip-link.js | 34 +++++++++++ .../block-inserter-modifications/src/utils.js | 17 ++++++ .../jetpack-mu-wpcom/webpack.config.js | 1 + 11 files changed, 255 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/etk-block-inserter-modifications create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/README.md create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/block-inserter-modifications.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/index.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/contextual-tip.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/list.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/style.scss create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/tip-link.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/utils.js diff --git a/projects/packages/jetpack-mu-wpcom/changelog/etk-block-inserter-modifications b/projects/packages/jetpack-mu-wpcom/changelog/etk-block-inserter-modifications new file mode 100644 index 0000000000000..491ed5618677f --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/etk-block-inserter-modifications @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Port block-inserter-modifications from ETK diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index af54fc100da1c..9d204ec56cc18 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -132,6 +132,7 @@ public static function load_features() { * Can be moved back to load_features() once the feature no longer exists in the ETK plugin. */ public static function load_etk_features() { + require_once __DIR__ . '/features/block-inserter-modifications/block-inserter-modifications.php'; require_once __DIR__ . '/features/hide-homepage-title/hide-homepage-title.php'; require_once __DIR__ . '/features/jetpack-global-styles/class-global-styles.php'; require_once __DIR__ . '/features/mailerlite/subscriber-popup.php'; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/README.md b/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/README.md new file mode 100644 index 0000000000000..8004d7111a37c --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/README.md @@ -0,0 +1,5 @@ +# Block Inserter Modifications + +## Contextual Tips + +- [contextual-tips](./contextual-tips.js) add Tips to the searcher box when the term matches with some of the keywords defined by the component. diff --git a/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/block-inserter-modifications.php b/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/block-inserter-modifications.php new file mode 100644 index 0000000000000..3882d47462ffd --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/block-inserter-modifications.php @@ -0,0 +1,39 @@ + + { ( { filterValue, hasItems } ) => { + if ( hasItems || ! filterValue ) { + return null; + } + + if ( debouncedFilterValue !== filterValue ) { + debouncedSetFilterValue( filterValue ); + } + + return ; + } } + + ); +}; + +// Check if the experimental slot is available before to register plugin. +if ( typeof InserterMenuExtension !== 'undefined' ) { + registerPlugin( 'block-inserter-contextual-tips', { + render() { + return ; + }, + } ); +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/contextual-tip.js b/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/contextual-tip.js new file mode 100644 index 0000000000000..76c61ce2a4c84 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/contextual-tip.js @@ -0,0 +1,53 @@ +import { Tip } from '@wordpress/components'; +import { compose } from '@wordpress/compose'; +import { withSelect } from '@wordpress/data'; +import { get, filter, deburr, lowerCase, includes } from 'lodash'; +import tipsList from './list'; + +/** + * Create the contextual tip. + * + * @param {object} props - The function props. + * @param {string} props.searchTerm - Search term text. + * @param {boolean} props.random - Whether to choose a random tooltip on multiple matches. + * @param {Function} props.canUserCreate - Function to check user permission. + */ +function ContextualTip( { searchTerm, random = false, canUserCreate } ) { + if ( ! searchTerm ) { + return null; + } + + if ( ! tipsList.length ) { + return null; + } + + const normalizedSearchTerm = deburr( lowerCase( searchTerm ) ).replace( /^\//, '' ); + + const foundTips = filter( + tipsList, + ( { keywords, permission } ) => + canUserCreate( permission ) && + filter( [ ...new Set( keywords ) ], keyword => includes( normalizedSearchTerm, keyword ) ) + .length + ); + + if ( ! foundTips.length ) { + return null; + } + + const index = random ? Math.floor( Math.random() * foundTips.length ) : 0; + + return ( +
    + { get( foundTips, [ index, 'description' ] ) } +
    + ); +} + +export default compose( + withSelect( select => { + return { + canUserCreate: type => select( 'core' ).canUser( 'create', type ), + }; + } ) +)( ContextualTip ); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/list.js b/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/list.js new file mode 100644 index 0000000000000..c1dbf8b3e620f --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/list.js @@ -0,0 +1,59 @@ +import { createInterpolateElement } from '@wordpress/element'; +import { __ } from '@wordpress/i18n'; +import TipLink from './tip-link'; + +/** + * Creates the tip content as an React element or text. + * + * @param text - The tip description text string. + * @param conversion - The map used to convert the string to an element. + * @param textFallback - The fallback text for the tip description. + */ +function getTipDescription( text, conversion, textFallback ) { + if ( typeof createInterpolateElement !== 'undefined' ) { + return createInterpolateElement( text, conversion ); + } + + return textFallback; +} + +const tips = [ + { + context: 'theme', + keywords: [ 'theme', __( 'theme', 'jetpack-mu-wpcom' ) ], + description: getTipDescription( + __( + 'You can visit the theme directory to select a different design for your site.', + 'jetpack-mu-wpcom' + ), + { + a: , + }, + __( + 'You can visit the theme directory to select a different design for your site.', + 'jetpack-mu-wpcom' + ) + ), + permission: 'settings', + }, + { + context: 'plugin', + keywords: [ 'plugin', __( 'plugin', 'jetpack-mu-wpcom' ) ], + description: getTipDescription( + __( + 'You can visit the plugin directory to get started with installing new plugins.', + 'jetpack-mu-wpcom' + ), + { + a: , + }, + __( + 'You can visit the plugin directory to get started with installing new plugins.', + 'jetpack-mu-wpcom' + ) + ), + permission: 'settings', + }, +]; + +export default tips; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/style.scss b/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/style.scss new file mode 100644 index 0000000000000..64b27206f6a9a --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/style.scss @@ -0,0 +1,3 @@ +.contextual-tip { + margin: 16px; +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/tip-link.js b/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/tip-link.js new file mode 100644 index 0000000000000..2af8179856831 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/tip-link.js @@ -0,0 +1,34 @@ +import { inIframe, isSimpleSite } from './utils'; + +const isEditorIFramed = inIframe(); + +/** + * Create the link for the contextual tip. + * + * @param {object} props - The function props. + * @param {string} props.children - The tip content. + * @param {string} props.section - The tip context section. + */ +export default function ( { children, section } ) { + const { hostname } = window.location; + let href = '#'; + + switch ( section ) { + case 'themes': + href = isEditorIFramed ? `https://wordpress.com/themes/${ hostname }` : './themes.php'; + break; + + case 'plugins': + href = + isEditorIFramed || isSimpleSite + ? `https://wordpress.com/plugins/${ hostname }` + : './plugin-install.php'; + break; + } + + return ( + + { children } + + ); +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/utils.js b/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/utils.js new file mode 100644 index 0000000000000..49e946ef6eaff --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/block-inserter-modifications/src/utils.js @@ -0,0 +1,17 @@ +/** + * Detect if the editor is already iFramed. + * @returns {boolean} `True` is the editor is iFramed. Otherwise, `False`. + */ +export const inIframe = () => { + try { + return window.self !== window.top; + } catch ( e ) { + return true; + } +}; + +export const isSimpleSite = !! ( + window && + window._currentSiteType && + window._currentSiteType === 'simple' +); diff --git a/projects/packages/jetpack-mu-wpcom/webpack.config.js b/projects/packages/jetpack-mu-wpcom/webpack.config.js index 2bf75c1f6f88c..cb4b02117e150 100644 --- a/projects/packages/jetpack-mu-wpcom/webpack.config.js +++ b/projects/packages/jetpack-mu-wpcom/webpack.config.js @@ -8,6 +8,7 @@ module.exports = [ ...verbumConfig, { entry: { + 'block-inserter-modifications': './src/features/block-inserter-modifications/index.js', 'block-theme-previews': './src/features/block-theme-previews/index.js', 'core-customizer-css': './src/features/custom-css/custom-css/js/core-customizer-css.core-4.9.js', From 1b7b8ad7cd99dca71417c6abc52f42f677e74248 Mon Sep 17 00:00:00 2001 From: arthur791004 Date: Thu, 11 Jul 2024 18:16:09 +0900 Subject: [PATCH 102/254] MU WPCOM: Port the a8c-posts-list block from ETK (#38279) * MU WPCOM: Port the a8c-posts-list block from ETK * changelog --- .../changelog/mu-wpcom-a8c-posts-list | 4 + .../src/class-jetpack-mu-wpcom.php | 1 + .../a8c-posts-list/a8c-posts-list.php | 137 ++++++++++++++++++ .../blocks/posts-list/editor.scss | 19 +++ .../a8c-posts-list/blocks/posts-list/index.js | 108 ++++++++++++++ .../blocks/posts-list/style.scss | 9 ++ .../blocks/posts-list/transforms.js | 27 ++++ .../a8c-posts-list/templates/no-posts.php | 26 ++++ .../a8c-posts-list/templates/post-item.php | 44 ++++++ .../a8c-posts-list/templates/posts-list.php | 39 +++++ .../wpcom-blocks/a8c-posts-list/utils.php | 45 ++++++ .../jetpack-mu-wpcom/webpack.config.js | 1 + 12 files changed, 460 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-a8c-posts-list create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/a8c-posts-list.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/editor.scss create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/index.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/style.scss create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/transforms.js create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/templates/no-posts.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/templates/post-item.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/templates/posts-list.php create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/utils.php diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-a8c-posts-list b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-a8c-posts-list new file mode 100644 index 0000000000000..0d5d17c6b268f --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-a8c-posts-list @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +MU WPCOM: Port the a8c-posts-list block from ETK diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 9d204ec56cc18..b6e73cc4b0233 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -140,6 +140,7 @@ public static function load_etk_features() { require_once __DIR__ . '/features/paragraph-block-placeholder/paragraph-block-placeholder.php'; require_once __DIR__ . '/features/tags-education/tags-education.php'; require_once __DIR__ . '/features/wpcom-block-description-links/wpcom-block-description-links.php'; + require_once __DIR__ . '/features/wpcom-blocks/a8c-posts-list/a8c-posts-list.php'; require_once __DIR__ . '/features/wpcom-documentation-links/wpcom-documentation-links.php'; require_once __DIR__ . '/features/wpcom-whats-new/wpcom-whats-new.php'; } diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/a8c-posts-list.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/a8c-posts-list.php new file mode 100644 index 0000000000000..e26d913c6e65b --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/a8c-posts-list.php @@ -0,0 +1,137 @@ +%3$s', + esc_url( get_the_permalink() ), + sprintf( + /* translators: %s: Name of current post */ + esc_attr__( 'Continue reading %s', 'jetpack-mu-wpcom' ), + the_title_attribute( array( 'echo' => false ) ) + ), + esc_html__( 'Read more', 'jetpack-mu-wpcom' ) + ); +} + +/** + * Renders posts list. + * + * @param array $attributes Block attributes. + * @param string $content Block content. + * @return string + */ +function render_a8c_post_list_block( $attributes, $content ) { + static $rendering_block = false; + + $posts_list = new \WP_Query( + array( + 'post_type' => 'post', + 'posts_per_page' => $attributes['postsPerPage'], + 'post_status' => 'publish', + 'suppress_filters' => false, + ) + ); + + add_filter( 'excerpt_more', __NAMESPACE__ . '\custom_excerpt_read_more' ); + + // Prevent situations when the block attempts rendering another a8c/posts-list block. + if ( true !== $rendering_block ) { + $rendering_block = true; + + $content = render_template( + 'posts-list', + array( + 'posts_list' => $posts_list, + ) + ); + + $rendering_block = false; + } + + remove_filter( 'excerpt_more', __NAMESPACE__ . '\custom_excerpt_read_more' ); + + // Reset the custom query. + wp_reset_postdata(); + + return $content; +} + +/** + * Register block. + */ +function register_blocks() { + register_block_type( + 'a8c/posts-list', + array( + 'attributes' => array( + 'postsPerPage' => array( + 'type' => 'number', + 'default' => 10, + ), + ), + 'render_callback' => __NAMESPACE__ . '\render_a8c_post_list_block', + ) + ); +} +add_action( 'init', __NAMESPACE__ . '\register_blocks', 100 ); + +/** + * Enqueue block styles. + */ +function enqueue_styles() { + if ( ! has_block( 'a8c/posts-list' ) ) { + return; + } + + $ext = is_rtl() + ? 'rtl.css' + : 'css'; + $css_file = "build/a8c-posts-list/a8c-posts-list.$ext"; + wp_enqueue_style( + 'posts-list-block-style', + plugins_url( $css_file, Jetpack_Mu_Wpcom::BASE_FILE ), + array(), + filemtime( Jetpack_Mu_Wpcom::BASE_DIR . $css_file ) + ); +} +add_action( 'enqueue_block_editor_assets', __NAMESPACE__ . '\enqueue_scripts', 100 ); + +/** + * Enqueue block scripts. + */ +function enqueue_scripts() { + if ( ! has_block( 'a8c/posts-list' ) ) { + return; + } + + $asset_file = include Jetpack_Mu_Wpcom::BASE_DIR . 'build/a8c-posts-list/a8c-posts-list.asset.php'; + $js_file = 'build/a8c-posts-list/a8c-posts-list.js'; + wp_enqueue_script( + 'a8c-posts-list-script', + plugins_url( $js_file, Jetpack_Mu_Wpcom::BASE_FILE ), + $asset_file['dependencies'] ?? array(), + $asset_file['version'] ?? filemtime( Jetpack_Mu_Wpcom::BASE_DIR . $js_file ), + true + ); + + wp_set_script_translations( 'a8c-posts-list-script', 'jetpack-mu-wpcom' ); +} +add_action( 'enqueue_block_assets', __NAMESPACE__ . '\enqueue_styles', 100 ); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/editor.scss b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/editor.scss new file mode 100644 index 0000000000000..5253273b36ce0 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/editor.scss @@ -0,0 +1,19 @@ +div.a8c-posts-list__notice { + margin: 0 0 5px; + + .components-notice__content { + display: flex; + align-items: center; + justify-content: space-between; + } + + .components-notice__action { + flex-shrink: 0; + } +} + +.a8c-posts-list__placeholder { + .components-placeholder__fieldset:empty { + display: none; + } +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/index.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/index.js new file mode 100644 index 0000000000000..36fc3f0c21740 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/index.js @@ -0,0 +1,108 @@ +import { InspectorControls } from '@wordpress/block-editor'; +import { + registerBlockType, + switchToBlockType, + getPossibleBlockTransformations, +} from '@wordpress/blocks'; +import { Placeholder, RangeControl, PanelBody, Notice } from '@wordpress/components'; +import { select, dispatch } from '@wordpress/data'; +import { Fragment } from '@wordpress/element'; +import { __ } from '@wordpress/i18n'; +import { transforms, isValidHomepagePostsBlockType } from './transforms'; + +import './editor.scss'; +import './style.scss'; + +const icon = ( + + + + +); + +registerBlockType( 'a8c/posts-list', { + title: __( 'Blog Posts Listing', 'jetpack-mu-wpcom' ), + description: __( 'Displays your latest Blog Posts.', 'jetpack-mu-wpcom' ), + keywords: [ 'posts' ], + icon, + category: 'layout', + supports: { + html: false, + multiple: false, + reusable: false, + inserter: false, + }, + attributes: { + postsPerPage: { + type: 'number', + default: 10, + }, + }, + edit: ( { attributes, setAttributes, clientId, isSelected } ) => { + const block = select( 'core/block-editor' ).getBlock( clientId ); + + // Find if any of possible transformations is into the Homepage Posts block. + const possibleTransforms = getPossibleBlockTransformations( [ block ] ); + const homepagePostsTransform = possibleTransforms.find( + transform => transform && isValidHomepagePostsBlockType( transform.name ) + ); + const canBeUpgraded = !! homepagePostsTransform; + + const upgradeBlock = () => { + dispatch( 'core/block-editor' ).replaceBlocks( + block.clientId, + switchToBlockType( block, homepagePostsTransform.name ) + ); + }; + + return ( + + { canBeUpgraded && ( + + { __( + 'An improved version of this block is available. Update for a better, more natural way to manage your blog post listings. There may be small visual changes.', + 'jetpack-mu-wpcom' + ) } + + ) } + + { isSelected ? ( + setAttributes( { postsPerPage: val } ) } + min={ 1 } + max={ 50 } + /> + ) : null } + + + + setAttributes( { postsPerPage: val } ) } + min={ 1 } + max={ 50 } + /> + + + + ); + }, + save: () => null, + transforms, +} ); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/style.scss b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/style.scss new file mode 100644 index 0000000000000..95c586e1394a9 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/style.scss @@ -0,0 +1,9 @@ +.a8c-posts-list__listing { + list-style: none; + margin: 0; + padding: 0; +} + +.a8c-posts-list__item { + display: block; +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/transforms.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/transforms.js new file mode 100644 index 0000000000000..6d970fe53ad5a --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/transforms.js @@ -0,0 +1,27 @@ +import { createBlock } from '@wordpress/blocks'; + +const HOMEPAGE_POSTS_BLOCK_TYPES = [ 'a8c/blog-posts', 'newspack-blocks/homepage-articles' ]; + +const getTransformFunction = + type => + ( { postsPerPage } ) => { + // Configure the Newspack block to look as close as possible + // to the output of this one. + return createBlock( type, { + postsToShow: postsPerPage, + showAvatar: false, + displayPostDate: true, + displayPostContent: true, + } ); + }; + +export const isValidHomepagePostsBlockType = type => + HOMEPAGE_POSTS_BLOCK_TYPES.indexOf( type ) > -1; + +export const transforms = { + to: HOMEPAGE_POSTS_BLOCK_TYPES.map( type => ( { + type: 'block', + blocks: [ type ], + transform: getTransformFunction( type ), + } ) ), +}; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/templates/no-posts.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/templates/no-posts.php new file mode 100644 index 0000000000000..57f806ab2c444 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/templates/no-posts.php @@ -0,0 +1,26 @@ + + +

    +' . wp_kses( + /* translators: 1: link to WP admin new post page. */ + __( 'Ready to publish your first post? Get started here.', 'jetpack-mu-wpcom' ), + array( + 'a' => array( + 'href' => array(), + ), + ) + ) . '

    ', + esc_url( admin_url( 'post-new.php' ) ) + ); +endif; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/templates/post-item.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/templates/post-item.php new file mode 100644 index 0000000000000..d4ab902ccf664 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/templates/post-item.php @@ -0,0 +1,44 @@ + + + diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/templates/posts-list.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/templates/posts-list.php new file mode 100644 index 0000000000000..914ec4159c532 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/a8c-posts-list/templates/posts-list.php @@ -0,0 +1,39 @@ +have_posts() ) : + ?> +
    +
      + have_posts() ) : + $posts_list->the_post(); + ?> +
    • + +
    • + +
    + + + + +
    + $value ) { + $GLOBALS[ $name ] = $value; + } + } + + ob_start(); + require_once $template_file; + $content = ob_get_contents(); + ob_end_clean(); + + return $content; +} diff --git a/projects/packages/jetpack-mu-wpcom/webpack.config.js b/projects/packages/jetpack-mu-wpcom/webpack.config.js index cb4b02117e150..c93769b4d2af0 100644 --- a/projects/packages/jetpack-mu-wpcom/webpack.config.js +++ b/projects/packages/jetpack-mu-wpcom/webpack.config.js @@ -8,6 +8,7 @@ module.exports = [ ...verbumConfig, { entry: { + 'a8c-posts-list': './src/features/wpcom-blocks/a8c-posts-list/blocks/posts-list/index.js', 'block-inserter-modifications': './src/features/block-inserter-modifications/index.js', 'block-theme-previews': './src/features/block-theme-previews/index.js', 'core-customizer-css': From 3b9cc03bc673b72a523a4622595bd0549319d652 Mon Sep 17 00:00:00 2001 From: Ashar Fuadi Date: Thu, 11 Jul 2024 17:43:31 +0700 Subject: [PATCH 103/254] Add Profile -> My Account menu to admin bar (#38294) --- .../changelog/wpcom-admin-bar-profile | 4 +++ .../wpcom-admin-bar/wpcom-admin-bar.php | 31 +++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-profile diff --git a/projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-profile b/projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-profile new file mode 100644 index 0000000000000..ebcd2adc5f98a --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-profile @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Add Profile -> My Account menu to admin bar diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php index 8fae55dfbac40..210d8d6072c92 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php @@ -82,6 +82,37 @@ function wpcom_add_reader_menu( $wp_admin_bar ) { } add_action( 'admin_bar_menu', 'wpcom_add_reader_menu', 15 ); +/** + * Adds (Profile) -> My Account menu pointing to /me/account. + * + * @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar core object. + */ +function wpcom_add_my_account_item_to_profile_menu( $wp_admin_bar ) { + if ( is_agency_managed_site() || ! current_user_has_wpcom_account() ) { + return; + } + + $logout_node = $wp_admin_bar->get_node( 'logout' ); + if ( $logout_node ) { + // Adds the 'My Account' menu item before 'Log Out'. + $wp_admin_bar->remove_node( 'logout' ); + } + + $wp_admin_bar->add_node( + array( + 'id' => 'wpcom-profile', + 'parent' => 'user-actions', + 'title' => __( 'My Account', 'jetpack-mu-wpcom' ), + 'href' => 'https://wordpress.com/me/account', + ) + ); + + if ( $logout_node ) { + $wp_admin_bar->add_node( (array) $logout_node ); + } +} +add_action( 'admin_bar_menu', 'wpcom_add_my_account_item_to_profile_menu' ); + /** * Hides the Help Center menu. */ From f67354036973bb04390c535f1be2111eeb3f0008 Mon Sep 17 00:00:00 2001 From: arthur791004 Date: Thu, 11 Jul 2024 21:43:46 +0900 Subject: [PATCH 104/254] MU WPCOM: Move the Event Countdown and Timeline blocks from jetpack to jetpack-mu-wpcom (#38298) * MU WPCOM: Move countdown and timeline blocks from jetpack to jetpack-mu-wpcom * changelog --- pnpm-lock.yaml | 6 ++ .../mu-wpcom-eventcoutdown-timeline-blocks | 4 ++ .../packages/jetpack-mu-wpcom/package.json | 2 + .../src/class-jetpack-mu-wpcom.php | 2 + .../wpcom-blocks}/event-countdown/block.json | 5 +- .../wpcom-blocks}/event-countdown/edit.js | 14 ++--- .../wpcom-blocks/event-countdown/editor.js | 14 +++++ .../wpcom-blocks}/event-countdown/editor.scss | 0 .../event-countdown/event-countdown.js | 10 ++-- .../event-countdown/event-countdown.php | 58 +++++++++++++++++++ .../event-countdown/event-countdown.scss | 0 .../wpcom-blocks}/event-countdown/icon.js | 0 .../wpcom-blocks}/event-countdown/save.js | 0 .../wpcom-blocks}/event-countdown/view.js | 27 +++++++-- .../wpcom-blocks}/timeline/block-appender.js | 2 +- .../wpcom-blocks}/timeline/block.json | 5 +- .../wpcom-blocks/timeline/child-blocks.js | 5 ++ .../features/wpcom-blocks}/timeline/edit.js | 4 +- .../features/wpcom-blocks/timeline/editor.js | 22 +++++++ .../wpcom-blocks}/timeline/editor.scss | 0 .../wpcom-blocks}/timeline/example.js | 8 +-- .../features/wpcom-blocks}/timeline/icon.js | 0 .../features/wpcom-blocks}/timeline/save.js | 0 .../wpcom-blocks}/timeline/style.scss | 0 .../timeline/timeline-item/edit.js | 8 +-- .../timeline/timeline-item/index.js | 6 +- .../timeline/timeline-item/save.js | 0 .../wpcom-blocks/timeline/timeline.php | 58 +++++++++++++++++++ .../features/wpcom-blocks}/timeline/view.js | 0 .../packages/jetpack-mu-wpcom/src/utils.php | 34 +++++++++++ .../jetpack-mu-wpcom/webpack.config.js | 5 ++ .../mu-wpcom-eventcoutdown-timeline-blocks | 4 ++ .../blocks/event-countdown/editor.js | 10 ---- .../event-countdown/event-countdown.php | 39 ------------- .../extensions/blocks/timeline/editor.js | 18 ------ .../extensions/blocks/timeline/timeline.php | 39 ------------- .../plugins/jetpack/extensions/index.json | 2 - 37 files changed, 265 insertions(+), 146 deletions(-) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-eventcoutdown-timeline-blocks rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/event-countdown/block.json (90%) rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/event-countdown/edit.js (91%) create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/editor.js rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/event-countdown/editor.scss (100%) rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/event-countdown/event-countdown.js (82%) create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/event-countdown.php rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/event-countdown/event-countdown.scss (100%) rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/event-countdown/icon.js (100%) rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/event-countdown/save.js (100%) rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/event-countdown/view.js (81%) rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/timeline/block-appender.js (93%) rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/timeline/block.json (86%) create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/child-blocks.js rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/timeline/edit.js (90%) create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/editor.js rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/timeline/editor.scss (100%) rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/timeline/example.js (76%) rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/timeline/icon.js (100%) rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/timeline/save.js (100%) rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/timeline/style.scss (100%) rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/timeline/timeline-item/edit.js (91%) rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/timeline/timeline-item/index.js (72%) rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/timeline/timeline-item/save.js (100%) create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/timeline.php rename projects/{plugins/jetpack/extensions/blocks => packages/jetpack-mu-wpcom/src/features/wpcom-blocks}/timeline/view.js (100%) create mode 100644 projects/plugins/jetpack/changelog/mu-wpcom-eventcoutdown-timeline-blocks delete mode 100644 projects/plugins/jetpack/extensions/blocks/event-countdown/editor.js delete mode 100644 projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.php delete mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/editor.js delete mode 100644 projects/plugins/jetpack/extensions/blocks/timeline/timeline.php diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fb51324b0cd77..5b3bf7134c6d5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2102,6 +2102,9 @@ importers: projects/packages/jetpack-mu-wpcom: dependencies: + '@automattic/jetpack-base-styles': + specifier: workspace:* + version: link:../../js-packages/base-styles '@automattic/jetpack-shared-extension-utils': specifier: workspace:* version: link:../../js-packages/shared-extension-utils @@ -2120,6 +2123,9 @@ importers: '@wordpress/base-styles': specifier: 5.2.0 version: 5.2.0 + '@wordpress/blocks': + specifier: 13.2.0 + version: 13.2.0(react@18.3.1) '@wordpress/components': specifier: 28.2.0 version: 28.2.0(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-eventcoutdown-timeline-blocks b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-eventcoutdown-timeline-blocks new file mode 100644 index 0000000000000..3f263c8449373 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-eventcoutdown-timeline-blocks @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +MU WPCOM: Move countdown and timeline blocks from jetpack to jetpack-mu-wpcom diff --git a/projects/packages/jetpack-mu-wpcom/package.json b/projects/packages/jetpack-mu-wpcom/package.json index ab96a507c2c0b..ee017fbdbd157 100644 --- a/projects/packages/jetpack-mu-wpcom/package.json +++ b/projects/packages/jetpack-mu-wpcom/package.json @@ -45,12 +45,14 @@ "webpack-cli": "4.9.1" }, "dependencies": { + "@automattic/jetpack-base-styles": "workspace:*", "@automattic/jetpack-shared-extension-utils": "workspace:*", "@automattic/typography": "1.0.0", "@preact/signals": "^1.2.2", "@sentry/browser": "7.80.1", "@wordpress/api-fetch": "7.2.0", "@wordpress/base-styles": "5.2.0", + "@wordpress/blocks": "13.2.0", "@wordpress/components": "28.2.0", "@wordpress/data": "10.2.0", "@wordpress/dom-ready": "^4.0.0", diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index b6e73cc4b0233..661177d160149 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -141,6 +141,8 @@ public static function load_etk_features() { require_once __DIR__ . '/features/tags-education/tags-education.php'; require_once __DIR__ . '/features/wpcom-block-description-links/wpcom-block-description-links.php'; require_once __DIR__ . '/features/wpcom-blocks/a8c-posts-list/a8c-posts-list.php'; + require_once __DIR__ . '/features/wpcom-blocks/event-countdown/event-countdown.php'; + require_once __DIR__ . '/features/wpcom-blocks/timeline/timeline.php'; require_once __DIR__ . '/features/wpcom-documentation-links/wpcom-documentation-links.php'; require_once __DIR__ . '/features/wpcom-whats-new/wpcom-whats-new.php'; } diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/block.json b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/block.json similarity index 90% rename from projects/plugins/jetpack/extensions/blocks/event-countdown/block.json rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/block.json index 76a8ca78021ef..df12e62167b73 100644 --- a/projects/plugins/jetpack/extensions/blocks/event-countdown/block.json +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/block.json @@ -4,9 +4,8 @@ "name": "jetpack/event-countdown", "title": "Event Countdown", "description": "Count down to your favorite next thing, and celebrate with fireworks when the time is right!", - "keywords": [ "events", "tickets" ], - "version": "12.5.0", - "textdomain": "jetpack", + "keywords": [ "events", "countdown" ], + "textdomain": "jetpack-mu-wpcom", "category": "widgets", "icon": "", "supports": { diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/edit.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/edit.js similarity index 91% rename from projects/plugins/jetpack/extensions/blocks/event-countdown/edit.js rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/edit.js index 6c86afc38dc56..beff45ec078be 100644 --- a/projects/plugins/jetpack/extensions/blocks/event-countdown/edit.js +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/edit.js @@ -32,7 +32,7 @@ const EventCountDownBlockEdit = ( { attributes, setAttributes, isSelected } ) => const settings = __experimentalGetSettings(); - let label = __( 'Choose Date', 'jetpack' ); + let label = __( 'Choose Date', 'jetpack-mu-wpcom' ); let eventDate; if ( attributes.eventTimestamp ) { @@ -62,30 +62,30 @@ const EventCountDownBlockEdit = ( { attributes, setAttributes, isSelected } ) =>
    { isSelected && ( } >
    setAttributes( { eventTitle: evt.target.value } ) } />

    { days }{ ' ' } - { _x( 'days', 'Countdown days remaining', 'jetpack' ) } + { _x( 'days', 'Countdown days remaining', 'jetpack-mu-wpcom' ) }

    { hours }{ ' ' } - { _x( 'hours', 'Countdown hours remaining', 'jetpack' ) } + { _x( 'hours', 'Countdown hours remaining', 'jetpack-mu-wpcom' ) } { mins }{ ' ' } - { _x( 'minutes', 'Countdown minutes remaining', 'jetpack' ) } + { _x( 'minutes', 'Countdown minutes remaining', 'jetpack-mu-wpcom' ) } { secs }{ ' ' } - { _x( 'seconds', 'Countdown seconds remaining', 'jetpack' ) } + { _x( 'seconds', 'Countdown seconds remaining', 'jetpack-mu-wpcom' ) }

    -

    { __( 'until', 'jetpack' ) }

    +

    { __( 'until', 'jetpack-mu-wpcom' ) }

    { eventTitle }

    diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/event-countdown.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/event-countdown.php new file mode 100644 index 0000000000000..c9c4f4c8bac9f --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/event-countdown.php @@ -0,0 +1,58 @@ + __NAMESPACE__ . '\load_assets', + ) + ); +} +add_action( 'init', __NAMESPACE__ . '\register_block' ); + +/** + * Load assets on frontend. + * + * @param array $attr Array containing the EventCountdown block attributes. + * @param string $content String containing the EventCountdown block content. + * + * @return string + */ +function load_assets( $attr, $content ) { + // A block's view assets will not be required in wp-admin. + if ( ! is_admin() ) { + \jetpack_mu_wpcom_enqueue_assets( 'wpcom-blocks-event-countdown-view', array( 'js', 'css' ) ); + } + + return $content; +} + +/** + * Load assets on the editor. + */ +function enqueue_block_editor_assets() { + \jetpack_mu_wpcom_enqueue_assets( 'wpcom-blocks-event-countdown-editor', array( 'js', 'css' ) ); +} +if ( is_admin() ) { + add_action( 'enqueue_block_assets', __NAMESPACE__ . '\enqueue_block_editor_assets' ); +} else { + add_action( 'enqueue_block_editor_assets', __NAMESPACE__ . '\enqueue_block_editor_assets' ); +} diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.scss b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/event-countdown.scss similarity index 100% rename from projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.scss rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/event-countdown.scss diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/icon.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/icon.js similarity index 100% rename from projects/plugins/jetpack/extensions/blocks/event-countdown/icon.js rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/icon.js diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/save.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/save.js similarity index 100% rename from projects/plugins/jetpack/extensions/blocks/event-countdown/save.js rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/save.js diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/view.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/view.js similarity index 81% rename from projects/plugins/jetpack/extensions/blocks/event-countdown/view.js rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/view.js index 203b5f7344310..dc58638193102 100644 --- a/projects/plugins/jetpack/extensions/blocks/event-countdown/view.js +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/event-countdown/view.js @@ -3,6 +3,11 @@ import domReady from '@wordpress/dom-ready'; import './event-countdown.scss'; domReady( function () { + /** + * Test whether the value is unix timestamp or not. + * + * @param dtstr - the value to test + */ function isUnixTimestamp( dtstr ) { return /^[0-9]+$/.test( dtstr ); } @@ -40,9 +45,15 @@ domReady( function () { } } - // function called by interval to update displayed time - // Countdown element passed in as the dom node to search - // within, supporting multiple events per page + /** + * The function called by interval to update displayed time + * Countdown element passed in as the dom node to search + * within, supporting multiple events per page + * + * @param ts - The timestamp of the countdown + * @param elem - The element of the countdown container + * @param id - The ID of the countdown + */ function updateCountdown( ts, elem, id ) { const now = Date.now(); const diff = ts - now; @@ -73,9 +84,13 @@ domReady( function () { elem.getElementsByClassName( 'event-countdown__second' )[ 0 ].innerHTML = secs; } - // what should we do after the event has passed - // the majority of views will be well after and - // not during the transition + /** + * what should we do after the event has passed + * the majority of views will be well after and + * not during the transition + * + * @param elem - The element of the countdown container + */ function itsHappening( elem ) { const countdown = elem.getElementsByClassName( 'event-countdown__counter' )[ 0 ]; const fireworks = document.createElement( 'div' ); diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/block-appender.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/block-appender.js similarity index 93% rename from projects/plugins/jetpack/extensions/blocks/timeline/block-appender.js rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/block-appender.js index fece1ead4901f..3390fd9e503d7 100644 --- a/projects/plugins/jetpack/extensions/blocks/timeline/block-appender.js +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/block-appender.js @@ -21,7 +21,7 @@ const BlockAppender = props => { > { ' ' } - { __( 'Add entry', 'jetpack' ) } + { __( 'Add entry', 'jetpack-mu-wpcom' ) } ); }; diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/block.json b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/block.json similarity index 86% rename from projects/plugins/jetpack/extensions/blocks/timeline/block.json rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/block.json index fb3263fe92815..3fd7d81854ead 100644 --- a/projects/plugins/jetpack/extensions/blocks/timeline/block.json +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/block.json @@ -4,9 +4,8 @@ "name": "jetpack/timeline", "title": "Timeline", "description": "Create a timeline of events.", - "keywords": [ "events", "tickets" ], - "version": "12.5.0", - "textdomain": "jetpack", + "keywords": [ "event", "timeline" ], + "textdomain": "jetpack-mu-wpcom", "category": "widgets", "icon": "", "supports": { diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/child-blocks.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/child-blocks.js new file mode 100644 index 0000000000000..f8a5dec0a1435 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/child-blocks.js @@ -0,0 +1,5 @@ +import * as timelineItem from './timeline-item'; + +const childBlocks = [ timelineItem ]; + +export default childBlocks; diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/edit.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/edit.js similarity index 90% rename from projects/plugins/jetpack/extensions/blocks/timeline/edit.js rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/edit.js index 6e5b01f413a2d..ef8f307531ea6 100644 --- a/projects/plugins/jetpack/extensions/blocks/timeline/edit.js +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/edit.js @@ -24,9 +24,9 @@ const TimelineEdit = ( { clientId, attributes, setAttributes } ) => { return ( <> - + diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/editor.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/editor.js new file mode 100644 index 0000000000000..7f309fab90231 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/editor.js @@ -0,0 +1,22 @@ +import { getBlockIconProp } from '@automattic/jetpack-shared-extension-utils'; +import { registerBlockType } from '@wordpress/blocks'; +import metadata from './block.json'; +import childBlocks from './child-blocks'; +import edit from './edit'; +import example from './example'; +import save from './save'; +import './editor.scss'; +import './style.scss'; + +registerBlockType( metadata.name, { + ...metadata, + edit, + save, + example, + icon: getBlockIconProp( metadata ), + attributes: metadata.attributes || {}, +} ); + +childBlocks.forEach( childBlock => { + registerBlockType( childBlock.name, childBlock.settings ); +} ); diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/editor.scss b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/editor.scss similarity index 100% rename from projects/plugins/jetpack/extensions/blocks/timeline/editor.scss rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/editor.scss diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/example.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/example.js similarity index 76% rename from projects/plugins/jetpack/extensions/blocks/timeline/example.js rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/example.js index 51fcb6cd0076c..9d607ec9377e8 100644 --- a/projects/plugins/jetpack/extensions/blocks/timeline/example.js +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/example.js @@ -8,7 +8,7 @@ const example = { { name: 'core/heading', attributes: { - content: __( 'Spring', 'jetpack' ), + content: __( 'Spring', 'jetpack-mu-wpcom' ), }, }, ], @@ -19,7 +19,7 @@ const example = { { name: 'core/heading', attributes: { - content: __( 'Summer', 'jetpack' ), + content: __( 'Summer', 'jetpack-mu-wpcom' ), }, }, ], @@ -30,7 +30,7 @@ const example = { { name: 'core/heading', attributes: { - content: __( 'Fall', 'jetpack' ), + content: __( 'Fall', 'jetpack-mu-wpcom' ), }, }, ], @@ -41,7 +41,7 @@ const example = { { name: 'core/heading', attributes: { - content: __( 'Winter', 'jetpack' ), + content: __( 'Winter', 'jetpack-mu-wpcom' ), }, }, ], diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/icon.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/icon.js similarity index 100% rename from projects/plugins/jetpack/extensions/blocks/timeline/icon.js rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/icon.js diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/save.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/save.js similarity index 100% rename from projects/plugins/jetpack/extensions/blocks/timeline/save.js rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/save.js diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/style.scss b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/style.scss similarity index 100% rename from projects/plugins/jetpack/extensions/blocks/timeline/style.scss rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/style.scss diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/edit.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/timeline-item/edit.js similarity index 91% rename from projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/edit.js rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/timeline-item/edit.js index 5f099ccc9ae6b..fa66b84c5184a 100644 --- a/projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/edit.js +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/timeline-item/edit.js @@ -30,13 +30,13 @@ const Controls = ( { alignment, clientId, toggleAlignment } ) => { onClick={ () => toggleAlignment( 'left' ) } isActive={ alignment === 'left' } icon={ positionLeft } - title={ __( 'Left', 'jetpack' ) } + title={ __( 'Left', 'jetpack-mu-wpcom' ) } /> toggleAlignment( 'right' ) } isActive={ alignment === 'right' } icon={ positionRight } - title={ __( 'Right', 'jetpack' ) } + title={ __( 'Right', 'jetpack-mu-wpcom' ) } /> @@ -72,14 +72,14 @@ const TimelineItemEdit = ( { attributes, clientId, setAttributes } ) => {
  • setAttributes( { background: background || DEFAULT_BACKGROUND } ), - label: __( 'Background Color', 'jetpack' ), + label: __( 'Background Color', 'jetpack-mu-wpcom' ), }, ] } /> diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/index.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/timeline-item/index.js similarity index 72% rename from projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/index.js rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/timeline-item/index.js index 0f4f02269bc2e..f29d0e492797c 100644 --- a/projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/index.js +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/timeline-item/index.js @@ -3,11 +3,11 @@ import { TimelineIcon } from '../icon'; import edit, { DEFAULT_BACKGROUND } from './edit'; import save from './save'; -export const name = 'timeline-item'; +export const name = 'jetpack/timeline-item'; export const settings = { - title: __( 'Timeline Entry', 'jetpack' ), - description: __( 'An entry on the timeline', 'jetpack' ), + title: __( 'Timeline Entry', 'jetpack-mu-wpcom' ), + description: __( 'An entry on the timeline', 'jetpack-mu-wpcom' ), icon: TimelineIcon, category: 'widgets', parent: [ 'jetpack/timeline' ], diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/save.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/timeline-item/save.js similarity index 100% rename from projects/plugins/jetpack/extensions/blocks/timeline/timeline-item/save.js rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/timeline-item/save.js diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/timeline.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/timeline.php new file mode 100644 index 0000000000000..992734c91a0e1 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/timeline.php @@ -0,0 +1,58 @@ + __NAMESPACE__ . '\load_assets', + ) + ); +} +add_action( 'init', __NAMESPACE__ . '\register_block' ); + +/** + * Load assets on frontend. + * + * @param array $attr Array containing the Timeline block attributes. + * @param string $content String containing the Timeline block content. + * + * @return string + */ +function load_assets( $attr, $content ) { + // A block's view assets will not be required in wp-admin. + if ( ! is_admin() ) { + \jetpack_mu_wpcom_enqueue_assets( 'wpcom-blocks-timeline-view', array( 'js', 'css' ) ); + } + + return $content; +} + +/** + * Load assets on the editor. + */ +function enqueue_block_editor_assets() { + \jetpack_mu_wpcom_enqueue_assets( 'wpcom-blocks-timeline-editor', array( 'js', 'css' ) ); +} +if ( is_admin() ) { + add_action( 'enqueue_block_assets', __NAMESPACE__ . '\enqueue_block_editor_assets' ); +} else { + add_action( 'enqueue_block_editor_assets', __NAMESPACE__ . '\enqueue_block_editor_assets' ); +} diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/view.js b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/view.js similarity index 100% rename from projects/plugins/jetpack/extensions/blocks/timeline/view.js rename to projects/packages/jetpack-mu-wpcom/src/features/wpcom-blocks/timeline/view.js diff --git a/projects/packages/jetpack-mu-wpcom/src/utils.php b/projects/packages/jetpack-mu-wpcom/src/utils.php index ad1dbcc656d1a..9f4cc67dea226 100644 --- a/projects/packages/jetpack-mu-wpcom/src/utils.php +++ b/projects/packages/jetpack-mu-wpcom/src/utils.php @@ -5,6 +5,8 @@ * @package automattic/jetpack-mu-wpcom */ +use Automattic\Jetpack\Jetpack_Mu_Wpcom; + /** * Helper function to return the site slug for Calypso URLs. * The fallback logic here is derived from the following code: @@ -51,3 +53,35 @@ function wpcom_get_calypso_origin() { ); return in_array( $origin, $allowed, true ) ? $origin : 'https://wordpress.com'; } + +/** + * Returns the Calypso domain that originated the current request. + * + * @param string $asset_name The name of the asset. + * @param array $asset_types The types of the asset. + */ +function jetpack_mu_wpcom_enqueue_assets( $asset_name, $asset_types = array() ) { + $asset_file = include Jetpack_Mu_Wpcom::BASE_DIR . "build/$asset_name/$asset_name.asset.php"; + + if ( in_array( 'js', $asset_types, true ) ) { + $js_file = "build/$asset_name/$asset_name.js"; + wp_enqueue_script( + "jetpack-mu-wpcom-$asset_name-script", + plugins_url( $js_file, Jetpack_Mu_Wpcom::BASE_FILE ), + $asset_file['dependencies'] ?? array(), + $asset_file['version'] ?? filemtime( Jetpack_Mu_Wpcom::BASE_DIR . $js_file ), + true + ); + } + + if ( in_array( 'css', $asset_types, true ) ) { + $css_ext = is_rtl() ? 'rtl.css' : 'css'; + $css_file = "build/$asset_name/$asset_name.$css_ext"; + wp_enqueue_style( + "jetpack-mu-wpcom-$asset_name-style", + plugins_url( $css_file, Jetpack_Mu_Wpcom::BASE_FILE ), + array(), + filemtime( Jetpack_Mu_Wpcom::BASE_DIR . $css_file ) + ); + } +} diff --git a/projects/packages/jetpack-mu-wpcom/webpack.config.js b/projects/packages/jetpack-mu-wpcom/webpack.config.js index c93769b4d2af0..94fb0e003fe82 100644 --- a/projects/packages/jetpack-mu-wpcom/webpack.config.js +++ b/projects/packages/jetpack-mu-wpcom/webpack.config.js @@ -27,6 +27,11 @@ module.exports = [ './src/features/paragraph-block-placeholder/paragraph-block-placeholder.js', 'tags-education': './src/features/tags-education/tags-education.js', 'wpcom-admin-bar': './src/features/wpcom-admin-bar/wpcom-admin-bar.scss', + 'wpcom-blocks-event-countdown-editor': + './src/features/wpcom-blocks/event-countdown/editor.js', + 'wpcom-blocks-event-countdown-view': './src/features/wpcom-blocks/event-countdown/view.js', + 'wpcom-blocks-timeline-editor': './src/features/wpcom-blocks/timeline/editor.js', + 'wpcom-blocks-timeline-view': './src/features/wpcom-blocks/timeline/view.js', 'wpcom-block-description-links': './src/features/wpcom-block-description-links/index.tsx', 'wpcom-sidebar-notice': './src/features/wpcom-sidebar-notice/wpcom-sidebar-notice.scss', 'wpcom-documentation-links': diff --git a/projects/plugins/jetpack/changelog/mu-wpcom-eventcoutdown-timeline-blocks b/projects/plugins/jetpack/changelog/mu-wpcom-eventcoutdown-timeline-blocks new file mode 100644 index 0000000000000..bd49499fd0098 --- /dev/null +++ b/projects/plugins/jetpack/changelog/mu-wpcom-eventcoutdown-timeline-blocks @@ -0,0 +1,4 @@ +Significance: minor +Type: enhancement + +MU WPCOM: Move countdown and timeline blocks from jetpack to jetpack-mu-wpcom diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/editor.js b/projects/plugins/jetpack/extensions/blocks/event-countdown/editor.js deleted file mode 100644 index 0e5ea7078774f..0000000000000 --- a/projects/plugins/jetpack/extensions/blocks/event-countdown/editor.js +++ /dev/null @@ -1,10 +0,0 @@ -import { registerJetpackBlockFromMetadata } from '../../shared/register-jetpack-block'; -import metadata from './block.json'; -import edit from './edit'; -import save from './save'; -import './editor.scss'; - -registerJetpackBlockFromMetadata( metadata, { - edit, - save, -} ); diff --git a/projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.php b/projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.php deleted file mode 100644 index 31b99a434dc10..0000000000000 --- a/projects/plugins/jetpack/extensions/blocks/event-countdown/event-countdown.php +++ /dev/null @@ -1,39 +0,0 @@ - __NAMESPACE__ . '\load_assets' ) - ); -} -add_action( 'init', __NAMESPACE__ . '\register_block' ); - -/** - * EventCountdown block. - * - * @param array $attr Array containing the EventCountdown block attributes. - * @param string $content String containing the EventCountdown block content. - * - * @return string - */ -function load_assets( $attr, $content ) { - Jetpack_Gutenberg::load_assets_as_required( __DIR__ ); - return $content; -} diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/editor.js b/projects/plugins/jetpack/extensions/blocks/timeline/editor.js deleted file mode 100644 index 226bfd15dd6ee..0000000000000 --- a/projects/plugins/jetpack/extensions/blocks/timeline/editor.js +++ /dev/null @@ -1,18 +0,0 @@ -import { registerJetpackBlockFromMetadata } from '../../shared/register-jetpack-block'; -import metadata from './block.json'; -import edit from './edit'; -import example from './example'; -import save from './save'; -import * as timelineItem from './timeline-item'; -import './editor.scss'; -import './style.scss'; - -registerJetpackBlockFromMetadata( - metadata, - { - edit, - save, - example, - }, - [ timelineItem ] -); diff --git a/projects/plugins/jetpack/extensions/blocks/timeline/timeline.php b/projects/plugins/jetpack/extensions/blocks/timeline/timeline.php deleted file mode 100644 index aa31af39aec8b..0000000000000 --- a/projects/plugins/jetpack/extensions/blocks/timeline/timeline.php +++ /dev/null @@ -1,39 +0,0 @@ - __NAMESPACE__ . '\load_assets' ) - ); -} -add_action( 'init', __NAMESPACE__ . '\register_block' ); - -/** - * Timeline block. - * - * @param array $attr Array containing the Timeline block attributes. - * @param string $content String containing the Timeline block content. - * - * @return string - */ -function load_assets( $attr, $content ) { - Jetpack_Gutenberg::load_assets_as_required( __DIR__ ); - return $content; -} diff --git a/projects/plugins/jetpack/extensions/index.json b/projects/plugins/jetpack/extensions/index.json index f1bc99fe035ad..c7ee8bf1e3c87 100644 --- a/projects/plugins/jetpack/extensions/index.json +++ b/projects/plugins/jetpack/extensions/index.json @@ -12,7 +12,6 @@ "contact-form/salesforce-lead-form", "contact-info", "donations", - "event-countdown", "eventbrite", "gif", "google-calendar", @@ -45,7 +44,6 @@ "subscriber-login", "subscriptions", "tiled-gallery", - "timeline", "tock", "videopress", "wordads", From 8ff0828c6311c5a0179415882c61264b22d76b50 Mon Sep 17 00:00:00 2001 From: Douglas Henri Date: Thu, 11 Jul 2024 11:54:23 -0300 Subject: [PATCH 105/254] AI Assistant: Add ambiguous words to proofread features list (#38292) * fix ts issues and add types * add ambiguous words feature * fix menu spacing * changelog --- .../changelog/add-proofread-weasel-words | 4 ++ .../components/breve/breve.scss | 7 +++ .../components/breve/controls.js | 20 ++++---- .../breve/dictionaries/dictionaries-config.js | 2 +- .../breve/features/_features.colors.scss | 3 +- .../breve/features/ambiguous-words/index.ts | 34 ++++++++++++++ .../ambiguous-words/words.ts} | 0 .../breve/features/complex-words/index.ts | 24 ++++++---- .../complex-words/{phrases.js => phrases.ts} | 0 .../components/breve/features/events.ts | 22 +++++---- .../components/breve/features/index.ts | 13 ++++- .../components/breve/highlight/highlight.ts | 32 +++++++++---- .../components/breve/highlight/index.tsx | 29 ++++++++---- .../components/breve/highlight/style.scss | 2 +- .../components/breve/index.ts | 9 +++- .../components/breve/store/actions.ts | 6 +-- .../components/breve/store/reducer.ts | 10 +++- .../components/breve/store/selectors.ts | 29 +++++++----- .../components/breve/types.ts | 47 +++++++++++++++++++ 19 files changed, 225 insertions(+), 68 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/add-proofread-weasel-words create mode 100644 projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/ambiguous-words/index.ts rename projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/{dictionaries/weaselWords.js => features/ambiguous-words/words.ts} (100%) rename projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/{phrases.js => phrases.ts} (100%) create mode 100644 projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/types.ts diff --git a/projects/plugins/jetpack/changelog/add-proofread-weasel-words b/projects/plugins/jetpack/changelog/add-proofread-weasel-words new file mode 100644 index 0000000000000..2e6eb6c61641d --- /dev/null +++ b/projects/plugins/jetpack/changelog/add-proofread-weasel-words @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +AI Assistant: Add ambiguous words to proofread features list diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/breve.scss b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/breve.scss index 06879afce760f..d94add53ee4c6 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/breve.scss +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/breve.scss @@ -2,6 +2,7 @@ .jetpack-ai-proofread { margin-bottom: 24px; + .components-checkbox-control { color: #757575; @@ -22,4 +23,10 @@ color: #757575; margin-left: 12px; } + + .feature-checkboxes-container { + display: flex; + flex-direction: column; + gap: 12px; + } } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js index addd8b104a102..3dce85adaaee1 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/controls.js @@ -118,15 +118,17 @@ const Controls = ( { blocks, disabledFeatures } ) => { onChange={ handleAiFeedbackToggle } label={ __( 'Show suggestions', 'jetpack' ) } /> - { features.map( feature => ( - - ) ) } +
    + { features.map( feature => ( + + ) ) } +
  • diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/dictionaries-config.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/dictionaries-config.js index 9c533956a31eb..23b0a1f3e5ad2 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/dictionaries-config.js +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/dictionaries-config.js @@ -1,8 +1,8 @@ import phrases from '../features/complex-words/phrases'; +import weaselWords from '../features/weasel-words/words'; import { escapeRegExp } from '../utils/escapeRegExp'; import adjectives from './adjectives'; import adverbs from './adverbs'; -import weaselWords from './weaselWords'; const config = { dictionaries: { diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/_features.colors.scss b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/_features.colors.scss index 2777184f72968..a7e43dc64d0ca 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/_features.colors.scss +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/_features.colors.scss @@ -2,7 +2,8 @@ @use 'sass:string'; $features-colors: ( - 'complex-words': rgba( 251, 192, 45, 1 ), + 'complex-words': rgba( 240, 184, 73, 1 ), + 'ambiguous-words': rgba( 0, 175, 82, 1 ), ); @mixin properties( $feature, $color, $properties ) { diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/ambiguous-words/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/ambiguous-words/index.ts new file mode 100644 index 0000000000000..bf0cc8d763e48 --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/ambiguous-words/index.ts @@ -0,0 +1,34 @@ +/** + * Internal dependencies + */ +import { escapeRegExp } from '../../utils/escapeRegExp'; +import weaselWords from './words'; +/** + * Types + */ +import type { BreveFeatureConfig, HighlightedWord } from '../../types'; + +export const AMBIGUOUS_WORDS: BreveFeatureConfig = { + name: 'ambiguous-words', + title: 'Ambiguous words', + tagName: 'span', + className: 'has-proofread-highlight--ambiguous-words', +}; + +const list = new RegExp( `\\b(${ weaselWords.map( escapeRegExp ).join( '|' ) })\\b`, 'gi' ); + +export default function ambiguousWords( text: string ): Array< HighlightedWord > { + const matches = text.matchAll( list ); + const highlightedWords: Array< HighlightedWord > = []; + + for ( const match of matches ) { + const word = match[ 0 ].trim(); + highlightedWords.push( { + word, + startIndex: match.index, + endIndex: match.index + word.length, + } ); + } + + return highlightedWords; +} diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/weaselWords.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/ambiguous-words/words.ts similarity index 100% rename from projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/dictionaries/weaselWords.js rename to projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/ambiguous-words/words.ts diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts index b6fed7ce65e15..85acfba4f0aec 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts @@ -3,26 +3,30 @@ */ import { escapeRegExp } from '../../utils/escapeRegExp'; import phrases from './phrases'; +/** + * Types + */ +import type { BreveFeatureConfig, HighlightedWord } from '../../types'; -export const COMPLEX_WORDS = { +export const COMPLEX_WORDS: BreveFeatureConfig = { name: 'complex-words', title: 'Complex words', tagName: 'span', - className: 'has-proofread-highlight', + className: 'has-proofread-highlight--complex-words', }; -export default function complexWords( text ) { - const list = new RegExp( - `\\b(${ Object.keys( phrases ).map( escapeRegExp ).join( '|' ) })\\b`, - 'gi' - ); +const list = new RegExp( + `\\b(${ Object.keys( phrases ).map( escapeRegExp ).join( '|' ) })\\b`, + 'gi' +); +export default function complexWords( text: string ): Array< HighlightedWord > { const matches = text.matchAll( list ); - const words = []; + const highlightedWords: Array< HighlightedWord > = []; for ( const match of matches ) { const word = match[ 0 ].trim(); - words.push( { + highlightedWords.push( { word, suggestion: phrases[ word ], startIndex: match.index, @@ -30,5 +34,5 @@ export default function complexWords( text ) { } ); } - return words; + return highlightedWords; } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/phrases.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/phrases.ts similarity index 100% rename from projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/phrases.js rename to projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/phrases.ts diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts index 9239f59772d39..4cd12de962c65 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts @@ -7,23 +7,24 @@ import { dispatch } from '@wordpress/data'; */ import getContainer from './container'; import features from './index'; +/** + * Types + */ +import type { BreveDispatch } from '../types'; -let timeout; +let timeout: number; -function handleMouseEnter( e ) { +function handleMouseEnter( e: React.MouseEvent ) { e.stopPropagation(); clearTimeout( timeout ); - // eslint-disable-next-line @typescript-eslint/no-explicit-any - ( dispatch( 'jetpack/ai-breve' ) as any ).setHighlightHover( true ); - // eslint-disable-next-line @typescript-eslint/no-explicit-any - ( dispatch( 'jetpack/ai-breve' ) as any ).setPopoverAnchor( e.target ); + ( dispatch( 'jetpack/ai-breve' ) as BreveDispatch ).setHighlightHover( true ); + ( dispatch( 'jetpack/ai-breve' ) as BreveDispatch ).setPopoverAnchor( e.target ); } -function handleMouseLeave( e ) { +function handleMouseLeave( e: React.MouseEvent ) { e.stopPropagation(); timeout = setTimeout( () => { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - ( dispatch( 'jetpack/ai-breve' ) as any ).setHighlightHover( false ); + ( dispatch( 'jetpack/ai-breve' ) as BreveDispatch ).setHighlightHover( false ); }, 100 ); } @@ -33,7 +34,8 @@ export default function registerEvents( clientId: string ) { const block = container?.querySelector?.( `#${ id }` ); features.forEach( ( { config } ) => { - const items = block?.querySelectorAll?.( `[data-type='${ config.name }']` ); + const items = block?.querySelectorAll?.( `[data-type='${ config.name }']` ) || []; + if ( items?.length > 0 ) { items.forEach( highlightEl => { highlightEl?.removeEventListener?.( 'mouseenter', handleMouseEnter ); diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts index b39f8582e4013..5c14e7aa36a27 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts @@ -1,12 +1,23 @@ /** * Features */ +import ambiguousWords, { AMBIGUOUS_WORDS } from './ambiguous-words'; import complexWords, { COMPLEX_WORDS } from './complex-words'; +/** + * Types + */ +import type { BreveFeature } from '../types'; // Breve Highlights Features -export default [ +const features: Array< BreveFeature > = [ { config: COMPLEX_WORDS, highlight: complexWords, }, + { + config: AMBIGUOUS_WORDS, + highlight: ambiguousWords, + }, ]; + +export default features; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts index 1a57a16ff34d1..aa76c615fb0a4 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts @@ -7,18 +7,34 @@ import { applyFormat } from '@wordpress/rich-text'; */ import type { RichTextFormat, RichTextValue } from '@wordpress/rich-text/build-types/types'; -const applyHighlightFormat = ( { content, type, indexes, attributes = {} } ): RichTextValue => { +const applyHighlightFormat = ( { + content, + type, + indexes, + attributes = {}, +}: { + content: RichTextValue; + type: string; + indexes: Array< { startIndex: number; endIndex: number } >; + attributes: { [ key: string ]: string }; +} ): RichTextValue => { let newContent = content; if ( indexes.length > 0 ) { - newContent = indexes.reduce( ( acc, { startIndex, endIndex } ) => { - const format = { - type, - attributes, - } as RichTextFormat; + newContent = indexes.reduce( + ( + acc: RichTextValue, + { startIndex, endIndex }: { startIndex: number; endIndex: number } + ) => { + const format = { + type, + attributes, + } as RichTextFormat; - return applyFormat( acc, format, startIndex, endIndex ); - }, content ); + return applyFormat( acc, format, startIndex, endIndex ); + }, + content + ); } return newContent; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx index 8293e74bd5256..e1d7acc64118a 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx @@ -5,6 +5,7 @@ import { Button, Popover } from '@wordpress/components'; import { select as globalSelect, useDispatch, useSelect } from '@wordpress/data'; import { __ } from '@wordpress/i18n'; import { registerFormatType, removeFormat, RichTextValue } from '@wordpress/rich-text'; +import React from 'react'; /** * Internal dependencies */ @@ -13,27 +14,30 @@ import features from '../features'; import registerEvents from '../features/events'; import highlight from './highlight'; import './style.scss'; +/** + * Types + */ +import type { BreveSelect } from '../types'; +import type { RichTextFormatList } from '@wordpress/rich-text/build-types/types'; // Setup the Breve highlights export default function Highlight() { const { setPopoverHover } = useDispatch( 'jetpack/ai-breve' ); const popoverOpen = useSelect( select => { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - const store = select( 'jetpack/ai-breve' ) as any; + const store = select( 'jetpack/ai-breve' ) as BreveSelect; const isPopoverHover = store.isPopoverHover(); const isHighlightHover = store.isHighlightHover(); return isHighlightHover || isPopoverHover; }, [] ); const anchor = useSelect( select => { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - return ( select( 'jetpack/ai-breve' ) as any ).getPopoverAnchor(); + return ( select( 'jetpack/ai-breve' ) as BreveSelect ).getPopoverAnchor(); }, [] ); const isPopoverOpen = popoverOpen && anchor; - const selectedFeatured = anchor ? anchor?.getAttribute?.( 'data-type' ) : null; + const selectedFeatured = anchor ? ( anchor as HTMLElement )?.getAttribute?.( 'data-type' ) : null; const featureConfig = features?.find?.( feature => feature.config.name === selectedFeatured ) ?.config ?? { @@ -79,21 +83,28 @@ export default function Highlight() { } export function registerBreveHighlights() { - features.forEach( ( { config, highlight: featureHighlight } ) => { + features.forEach( feature => { + const { highlight: featureHighlight, config } = feature; const { name, ...configSettings } = config; + const settings = { ...configSettings, + __experimentalGetPropsForEditableTreePreparation() { return { - isProofreadEnabled: globalSelect( 'jetpack/ai-breve' ).isProofreadEnabled(), - isFeatureEnabled: globalSelect( 'jetpack/ai-breve' ).isFeatureEnabled( config.name ), + isProofreadEnabled: ( + globalSelect( 'jetpack/ai-breve' ) as BreveSelect + ).isProofreadEnabled(), + isFeatureEnabled: ( globalSelect( 'jetpack/ai-breve' ) as BreveSelect ).isFeatureEnabled( + config.name + ), }; }, __experimentalCreatePrepareEditableTree( { isProofreadEnabled, isFeatureEnabled }, { blockClientId } ) { - return ( formats, text ) => { + return ( formats: Array< RichTextFormatList >, text: string ) => { const record = { formats, text } as RichTextValue; const type = `jetpack/ai-proofread-${ config.name }`; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss index be3683514b980..b0ff0f52af452 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss @@ -1,6 +1,6 @@ @import '../features/features.colors'; -.has-proofread-highlight { +[class^="has-proofread-highlight"] { border-bottom: 3px solid; @include features-colors( ( 'border-bottom-color' ) ); } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/index.ts index d37d17781a9ce..d5e594cd72e14 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/index.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/index.ts @@ -1,7 +1,14 @@ +/** + * Internal dependencies + */ import Controls from './controls'; import { store } from './store'; // Register the store +/** + * Types + */ +import { BreveControls } from './types'; -const Breve = Controls as () => React.JSX.Element; +const Breve = Controls as BreveControls; export { Breve }; export { default as Highlight, registerBreveHighlights } from './highlight'; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts index 6fbb243757b3a..c03a1cf98a8d0 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts @@ -5,21 +5,21 @@ import { select } from '@wordpress/data'; // ACTIONS -export function setHighlightHover( isHover ) { +export function setHighlightHover( isHover: boolean ) { return { type: 'SET_HIGHLIGHT_HOVER', isHover, }; } -export function setPopoverHover( isHover ) { +export function setPopoverHover( isHover: boolean ) { return { type: 'SET_POPOVER_HOVER', isHover, }; } -export function setPopoverAnchor( anchor ) { +export function setPopoverAnchor( anchor: HTMLElement | EventTarget ) { return { type: 'SET_POPOVER_ANCHOR', anchor, diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts index 04c6443c654a5..3f94a9ecebd37 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts @@ -14,7 +14,10 @@ const initialConfiguration = { disabledFeaturesFromLocalStorage !== null ? JSON.parse( disabledFeaturesFromLocalStorage ) : [], }; -export function configuration( state = initialConfiguration, action ) { +export function configuration( + state = initialConfiguration, + action: { type: string; enabled?: boolean; feature?: string } +) { switch ( action.type ) { case 'SET_PROOFREAD_ENABLED': { const enabled = action?.enabled !== undefined ? action?.enabled : ! state?.enabled; @@ -54,7 +57,10 @@ export function configuration( state = initialConfiguration, action ) { return state; } -export function popover( state = {}, action ) { +export function popover( + state = {}, + action: { type: string; isHover?: boolean; anchor?: HTMLElement } +) { switch ( action.type ) { case 'SET_HIGHLIGHT_HOVER': return { diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts index 4d0df05d84242..bcdaa0f64829f 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts @@ -1,27 +1,32 @@ +/** + * Types + */ +import type { BreveState } from '../types'; + // POPOVER -export function isHighlightHover( state ) { - return state.popover.isHighlightHover; +export function isHighlightHover( state: BreveState ) { + return state.popover?.isHighlightHover; } -export function isPopoverHover( state ) { - return state.popover.isPopoverHover; +export function isPopoverHover( state: BreveState ) { + return state.popover?.isPopoverHover; } -export function getPopoverAnchor( state ) { - return state.popover.anchor; +export function getPopoverAnchor( state: BreveState ) { + return state.popover?.anchor; } // CONFIGURATION -export function isProofreadEnabled( state ) { - return state.configuration.enabled; +export function isProofreadEnabled( state: BreveState ) { + return state.configuration?.enabled; } -export function isFeatureEnabled( state, feature ) { - return ! state.configuration.disabled.includes( feature ); +export function isFeatureEnabled( state: BreveState, feature: string ) { + return ! state.configuration?.disabled?.includes( feature ); } -export function getDisabledFeatures( state ) { - return state.configuration.disabled; +export function getDisabledFeatures( state: BreveState ) { + return state.configuration?.disabled; } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/types.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/types.ts new file mode 100644 index 0000000000000..0694823fa94ef --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/types.ts @@ -0,0 +1,47 @@ +export type BreveControls = () => React.JSX.Element; + +export type BreveState = { + popover?: { + isHighlightHover?: boolean; + isPopoverHover?: boolean; + anchor?: HTMLElement | EventTarget; + }; + configuration?: { + enabled?: boolean; + disabled?: Array< string >; + }; +}; + +export type BreveSelect = { + isHighlightHover: () => boolean; + isPopoverHover: () => boolean; + getPopoverAnchor: () => HTMLElement | EventTarget; + isProofreadEnabled: () => boolean; + isFeatureEnabled: ( feature: string ) => boolean; + getDisabledFeatures: () => Array< string >; +}; + +export type BreveDispatch = { + setHighlightHover: ( isHover: boolean ) => void; + setPopoverHover: ( isHover: boolean ) => void; + setPopoverAnchor: ( anchor: HTMLElement | EventTarget ) => void; +}; + +export type BreveFeatureConfig = { + name: string; + title: string; + tagName: string; + className: string; +}; + +export type BreveFeature = { + config: BreveFeatureConfig; + highlight: ( text: string ) => Array< HighlightedWord >; +}; + +export type HighlightedWord = { + word: string; + suggestion?: string; + startIndex: number; + endIndex: number; +}; From 08c1efb4c2308a9fd3944e676d9cf1655a0141d1 Mon Sep 17 00:00:00 2001 From: Ivan Ottinger Date: Thu, 11 Jul 2024 17:29:16 +0200 Subject: [PATCH 106/254] wpcomsh: Update WooCommerce Calypso Bridge to 2.5.3 (#38302) * Bump `wc-calypso-bridge` version to 2.5.3 * Update wpcomsh `composer.lock` * Add changelog --- .../wpcomsh/changelog/update-wc-calypso-bridge-2.5.3 | 4 ++++ projects/plugins/wpcomsh/composer.json | 4 ++-- projects/plugins/wpcomsh/composer.lock | 12 ++++++------ 3 files changed, 12 insertions(+), 8 deletions(-) create mode 100644 projects/plugins/wpcomsh/changelog/update-wc-calypso-bridge-2.5.3 diff --git a/projects/plugins/wpcomsh/changelog/update-wc-calypso-bridge-2.5.3 b/projects/plugins/wpcomsh/changelog/update-wc-calypso-bridge-2.5.3 new file mode 100644 index 0000000000000..176d1bd9d419a --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/update-wc-calypso-bridge-2.5.3 @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +WooCommerce Calypso Bridge: Update version to 2.5.3 diff --git a/projects/plugins/wpcomsh/composer.json b/projects/plugins/wpcomsh/composer.json index fcc0aa228e161..179b55022b27e 100644 --- a/projects/plugins/wpcomsh/composer.json +++ b/projects/plugins/wpcomsh/composer.json @@ -9,7 +9,7 @@ "automattic/custom-fonts": "^3.0", "automattic/custom-fonts-typekit": "^2.0", "automattic/text-media-widget-styles": "^2.0", - "automattic/wc-calypso-bridge": "2.5.2", + "automattic/wc-calypso-bridge": "2.5.3", "wordpress/classic-editor-plugin": "1.5", "automattic/jetpack-config": "@dev", "automattic/jetpack-post-list": "@dev", @@ -149,4 +149,4 @@ "WPCOMSH_VERSION": "wpcomsh.php" } } -} \ No newline at end of file +} diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index 5004760a6735b..b6c1985c1d545 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "ffe5ca5833543183c0d52b550b9ac02a", + "content-hash": "f7d0c73b28dfcf30b3571b3682fc9805", "packages": [ { "name": "automattic/at-pressable-podcasting", @@ -1794,16 +1794,16 @@ }, { "name": "automattic/wc-calypso-bridge", - "version": "v2.5.2", + "version": "v2.5.3", "source": { "type": "git", "url": "https://github.com/Automattic/wc-calypso-bridge.git", - "reference": "60e6bef4ddb7e4546852baa674dfdbb9f3f8e7eb" + "reference": "837f3e9bb7bc391192268343aeaa01f563515fbc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Automattic/wc-calypso-bridge/zipball/60e6bef4ddb7e4546852baa674dfdbb9f3f8e7eb", - "reference": "60e6bef4ddb7e4546852baa674dfdbb9f3f8e7eb", + "url": "https://api.github.com/repos/Automattic/wc-calypso-bridge/zipball/837f3e9bb7bc391192268343aeaa01f563515fbc", + "reference": "837f3e9bb7bc391192268343aeaa01f563515fbc", "shasum": "" }, "require": { @@ -1844,7 +1844,7 @@ "phpcbf -p" ] }, - "time": "2024-06-14T14:44:22+00:00" + "time": "2024-07-11T14:54:19+00:00" }, { "name": "composer/installers", From 034933d39227f2a346071b35db8fbd7d35ba14cb Mon Sep 17 00:00:00 2001 From: Juanma Rodriguez Escriche Date: Thu, 11 Jul 2024 17:32:50 +0200 Subject: [PATCH 107/254] WPCOM Block Editor: Removing files from the Jetpack plugin (#38299) * Remove wpcom-block-editor files * Changelog * Phan update --- projects/plugins/jetpack/.phan/baseline.php | 5 +- .../remove-wpcom-block-editor-module | 4 + .../class-jetpack-wpcom-block-editor.php | 639 ------------------ .../functions.editor-type.php | 72 -- 4 files changed, 6 insertions(+), 714 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/remove-wpcom-block-editor-module delete mode 100644 projects/plugins/jetpack/modules/wpcom-block-editor/class-jetpack-wpcom-block-editor.php delete mode 100644 projects/plugins/jetpack/modules/wpcom-block-editor/functions.editor-type.php diff --git a/projects/plugins/jetpack/.phan/baseline.php b/projects/plugins/jetpack/.phan/baseline.php index 35e86c79b8916..33e31880aae3c 100644 --- a/projects/plugins/jetpack/.phan/baseline.php +++ b/projects/plugins/jetpack/.phan/baseline.php @@ -51,8 +51,8 @@ // PhanTypeMismatchReturnNullable : 10+ occurrences // PhanUndeclaredFunction : 10+ occurrences // PhanTypeComparisonToArray : 9 occurrences - // PhanDeprecatedClass : 8 occurrences // PhanPluginRedundantAssignment : 8 occurrences + // PhanDeprecatedClass : 7 occurrences // PhanTypeMismatchArgumentInternalReal : 7 occurrences // PhanCommentAbstractOnInheritedMethod : 6 occurrences // PhanImpossibleCondition : 5 occurrences @@ -81,7 +81,6 @@ // PhanImpossibleConditionInLoop : 2 occurrences // PhanParamTooManyCallable : 2 occurrences // PhanPluginDuplicateSwitchCaseLooseEquality : 2 occurrences - // PhanPluginUseReturnValueInternalKnown : 2 occurrences // PhanRedefineFunctionInternal : 2 occurrences // PhanStaticCallToNonStatic : 2 occurrences // PhanTypeMismatchArgumentInternalProbablyReal : 2 occurrences @@ -94,6 +93,7 @@ // PhanPluginDuplicateSwitchCase : 1 occurrence // PhanPluginInvalidPregRegex : 1 occurrence // PhanPluginRedundantAssignmentInLoop : 1 occurrence + // PhanPluginUseReturnValueInternalKnown : 1 occurrence // PhanTypeComparisonFromArray : 1 occurrence // PhanTypeVoidArgument : 1 occurrence // PhanUndeclaredExtendedClass : 1 occurrence @@ -501,7 +501,6 @@ 'modules/wordads/php/class-wordads-api.php' => ['PhanTypeMismatchReturn', 'PhanTypeMismatchReturnProbablyReal'], 'modules/wordads/php/class-wordads-params.php' => ['PhanTypeMismatchReturn'], 'modules/wordads/php/class-wordads-sidebar-widget.php' => ['PhanTypeExpectedObjectPropAccessButGotNull', 'PhanTypeMismatchArgument'], - 'modules/wpcom-block-editor/class-jetpack-wpcom-block-editor.php' => ['PhanDeprecatedClass', 'PhanDeprecatedFunction', 'PhanPluginUseReturnValueInternalKnown'], 'sal/class.json-api-date.php' => ['PhanPluginDuplicateExpressionAssignmentOperation', 'PhanRedundantCondition', 'PhanTypeMismatchArgumentInternalProbablyReal'], 'sal/class.json-api-links.php' => ['PhanTypeMismatchArgumentInternal', 'PhanTypeMismatchReturn', 'PhanTypeMismatchReturnProbablyReal'], 'sal/class.json-api-post-base.php' => ['PhanPluginDuplicateConditionalNullCoalescing', 'PhanRedundantCondition', 'PhanTypeMismatchArgument', 'PhanTypeMismatchReturnNullable', 'PhanTypeMismatchReturnProbablyReal', 'PhanTypePossiblyInvalidDimOffset', 'PhanTypeSuspiciousNonTraversableForeach'], diff --git a/projects/plugins/jetpack/changelog/remove-wpcom-block-editor-module b/projects/plugins/jetpack/changelog/remove-wpcom-block-editor-module new file mode 100644 index 0000000000000..f368d56178e5f --- /dev/null +++ b/projects/plugins/jetpack/changelog/remove-wpcom-block-editor-module @@ -0,0 +1,4 @@ +Significance: minor +Type: compat + +WPCOM Block Editor: Removing functionality from Jetpack diff --git a/projects/plugins/jetpack/modules/wpcom-block-editor/class-jetpack-wpcom-block-editor.php b/projects/plugins/jetpack/modules/wpcom-block-editor/class-jetpack-wpcom-block-editor.php deleted file mode 100644 index 654fda4ecc0af..0000000000000 --- a/projects/plugins/jetpack/modules/wpcom-block-editor/class-jetpack-wpcom-block-editor.php +++ /dev/null @@ -1,639 +0,0 @@ -set_cookie_args = array(); - add_action( 'init', array( $this, 'init_actions' ) ); - } - - /** - * Add in all hooks. - */ - public function init_actions() { - // Bail early if Jetpack's block editor extensions are disabled on the site. - /* This filter is documented in class.jetpack-gutenberg.php */ - if ( ! apply_filters( 'jetpack_gutenberg', true ) ) { - return; - } - - if ( $this->is_iframed_block_editor() ) { - add_action( 'admin_init', array( $this, 'disable_send_frame_options_header' ), 9 ); - add_filter( 'admin_body_class', array( $this, 'add_iframed_body_class' ) ); - } - - require_once __DIR__ . '/functions.editor-type.php'; - add_action( 'edit_form_top', 'Jetpack\EditorType\remember_classic_editor' ); - add_action( 'login_init', array( $this, 'allow_block_editor_login' ), 1 ); - add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_block_editor_assets' ), 9 ); - add_action( 'enqueue_block_assets', array( $this, 'enqueue_block_assets' ) ); - add_filter( 'mce_external_plugins', array( $this, 'add_tinymce_plugins' ) ); - add_filter( 'block_editor_settings_all', 'Jetpack\EditorType\remember_block_editor', 10, 2 ); - - $this->enable_cross_site_auth_cookies(); - } - - /** - * Checks if we are embedding the block editor in an iframe in WordPress.com. - * - * @return bool Whether the current request is from the iframed block editor. - */ - public function is_iframed_block_editor() { - global $pagenow; - - // phpcs:ignore WordPress.Security.NonceVerification - return ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && ! empty( $_GET['frame-nonce'] ); - } - - /** - * Prevents frame options header from firing if this is a allowed iframe request. - */ - public function disable_send_frame_options_header() { - // phpcs:ignore WordPress.Security.NonceVerification, WordPress.Security.ValidatedSanitizedInput - if ( isset( $_GET['frame-nonce'] ) && $this->framing_allowed( $_GET['frame-nonce'] ) ) { - remove_action( 'admin_init', 'send_frame_options_header' ); - } - } - - /** - * Adds custom admin body class if this is a allowed iframe request. - * - * @param string $classes Admin body classes. - * @return string - */ - public function add_iframed_body_class( $classes ) { - // phpcs:ignore WordPress.Security.NonceVerification, WordPress.Security.ValidatedSanitizedInput - if ( isset( $_GET['frame-nonce'] ) && $this->framing_allowed( $_GET['frame-nonce'] ) ) { - $classes .= ' is-iframed '; - } - - return $classes; - } - - /** - * Checks to see if cookie can be set in current context. If 3rd party cookie blocking - * is enabled the editor can't load in iFrame, so emiting X-Frame-Options: DENY will - * force the editor to break out of the iFrame. - */ - private function check_iframe_cookie_setting() { - if ( ! isset( $_SERVER['QUERY_STRING'] ) || ! strpos( filter_var( wp_unslash( $_SERVER['QUERY_STRING'] ) ), 'calypsoify%3D1%26block-editor' ) || isset( $_COOKIE['wordpress_test_cookie'] ) ) { - return; - } - - if ( isset( $_SERVER['REQUEST_URI'] ) && empty( $_GET['calypsoify_cookie_check'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended - header( 'Location: ' . esc_url_raw( wp_unslash( $_SERVER['REQUEST_URI'] ) . '&calypsoify_cookie_check=true' ) ); - exit; - } - - header( 'X-Frame-Options: DENY' ); - exit; - } - - /** - * Allows to iframe the login page if a user is logged out - * while trying to access the block editor from wordpress.com. - */ - public function allow_block_editor_login() { - // phpcs:ignore WordPress.Security.NonceVerification - if ( empty( $_REQUEST['redirect_to'] ) ) { - return; - } - // phpcs:ignore WordPress.Security.NonceVerification - $redirect_to = esc_url_raw( wp_unslash( $_REQUEST['redirect_to'] ) ); - - $this->check_iframe_cookie_setting(); - - $query = wp_parse_url( urldecode( $redirect_to ), PHP_URL_QUERY ); - $args = wp_parse_args( $query ); - - // Check nonce and make sure this is a Gutenframe request. - if ( ! empty( $args['frame-nonce'] ) && $this->framing_allowed( $args['frame-nonce'] ) ) { - - // If SSO is active, we'll let WordPress.com handle authentication... - if ( ( new Modules() )->is_active( 'sso' ) ) { - // ...but only if it's not an Atomic site. They already do that. - if ( ! ( new Host() )->is_woa_site() ) { - add_filter( 'jetpack_sso_bypass_login_forward_wpcom', '__return_true' ); - } - } else { - $_REQUEST['interim-login'] = true; - add_action( 'wp_login', array( $this, 'do_redirect' ) ); - add_action( 'login_form', array( $this, 'add_login_html' ) ); - add_filter( 'wp_login_errors', array( $this, 'add_login_message' ) ); - remove_action( 'login_init', 'send_frame_options_header' ); - wp_add_inline_style( 'login', '.interim-login #login{padding-top:8%}' ); - } - } - } - - /** - * Adds a login message. - * - * Intended to soften the expectation mismatch of ending up with a login screen rather than the editor. - * - * @param WP_Error $errors WP Error object. - * @return \WP_Error - */ - public function add_login_message( $errors ) { - $errors->remove( 'expired' ); - $errors->add( 'info', __( 'Before we continue, please log in to your Jetpack site.', 'jetpack' ), 'message' ); - - return $errors; - } - - /** - * Maintains the `redirect_to` parameter in login form links. - * Adds visual feedback of login in progress. - */ - public function add_login_html() { - ?> - - - verify_frame_nonce( $nonce, 'frame-' . $blog_id ); - - if ( is_wp_error( $verified ) ) { - wp_die( $verified ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - } - - if ( $verified && ! defined( 'IFRAME_REQUEST' ) ) { - define( 'IFRAME_REQUEST', true ); - } - - return (bool) $verified; - } - - /** - * Verify that correct nonce was used with time limit. - * - * The user is given an amount of time to use the token, so therefore, since the - * UID and $action remain the same, the independent variable is the time. - * - * @param string $nonce Nonce that was used in the form to verify. - * @param string $action Should give context to what is taking place and be the same when nonce was created. - * @return boolean|WP_Error Whether the nonce is valid. - */ - public function verify_frame_nonce( $nonce, $action ) { - if ( empty( $nonce ) ) { - return false; - } - - list( $expiration, $user_id, $hash ) = explode( ':', $nonce, 3 ); - - $this->nonce_user_id = (int) $user_id; - if ( ! $this->nonce_user_id ) { - return false; - } - - $token = ( new Tokens() )->get_access_token( $this->nonce_user_id ); - if ( ! $token ) { - return false; - } - - /* - * Failures must return `false` (blocking the iframe) prior to the - * signature verification. - */ - - add_filter( 'salt', array( $this, 'filter_salt' ), 10, 2 ); - $expected_hash = wp_hash( "$expiration|$action|{$this->nonce_user_id}", 'jetpack_frame_nonce' ); - remove_filter( 'salt', array( $this, 'filter_salt' ) ); - - if ( ! hash_equals( $hash, $expected_hash ) ) { - return false; - } - - /* - * Failures may return `WP_Error` (showing an error in the iframe) after the - * signature verification passes. - */ - - if ( time() > $expiration ) { - return new WP_Error( 'nonce_invalid_expired', 'Expired nonce.', array( 'status' => 401 ) ); - } - - // Check if it matches the current user, unless they're trying to log in. - if ( get_current_user_id() !== $this->nonce_user_id && ! doing_action( 'login_init' ) ) { - return new WP_Error( 'nonce_invalid_user_mismatch', 'User ID mismatch.', array( 'status' => 401 ) ); - } - - return true; - } - - /** - * Filters the WordPress salt. - * - * @param string $salt Salt for the given scheme. - * @param string $scheme Authentication scheme. - * @return string - */ - public function filter_salt( $salt, $scheme ) { - if ( 'jetpack_frame_nonce' === $scheme ) { - $token = ( new Tokens() )->get_access_token( $this->nonce_user_id ); - - if ( $token ) { - $salt = $token->secret; - } - } - - return $salt; - } - - /** - * Enqueues the WordPress.com block editor integration assets for the editor. - */ - public function enqueue_block_editor_assets() { - global $pagenow; - - // Bail if we're not in the post editor, but on the widget settings screen. - if ( is_customize_preview() || 'widgets.php' === $pagenow ) { - return; - } - - $debug = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG; - $version = gmdate( 'Ymd' ); - - wp_enqueue_script( - 'wpcom-block-editor-default-editor-script', - $debug - ? '//widgets.wp.com/wpcom-block-editor/default.editor.js?minify=false' - : '//widgets.wp.com/wpcom-block-editor/default.editor.min.js', - array( - 'jquery', - 'lodash', - 'wp-annotations', - 'wp-compose', - 'wp-data', - 'wp-editor', - 'wp-element', - 'wp-rich-text', - ), - $version, - true - ); - - wp_localize_script( - 'wpcom-block-editor-default-editor-script', - 'wpcomGutenberg', - array( - 'richTextToolbar' => array( - 'justify' => __( 'Justify', 'jetpack' ), - 'underline' => __( 'Underline', 'jetpack' ), - ), - ) - ); - - if ( ( new Host() )->is_woa_site() ) { - wp_enqueue_script( - 'wpcom-block-editor-wpcom-editor-script', - $debug - ? '//widgets.wp.com/wpcom-block-editor/wpcom.editor.js?minify=false' - : '//widgets.wp.com/wpcom-block-editor/wpcom.editor.min.js', - array( - 'lodash', - 'wp-blocks', - 'wp-data', - 'wp-dom-ready', - 'wp-plugins', - ), - $version, - true - ); - wp_enqueue_style( - 'wpcom-block-editor-wpcom-editor-styles', - $debug - ? '//widgets.wp.com/wpcom-block-editor/wpcom.editor.css?minify=false' - : '//widgets.wp.com/wpcom-block-editor/wpcom.editor.min.css', - array(), - $version - ); - } - - if ( $this->is_iframed_block_editor() ) { - wp_enqueue_script( - 'wpcom-block-editor-calypso-editor-script', - $debug - ? '//widgets.wp.com/wpcom-block-editor/calypso.editor.js?minify=false' - : '//widgets.wp.com/wpcom-block-editor/calypso.editor.min.js', - array( - 'calypsoify_wpadminmods_js', - 'jquery', - 'lodash', - 'react', - 'wp-blocks', - 'wp-data', - 'wp-hooks', - 'wp-tinymce', - 'wp-url', - ), - $version, - true - ); - - wp_enqueue_style( - 'wpcom-block-editor-calypso-editor-styles', - $debug - ? '//widgets.wp.com/wpcom-block-editor/calypso.editor.css?minify=false' - : '//widgets.wp.com/wpcom-block-editor/calypso.editor.min.css', - array(), - $version - ); - } - } - - /** - * Enqueues the WordPress.com block editor integration assets for both editor and front-end. - */ - public function enqueue_block_assets() { - // These styles are manually copied from //widgets.wp.com/wpcom-block-editor/default.view.css in order to - // improve the performance by avoiding an extra network request to download the CSS file on every page. - wp_add_inline_style( 'wp-block-library', '.has-text-align-justify{text-align:justify;}' ); - } - - /** - * Determines if the current $post contains a justified paragraph block. - * - * @return boolean true if justified paragraph is found, false otherwise. - */ - public function has_justified_block() { - global $post; - if ( ! $post instanceof WP_Post ) { - return false; - } - - if ( ! has_blocks( $post ) ) { - return false; - } - - return str_contains( $post->post_content, '
    {#if $guideState === 'active'} +
    +
    +
    {#if responseCode} diff --git a/projects/plugins/inspect/changelog/renovate-svelte-4.x b/projects/plugins/inspect/changelog/renovate-svelte-4.x new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/plugins/inspect/changelog/renovate-svelte-4.x @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/plugins/inspect/package.json b/projects/plugins/inspect/package.json index 89e7b39b95e85..5a2dba8c62b69 100644 --- a/projects/plugins/inspect/package.json +++ b/projects/plugins/inspect/package.json @@ -38,7 +38,7 @@ "rollup-plugin-postcss": "4.0.2", "rollup-plugin-svelte": "7.2.2", "sass": "1.64.1", - "svelte": "3.58.0", + "svelte": "4.2.18", "svelte-preprocess": "5.0.4", "tslib": "2.5.0", "typescript": "5.0.4", diff --git a/tools/js-tools/eslintrc/svelte.js b/tools/js-tools/eslintrc/svelte.js index 6bbc0730afead..daf0944e30be7 100644 --- a/tools/js-tools/eslintrc/svelte.js +++ b/tools/js-tools/eslintrc/svelte.js @@ -11,6 +11,11 @@ module.exports = { parserOptions: { parser: require.resolve( '@typescript-eslint/parser' ), }, + settings: { + 'import/parsers': { + '@typescript-eslint/parser': [ '.js' ], + }, + }, }, ], rules: { diff --git a/tools/js-tools/package.json b/tools/js-tools/package.json index 557733c1abe0e..d1a610eeecf57 100644 --- a/tools/js-tools/package.json +++ b/tools/js-tools/package.json @@ -56,7 +56,7 @@ "prettier-plugin-svelte": "3.0.3", "semver": "7.5.2", "sort-package-json": "1.50.0", - "svelte": "3.58.0", + "svelte": "4.2.18", "svelte-eslint-parser": "0.39.2", "typescript": "5.0.4", "yaml": "2.2.2" From c08834c1257063123c550361f39a4d43d535c6f0 Mon Sep 17 00:00:00 2001 From: Calypso Bot Date: Thu, 11 Jul 2024 11:39:43 -0500 Subject: [PATCH 109/254] Update dependency svelte-preprocess to v6 (#38303) * Update dependency svelte-preprocess to v6 * Add `verbatimModuleSyntax` to tsconfig (and then fix type includes). --------- Co-authored-by: Renovate Bot Co-authored-by: Brad Jorsch --- pnpm-lock.yaml | 83 +++---------------- .../changelog/renovate-svelte-preprocess-6.x | 4 + projects/js-packages/image-guide/package.json | 2 +- .../image-guide/src/find-image-elements.ts | 2 +- projects/js-packages/image-guide/src/index.ts | 4 +- .../js-packages/image-guide/tsconfig.json | 3 +- .../changelog/renovate-svelte-preprocess-6.x | 4 + projects/plugins/inspect/package.json | 2 +- projects/plugins/inspect/tsconfig.json | 3 +- 9 files changed, 29 insertions(+), 78 deletions(-) create mode 100644 projects/js-packages/image-guide/changelog/renovate-svelte-preprocess-6.x create mode 100644 projects/plugins/inspect/changelog/renovate-svelte-preprocess-6.x diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5329193f11364..31a8e780d1f55 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -721,8 +721,8 @@ importers: specifier: 4.2.18 version: 4.2.18 svelte-preprocess: - specifier: 5.0.4 - version: 5.0.4(@babel/core@7.24.7)(postcss@8.4.31)(sass@1.64.1)(svelte@4.2.18)(typescript@5.0.4) + specifier: 6.0.2 + version: 6.0.2(@babel/core@7.24.7)(postcss@8.4.31)(sass@1.64.1)(svelte@4.2.18)(typescript@5.0.4) tslib: specifier: 2.5.0 version: 2.5.0 @@ -3593,8 +3593,8 @@ importers: specifier: 4.2.18 version: 4.2.18 svelte-preprocess: - specifier: 5.0.4 - version: 5.0.4(@babel/core@7.24.7)(postcss@8.4.31)(sass@1.64.1)(svelte@4.2.18)(typescript@5.0.4) + specifier: 6.0.2 + version: 6.0.2(@babel/core@7.24.7)(postcss@8.4.31)(sass@1.64.1)(svelte@4.2.18)(typescript@5.0.4) typescript: specifier: 5.0.4 version: 5.0.4 @@ -7407,9 +7407,6 @@ packages: '@types/prop-types@15.7.12': resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} - '@types/pug@2.0.10': - resolution: {integrity: sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==} - '@types/qrcode.react@1.0.5': resolution: {integrity: sha512-BghPtnlwvrvq8QkGa1H25YnN+5OIgCKFuQruncGWLGJYOzeSKiix/4+B9BtfKF2wf5ja8yfyWYA3OXju995G8w==} @@ -8537,10 +8534,6 @@ packages: buffer-crc32@0.2.13: resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - buffer-crc32@1.0.0: - resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==} - engines: {node: '>=8.0.0'} - buffer-from@0.1.2: resolution: {integrity: sha512-RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg==} @@ -9557,9 +9550,6 @@ packages: es6-error@4.1.1: resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} - es6-promise@3.3.1: - resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} - esbuild-loader@3.0.1: resolution: {integrity: sha512-aZfGybqTeuyCd4AsVvWOOfkhIuN+wfZFjMyh3gyQEU1Uvsl8L6vye9HqP93iRa0iTA+6Jclap514PJIC3cLnMA==} peerDependencies: @@ -11694,10 +11684,6 @@ packages: mkdirp-classic@0.5.3: resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} - mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true - mkdirp@1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} @@ -13113,11 +13099,6 @@ packages: deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true - rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true - rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} deprecated: Rimraf versions prior to v4 are no longer supported @@ -13197,9 +13178,6 @@ packages: safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - sander@0.5.1: - resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} - sass-loader@12.4.0: resolution: {integrity: sha512-7xN+8khDIzym1oL9XyS6zP6Ges+Bo2B2xbPrjdMHEYyV3AQYhd/wXeru++3ODHF0zMjYmVadblSKrPrjEkL8mg==} engines: {node: '>= 12.13.0'} @@ -13385,10 +13363,6 @@ packages: resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} - sorcery@0.11.1: - resolution: {integrity: sha512-o7npfeJE6wi6J9l0/5LKshFzZ2rMatRiCDwYeDQaOzqdzRJwALhX7mk/A/ecg6wjMu7wdZbmXfD2S/vpOg0bdQ==} - hasBin: true - sort-object-keys@1.1.3: resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==} @@ -13655,21 +13629,21 @@ packages: svelte: optional: true - svelte-preprocess@5.0.4: - resolution: {integrity: sha512-ABia2QegosxOGsVlsSBJvoWeXy1wUKSfF7SWJdTjLAbx/Y3SrVevvvbFNQqrSJw89+lNSsM58SipmZJ5SRi5iw==} - engines: {node: '>= 14.10.0'} + svelte-preprocess@6.0.2: + resolution: {integrity: sha512-OvDTLfaOkkhjprbDKO0SOCkjNYuHy16dbD4SpqbIi6QiabOMHxRT4km5/dzbFFkmW1L0E2INF3MFltG2pgOyKQ==} + engines: {node: '>= 18.0.0'} peerDependencies: '@babel/core': ^7.10.2 coffeescript: ^2.5.1 less: ^3.11.3 || ^4.0.0 postcss: ^7 || ^8 - postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 + postcss-load-config: '>=3' pug: ^3.0.0 sass: ^1.26.8 - stylus: ^0.55.0 + stylus: '>=0.55' sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0 - svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 - typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0' + svelte: ^4.0.0 || ^5.0.0-next.100 || ^5.0.0 + typescript: ^5.0.0 peerDependenciesMeta: '@babel/core': optional: true @@ -18464,8 +18438,6 @@ snapshots: '@types/prop-types@15.7.12': {} - '@types/pug@2.0.10': {} - '@types/qrcode.react@1.0.5': dependencies: '@types/react': 18.3.1 @@ -20866,8 +20838,6 @@ snapshots: buffer-crc32@0.2.13: {} - buffer-crc32@1.0.0: {} - buffer-from@0.1.2: {} buffer-from@1.1.2: {} @@ -22015,8 +21985,6 @@ snapshots: es6-error@4.1.1: {} - es6-promise@3.3.1: {} - esbuild-loader@3.0.1(webpack@5.76.0(webpack-cli@4.9.1)): dependencies: esbuild: 0.17.19 @@ -24877,10 +24845,6 @@ snapshots: mkdirp-classic@0.5.3: {} - mkdirp@0.5.6: - dependencies: - minimist: 1.2.8 - mkdirp@1.0.4: {} mlly@1.7.1: @@ -26345,10 +26309,6 @@ snapshots: dependencies: glob: 7.2.3 - rimraf@2.7.1: - dependencies: - glob: 7.2.3 - rimraf@3.0.2: dependencies: glob: 7.2.3 @@ -26446,13 +26406,6 @@ snapshots: safer-buffer@2.1.2: {} - sander@0.5.1: - dependencies: - es6-promise: 3.3.1 - graceful-fs: 4.2.11 - mkdirp: 0.5.6 - rimraf: 2.7.1 - sass-loader@12.4.0(sass@1.64.1)(webpack@5.76.0(webpack-cli@4.9.1)): dependencies: klona: 2.0.6 @@ -26656,13 +26609,6 @@ snapshots: ip-address: 9.0.5 smart-buffer: 4.2.0 - sorcery@0.11.1: - dependencies: - '@jridgewell/sourcemap-codec': 1.4.15 - buffer-crc32: 1.0.0 - minimist: 1.2.8 - sander: 0.5.1 - sort-object-keys@1.1.3: {} sort-package-json@1.50.0: @@ -26978,13 +26924,8 @@ snapshots: optionalDependencies: svelte: 4.2.18 - svelte-preprocess@5.0.4(@babel/core@7.24.7)(postcss@8.4.31)(sass@1.64.1)(svelte@4.2.18)(typescript@5.0.4): + svelte-preprocess@6.0.2(@babel/core@7.24.7)(postcss@8.4.31)(sass@1.64.1)(svelte@4.2.18)(typescript@5.0.4): dependencies: - '@types/pug': 2.0.10 - detect-indent: 6.1.0 - magic-string: 0.27.0 - sorcery: 0.11.1 - strip-indent: 3.0.0 svelte: 4.2.18 optionalDependencies: '@babel/core': 7.24.7 diff --git a/projects/js-packages/image-guide/changelog/renovate-svelte-preprocess-6.x b/projects/js-packages/image-guide/changelog/renovate-svelte-preprocess-6.x new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/js-packages/image-guide/changelog/renovate-svelte-preprocess-6.x @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/js-packages/image-guide/package.json b/projects/js-packages/image-guide/package.json index 0305f70eae978..3c2bfa39a1d18 100644 --- a/projects/js-packages/image-guide/package.json +++ b/projects/js-packages/image-guide/package.json @@ -53,7 +53,7 @@ "rollup-plugin-svelte-svg": "1.0.0-beta.6", "sass": "1.64.1", "svelte": "4.2.18", - "svelte-preprocess": "5.0.4", + "svelte-preprocess": "6.0.2", "tslib": "2.5.0", "typescript": "5.0.4", "webpack": "5.76.0", diff --git a/projects/js-packages/image-guide/src/find-image-elements.ts b/projects/js-packages/image-guide/src/find-image-elements.ts index ecc60455dfd3e..70894c5ff5f8e 100644 --- a/projects/js-packages/image-guide/src/find-image-elements.ts +++ b/projects/js-packages/image-guide/src/find-image-elements.ts @@ -1,4 +1,4 @@ -import { FetchFn, MeasurableImage } from './MeasurableImage.js'; +import { MeasurableImage, type FetchFn } from './MeasurableImage.js'; /** * Get elements that either are image tags or have a background image. diff --git a/projects/js-packages/image-guide/src/index.ts b/projects/js-packages/image-guide/src/index.ts index 27e3dd50f8e74..24e376ac7a08d 100644 --- a/projects/js-packages/image-guide/src/index.ts +++ b/projects/js-packages/image-guide/src/index.ts @@ -1,5 +1,5 @@ -import { Dimensions, FetchFn, MeasurableImage, Weight } from './MeasurableImage.js'; -import { TracksCallback } from './analytics.js'; +import { MeasurableImage, type Dimensions, type FetchFn, type Weight } from './MeasurableImage.js'; +import { type TracksCallback } from './analytics.js'; import { getMeasurableImages } from './find-image-elements.js'; import { setupLoadListener } from './initialize.js'; import AdminBarToggle from './ui/AdminBarToggle.svelte'; diff --git a/projects/js-packages/image-guide/tsconfig.json b/projects/js-packages/image-guide/tsconfig.json index dbb4b773ac828..51861113d83c4 100644 --- a/projects/js-packages/image-guide/tsconfig.json +++ b/projects/js-packages/image-guide/tsconfig.json @@ -6,6 +6,7 @@ "typeRoots": [ "./node_modules/@types/" ], "sourceMap": true, "outDir": "./build/", - "target": "es2019" + "target": "es2019", + "verbatimModuleSyntax": true } } diff --git a/projects/plugins/inspect/changelog/renovate-svelte-preprocess-6.x b/projects/plugins/inspect/changelog/renovate-svelte-preprocess-6.x new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/plugins/inspect/changelog/renovate-svelte-preprocess-6.x @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/plugins/inspect/package.json b/projects/plugins/inspect/package.json index 5a2dba8c62b69..e15a92115cb90 100644 --- a/projects/plugins/inspect/package.json +++ b/projects/plugins/inspect/package.json @@ -39,7 +39,7 @@ "rollup-plugin-svelte": "7.2.2", "sass": "1.64.1", "svelte": "4.2.18", - "svelte-preprocess": "5.0.4", + "svelte-preprocess": "6.0.2", "tslib": "2.5.0", "typescript": "5.0.4", "zod": "3.22.3" diff --git a/projects/plugins/inspect/tsconfig.json b/projects/plugins/inspect/tsconfig.json index c170a13e3ab12..06941d9b86bda 100644 --- a/projects/plugins/inspect/tsconfig.json +++ b/projects/plugins/inspect/tsconfig.json @@ -7,6 +7,7 @@ "strict": true, "types": [], "baseUrl": ".", - "paths": {} + "paths": {}, + "verbatimModuleSyntax": true } } From e76624a4c6196ea24dfa670a80f73bc7f15e3e5c Mon Sep 17 00:00:00 2001 From: Omar Alshaker Date: Thu, 11 Jul 2024 20:15:23 +0200 Subject: [PATCH 110/254] Jetpack-mu-wpcom: Simplify the Help Center translations (#38300) --- .../packages/jetpack-mu-wpcom/.gitattributes | 3 - .../bin/download-help-center-languages.js | 70 ------------------- .../simplify-help-center-translations | 4 ++ .../packages/jetpack-mu-wpcom/package.json | 2 +- .../src/features/help-center/README.md | 9 +-- .../help-center/class-help-center.php | 26 ++++--- .../simplify-help-center-translations | 4 ++ projects/plugins/wpcomsh/package.json | 2 +- 8 files changed, 26 insertions(+), 94 deletions(-) delete mode 100644 projects/packages/jetpack-mu-wpcom/bin/download-help-center-languages.js create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/simplify-help-center-translations create mode 100644 projects/plugins/wpcomsh/changelog/simplify-help-center-translations diff --git a/projects/packages/jetpack-mu-wpcom/.gitattributes b/projects/packages/jetpack-mu-wpcom/.gitattributes index 123a3889465f0..4aa9283e17c75 100644 --- a/projects/packages/jetpack-mu-wpcom/.gitattributes +++ b/projects/packages/jetpack-mu-wpcom/.gitattributes @@ -8,9 +8,6 @@ package.json export-ignore # /src/js/example.min.js production-include src/build/** production-include -# We don't want langauges files in git, but we do want them rsynced. -src/features/help-center/languages/** production-include - # Files to exclude from the mirror repo, but included in the monorepo. # Remember to end all directories with `/**` to properly tag every file. .gitignore production-exclude diff --git a/projects/packages/jetpack-mu-wpcom/bin/download-help-center-languages.js b/projects/packages/jetpack-mu-wpcom/bin/download-help-center-languages.js deleted file mode 100644 index b3010a3d34a61..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/bin/download-help-center-languages.js +++ /dev/null @@ -1,70 +0,0 @@ -const fs = require( 'fs' ); -const https = require( 'https' ); -const path = require( 'path' ); - -[ - 'ar', - 'de-ch', - 'de', - 'de_formal', - 'el-po', - 'es-cl', - 'es-mx', - 'es', - 'fr-be', - 'fr-ca', - 'fr-ch', - 'fr', - 'he', - 'id', - 'it', - 'ja', - 'ko', - 'nl', - 'pt-br', - 'ro', - 'ru', - 'sv', - 'tr', - 'zh-cn', - 'zh-sg', - 'zh-tw', -].forEach( lang => { - const url = `https://widgets.wp.com/help-center/languages/${ lang }-v1.1.json`; - const dir = path.resolve( 'src', 'features', 'help-center', 'languages' ); - const dest = path.resolve( dir, `${ lang }-help-center.json` ); - - fs.mkdirSync( dir, { recursive: true } ); - - https.get( url, response => { - let data = ''; - - response.on( 'data', chunk => { - data += chunk; - } ); - - response - .on( 'end', () => { - const dataParsed = JSON.parse( data ); - dataParsed[ '' ][ 'plural-forms' ] = dataParsed[ '' ].plural_forms; - dataParsed[ '' ].lang = dataParsed[ '' ].language; - - const date = new Date( response.headers[ 'last-modified' ] ); - - const JED = { - 'translation-revision-date': date.toISOString(), - generator: 'Jetpack', - domain: 'jetpack-mu-wpcom', - locale_data: { - messages: dataParsed, - }, - }; - - fs.writeFileSync( dest, JSON.stringify( JED ) ); - } ) - .on( 'error', error => { - // eslint-disable-next-line no-console - console.error( `Downloading Help Center languages (${ lang }) failed with error:`, error ); - } ); - } ); -} ); diff --git a/projects/packages/jetpack-mu-wpcom/changelog/simplify-help-center-translations b/projects/packages/jetpack-mu-wpcom/changelog/simplify-help-center-translations new file mode 100644 index 0000000000000..730faf8c021cf --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/simplify-help-center-translations @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +jetpack-mu-wpcom - Help Center: Consume translations directly from widgets.wp.com diff --git a/projects/packages/jetpack-mu-wpcom/package.json b/projects/packages/jetpack-mu-wpcom/package.json index ee017fbdbd157..7792461099c1e 100644 --- a/projects/packages/jetpack-mu-wpcom/package.json +++ b/projects/packages/jetpack-mu-wpcom/package.json @@ -16,7 +16,7 @@ "author": "Automattic", "scripts": { "build": "echo 'Not implemented.'", - "build-js": "pnpm clean && webpack && node bin/download-help-center-languages.js", + "build-js": "pnpm clean && webpack", "build-production": "echo 'Not implemented.'", "build-production-js": "NODE_ENV=production BABEL_ENV=production pnpm build-js", "lint": "eslint --ext .js,.jsx,.cjs,.mjs,.ts,.tsx .", diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/README.md b/projects/packages/jetpack-mu-wpcom/src/features/help-center/README.md index 0ca916d98f8d6..eb48332150956 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/help-center/README.md +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/README.md @@ -47,16 +47,9 @@ If you do want to modify PHP files. Please follow the development process of [`j ### Translations -Translation are download from `widgets.wp.com/help-center/languages` during `jetpack-mu-plugin` build process. Please cd into `projects/packages/jetpack-mu-wpcom` and run: - -1. pnpm run build-production-js -2. jetpack rsync mu-wpcom-plugin - -This will update the translations files. +Translation are enqueued from `widgets.wp.com/help-center/languages` and are downloaded on the client side as normal JS files. This means they're decoupled from `jetpack-mu-plugin` and will be downloaded from your sandbox if you're sandboxing widgets.wp.com. This also means you don't have to re-deploy `jetpack-mu-plugin` after modifying them; releasing them to widgets.wp.com is sufficient. ### Deployment After every change to the Help Center PHP files, you'll have to deploy `jetpack-mu-plugin`. -> [!IMPORTANT] -> If you add new phrases to the Help Center. They will only be translated in Atomic sites after `jetpack-mu-plugin` is released. Which happens twice a day. diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php index 5de78be8928d3..681491b9a20fe 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php @@ -80,7 +80,7 @@ public static function is_next_steps_tutorial_enabled() { * @param string $version The version of the asset file to get. */ public function enqueue_script( $variant, $dependencies, $version ) { - $script_dependencies = $dependencies; + $script_dependencies = $dependencies ?? array(); if ( $variant === 'wp-admin' || $variant === 'wp-admin-disconnected' ) { // Crazy high number to prevent Jetpack removing it @@ -107,12 +107,25 @@ function () { ); } + if ( $variant !== 'wp-admin-disconnected' && $variant !== 'gutenberg-disconnected' ) { + // Load translations directly from widgets.wp.com. + wp_enqueue_script( + 'help-center-translations', + 'https://widgets.wp.com/help-center/languages/' . self::determine_iso_639_locale() . '-v1.js', + array( 'wp-i18n' ), + $version, + true + ); + + $script_dependencies[] = 'help-center-translations'; + } + // If the user is not connected, the Help Center icon will link to the support page. // The disconnected version is significantly smaller than the connected version. wp_enqueue_script( 'help-center', 'https://widgets.wp.com/help-center/help-center-' . $variant . '.min.js', - is_array( $script_dependencies ) ? $script_dependencies : array(), + $script_dependencies, $version, true ); @@ -162,15 +175,6 @@ function () { 'before' ); } - - // `wp_set_script_translations` uses es_ES as the text domain, but we don't have translations for that. - // We want the locale to be 639 (i.e en, es, fr, etc). - add_filter( 'pre_determine_locale', array( $this, 'determine_iso_639_locale' ), 1 ); - - // phpcs:ignore Jetpack.Functions.I18n.TextDomainMismatch -- Jetpack is not responsible for the translate of this script. - wp_set_script_translations( 'help-center', 'default', plugin_dir_path( __FILE__ ) . 'languages' ); - - remove_filter( 'pre_determine_locale', array( $this, 'determine_iso_639_locale' ) ); } /** diff --git a/projects/plugins/wpcomsh/changelog/simplify-help-center-translations b/projects/plugins/wpcomsh/changelog/simplify-help-center-translations new file mode 100644 index 0000000000000..05ffe09f19e66 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/simplify-help-center-translations @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + + diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index 79575c62d8cf8..732fcf9e89431 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -31,4 +31,4 @@ "test": "jest --bail --ci --verbose", "test:watch": "jest --verbose --watchAll" } -} \ No newline at end of file +} From 56adcdff54ab13d75e07f78ad44eb71dff8165c7 Mon Sep 17 00:00:00 2001 From: Igor Zinovyev Date: Thu, 11 Jul 2024 22:08:54 +0300 Subject: [PATCH 111/254] Release tracking: added anon parameter, timestamp, and fixed hyphen replacement. (#38306) * Added the anon value to the _ut parameter. * Added the microseconds timestamp. * Added greedy matching and hyphen replacement. --- tools/includes/send_tracks_event.sh | 5 ++++- tools/release-plugin.sh | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/tools/includes/send_tracks_event.sh b/tools/includes/send_tracks_event.sh index b63064644ab45..457f7eb0be8fa 100644 --- a/tools/includes/send_tracks_event.sh +++ b/tools/includes/send_tracks_event.sh @@ -12,7 +12,10 @@ function send_tracks_event { local TRACKS_URL TRACKS_RESPONSE USER_AGENT PAYLOAD TRACKS_URL='https://public-api.wordpress.com/rest/v1.1/tracks/record?http_envelope=1' USER_AGENT='jetpack-monorepo-cli' - PAYLOAD=$(jq -nr --arg email "$(git config --get user.email)" '.commonProps._ul = $email') + PAYLOAD=$(jq -nr \ + --arg email "$(git config --get user.email)" \ + '.commonProps = {"_ul": $email, "_ut": "anon", "_rt": ( now * 1000 | round ) }' + ) # Add event name to payload. PAYLOAD=$(jq -r --arg eventName "$1" '.events = [{_en: $eventName}]' <<< "$PAYLOAD") diff --git a/tools/release-plugin.sh b/tools/release-plugin.sh index f801fff87e1a3..93a97068a85d5 100755 --- a/tools/release-plugin.sh +++ b/tools/release-plugin.sh @@ -173,13 +173,13 @@ for PLUGIN in "${!PROJECTS[@]}"; do RELEASED_PLUGINS=$( jq \ - --arg property "$( echo "$PLUGIN" | sed 's/\//_/' )_release_type" \ + --arg property "${PLUGIN//[\/-]/_}_release_type" \ --arg value "$VERSION_DIFF" \ '.[ $property ] = $value' <<< "$RELEASED_PLUGINS" ) RELEASED_PLUGINS=$( jq \ - --arg property "$( echo "$PLUGIN" | sed 's/\//_/' )_version" \ + --arg property "${PLUGIN//[\/-]/_}_version" \ --arg value "${PROJECTS[$PLUGIN]}" \ '.[ $property ] = $value' <<< "$RELEASED_PLUGINS" ) From f0c86f23f4b68eacc22db013eaa6dddf55e5e82b Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Thu, 11 Jul 2024 15:12:04 -0400 Subject: [PATCH 112/254] ci: Update pnpm message in check-lock-files.sh (#38264) It doesn't matter which directory you run `pnpm install` in. That's left over from when we still used `yarn` without workspaces. OTOH, there are some cases where `pnpm install` doesn't make a change but `pnpm install --resolution-only` does. Suggest the latter in case the former fails to make the needed change. --- .github/files/check-lock-files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/files/check-lock-files.sh b/.github/files/check-lock-files.sh index 92ed57eacfa21..716ad717460b6 100755 --- a/.github/files/check-lock-files.sh +++ b/.github/files/check-lock-files.sh @@ -30,7 +30,7 @@ for FILE in $(git -c core.quotepath=off ls-files 'pnpm-lock.yaml' '**/pnpm-lock. echo "::endgroup::" if ! git diff --exit-code pnpm-lock.yaml; then echo "---" # Bracket message containing newlines for better visibility in GH's logs. - echo "::error file=$FILE::$FILE is not up to date!%0AYou can probably fix this by running \`pnpm install\` in the appropriate directory." + echo "::error file=$FILE::$FILE is not up to date!%0AYou can probably fix this by running \`pnpm install\`.%0AIf that doesn't do it, try \`pnpm install --resolution-only\`." echo "---" EXIT=1 fi From dc358ae29b712bebfeac27ae7d375052a1e4a44e Mon Sep 17 00:00:00 2001 From: Enej Bajgoric Date: Thu, 11 Jul 2024 12:33:15 -0700 Subject: [PATCH 113/254] Fix/newsletter popup tabs (#38266) * Newsletter: Improvements to subscription modal * changelog * Update projects/plugins/jetpack/modules/subscriptions/subscribe-modal/class-jetpack-subscribe-modal.php Co-authored-by: Miguel Lezama * Update projects/plugins/jetpack/modules/subscriptions/subscribe-modal/subscribe-modal.js Co-authored-by: Miguel Lezama * minor comment fix * Code clean up * Remove testing code. * Simplyfly localStorage. props @lezama * rename uninitialize * modern js * use setTimeout, should happen just once. --------- Co-authored-by: Miguel Lezama Co-authored-by: Miguel Lezama --- .../changelog/fix-newsletter-popup-tabs | 4 + .../class-jetpack-subscribe-modal.php | 10 +++ .../subscribe-modal/subscribe-modal.js | 78 +++++++++++-------- 3 files changed, 61 insertions(+), 31 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/fix-newsletter-popup-tabs diff --git a/projects/plugins/jetpack/changelog/fix-newsletter-popup-tabs b/projects/plugins/jetpack/changelog/fix-newsletter-popup-tabs new file mode 100644 index 0000000000000..6e47a104531e9 --- /dev/null +++ b/projects/plugins/jetpack/changelog/fix-newsletter-popup-tabs @@ -0,0 +1,4 @@ +Significance: patch +Type: enhancement + +Newsletter: Improvements the modal overlay diff --git a/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/class-jetpack-subscribe-modal.php b/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/class-jetpack-subscribe-modal.php index 638c5c6150eaa..f15455f4d7339 100644 --- a/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/class-jetpack-subscribe-modal.php +++ b/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/class-jetpack-subscribe-modal.php @@ -85,12 +85,22 @@ public function enqueue_assets() { */ $scroll_threshold = absint( apply_filters( 'jetpack_subscribe_modal_scroll_threshold', 50 ) ); + /** + * Filter to control the interval at which the subscribe modal is shown to the same user. The default interval is 24 hours. + * + * @since 13.7 + * + * @param int 24 Hours before we show the same user the Subscribe Modal to again. + */ + $modal_interval = absint( apply_filters( 'jetpack_subscribe_modal_interval', 24 ) ); + wp_localize_script( 'subscribe-modal-js', 'Jetpack_Subscriptions', array( 'modalLoadTime' => $load_time, 'modalScrollThreshold' => $scroll_threshold, + 'modalInterval' => ( $modal_interval * HOUR_IN_SECONDS * 1000 ), ) ); } diff --git a/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/subscribe-modal.js b/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/subscribe-modal.js index f363afba5e862..1360693915fa8 100644 --- a/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/subscribe-modal.js +++ b/projects/plugins/jetpack/modules/subscriptions/subscribe-modal/subscribe-modal.js @@ -1,17 +1,20 @@ /* global Jetpack_Subscriptions */ const { domReady } = wp; - -domReady( function () { - const modal = document.getElementsByClassName( 'jetpack-subscribe-modal' )[ 0 ]; +domReady( () => { + const modal = document.querySelector( '.jetpack-subscribe-modal' ); const modalDismissedCookie = 'jetpack_post_subscribe_modal_dismissed'; - const hasModalDismissedCookie = - document.cookie && document.cookie.indexOf( modalDismissedCookie ) > -1; - if ( ! modal || hasModalDismissedCookie ) { + function hasEnoughTimePassed() { + const lastDismissed = localStorage.getItem( modalDismissedCookie ); + return lastDismissed ? Date.now() - lastDismissed > Jetpack_Subscriptions.modalInterval : true; + } + + if ( ! modal || ! hasEnoughTimePassed() ) { return; } - let hasLoaded = false; + const modalLoadTimeout = setTimeout( openModal, Jetpack_Subscriptions.modalLoadTime ); + const targetElement = ( document.querySelector( '.entry-content' ) || document.documentElement ).getBoundingClientRect(); @@ -25,22 +28,23 @@ domReady( function () { } function onScroll() { - if ( ! hasLoaded ) { - requestAnimationFrame( () => { - if ( hasPassedScrollThreshold() ) { - openModal(); - } - } ); - } + requestAnimationFrame( () => { + if ( hasPassedScrollThreshold() ) { + openModal(); + } + } ); } window.addEventListener( 'scroll', onScroll, { passive: true } ); - setTimeout( () => { - if ( ! hasLoaded ) { - openModal(); + // This take care of the case where the user has multiple tabs open. + function onLocalStorage( event ) { + if ( event.key === modalDismissedCookie ) { + closeModal(); + removeEventListeners(); } - }, Jetpack_Subscriptions.modalLoadTime ); + } + window.addEventListener( 'storage', onLocalStorage ); // When the form is submitted, and next modal loads, it'll fire "subscription-modal-loaded" signalling that this form can be hidden. const form = modal.querySelector( 'form' ); @@ -49,19 +53,20 @@ domReady( function () { } // User can edit modal, and could remove close link. + function onCloseButtonClick( event ) { + event.preventDefault(); + closeModal(); + } const close = document.getElementsByClassName( 'jetpack-subscribe-modal__close' )[ 0 ]; if ( close ) { - close.onclick = function ( event ) { - event.preventDefault(); - closeModal(); - }; + close.addEventListener( 'click', onCloseButtonClick ); } - window.onclick = function ( event ) { + function closeOnWindowClick( event ) { if ( event.target === modal ) { closeModal(); } - }; + } function closeModalOnEscapeKeydown( event ) { if ( event.key === 'Escape' ) { @@ -70,23 +75,34 @@ domReady( function () { } function openModal() { + // If the user is typing in a form, don't open the modal or has anything else focused. + if ( document.activeElement && document.activeElement.tagName !== 'BODY' ) { + return; + } + modal.classList.add( 'open' ); document.body.classList.add( 'jetpack-subscribe-modal-open' ); - hasLoaded = true; - setModalDismissedCookie(); window.addEventListener( 'keydown', closeModalOnEscapeKeydown ); - window.removeEventListener( 'scroll', onScroll ); + window.addEventListener( 'click', closeOnWindowClick ); + removeEventListeners(); } function closeModal() { modal.classList.remove( 'open' ); document.body.classList.remove( 'jetpack-subscribe-modal-open' ); window.removeEventListener( 'keydown', closeModalOnEscapeKeydown ); + window.removeEventListener( 'storage', onLocalStorage ); + window.removeEventListener( 'click', closeOnWindowClick ); + storeCloseTimestamp(); + } + + // Remove all event listeners. That would add the modal again. + function removeEventListeners() { + window.removeEventListener( 'scroll', onScroll ); + clearTimeout( modalLoadTimeout ); } - function setModalDismissedCookie() { - // Expires in 1 day - const expires = new Date( Date.now() + 86400 * 1000 ).toUTCString(); - document.cookie = `${ modalDismissedCookie }=true; expires=${ expires };path=/;`; + function storeCloseTimestamp() { + localStorage.setItem( modalDismissedCookie, Date.now() ); } } ); From a96f994519484b95d568f750c853ce0d99959697 Mon Sep 17 00:00:00 2001 From: Ian Ramos <5714212+IanRamosC@users.noreply.github.com> Date: Thu, 11 Jul 2024 18:00:05 -0300 Subject: [PATCH 114/254] Add component for authenticated experiments to ExPlat (#37999) * Update TS build options * changelog * Update components to use Jetpack API * Update pnpm-lock * Add ExPlat components for authenticated experiments * changelog * Fix authenticated request path --- .../add-explat-authenticated-component | 4 +++ .../explat/src/class-rest-controller.php | 7 ++-- .../packages/explat/src/client/assignment.ts | 33 +++++++++++-------- projects/packages/explat/src/client/index.ts | 25 ++++++++++++-- 4 files changed, 48 insertions(+), 21 deletions(-) create mode 100644 projects/packages/explat/changelog/add-explat-authenticated-component diff --git a/projects/packages/explat/changelog/add-explat-authenticated-component b/projects/packages/explat/changelog/add-explat-authenticated-component new file mode 100644 index 0000000000000..216793470f6a6 --- /dev/null +++ b/projects/packages/explat/changelog/add-explat-authenticated-component @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Adds a new component to fetch experiments specifically for authenticated users diff --git a/projects/packages/explat/src/class-rest-controller.php b/projects/packages/explat/src/class-rest-controller.php index 2c32c9e67025a..9ee70dfaccc07 100644 --- a/projects/packages/explat/src/class-rest-controller.php +++ b/projects/packages/explat/src/class-rest-controller.php @@ -84,11 +84,8 @@ public function get_assignments( $request ) { if ( $request['as_connected_user'] && $is_user_connected ) { $response = Client::wpcom_json_api_request_as_user( - $request_path, - 'v2', - $args, - null, - 'wpcom' + add_query_arg( $args, $request_path ), + 'v2' ); } else { $response = wp_remote_get( diff --git a/projects/packages/explat/src/client/assignment.ts b/projects/packages/explat/src/client/assignment.ts index a4498e480e17f..e1b3040c37556 100644 --- a/projects/packages/explat/src/client/assignment.ts +++ b/projects/packages/explat/src/client/assignment.ts @@ -1,19 +1,24 @@ import apiFetch from '@wordpress/api-fetch'; import { addQueryArgs } from '@wordpress/url'; -export const fetchExperimentAssignment = async ( { - experimentName, - anonId, -}: { - experimentName: string; - anonId: string | null; -} ): Promise< unknown > => { - const params = { - experiment_name: experimentName, - anon_id: anonId ?? undefined, - as_connected_user: false, +const fetchExperimentAssignment = + ( asConnectedUser = false ) => + async ( { + experimentName, + anonId, + }: { + experimentName: string; + anonId: string | null; + } ): Promise< unknown > => { + const params = { + experiment_name: experimentName, + anon_id: anonId ?? undefined, + as_connected_user: asConnectedUser, + }; + const assignmentsRequestUrl = addQueryArgs( 'jetpack/v4/explat/assignments', params ); + + return await apiFetch( { path: assignmentsRequestUrl } ); }; - const assignmentsRequestUrl = addQueryArgs( 'jetpack/v4/explat/assignments', params ); - return await apiFetch( { path: assignmentsRequestUrl } ); -}; +export const fetchExperimentAssignmentAnonymously = fetchExperimentAssignment( false ); +export const fetchExperimentAssignmentWithAuth = fetchExperimentAssignment( true ); diff --git a/projects/packages/explat/src/client/index.ts b/projects/packages/explat/src/client/index.ts index d71f799d41c2e..b21c993f02861 100644 --- a/projects/packages/explat/src/client/index.ts +++ b/projects/packages/explat/src/client/index.ts @@ -7,7 +7,10 @@ import createExPlatClientReactHelpers from '@automattic/explat-client-react-help * Internal dependencies */ import { getAnonId, initializeAnonId } from './anon'; -import { fetchExperimentAssignment } from './assignment'; +import { + fetchExperimentAssignmentAnonymously, + fetchExperimentAssignmentWithAuth, +} from './assignment'; import { logError } from './error'; import { isDevelopmentMode } from './utils'; @@ -18,7 +21,7 @@ export const initializeExPlat = (): void => { initializeExPlat(); const exPlatClient = createExPlatClient( { - fetchExperimentAssignment, + fetchExperimentAssignment: fetchExperimentAssignmentAnonymously, getAnonId, logError, isDevelopmentMode, @@ -28,3 +31,21 @@ export const { loadExperimentAssignment, dangerouslyGetExperimentAssignment } = export const { useExperiment, Experiment, ProvideExperimentData } = createExPlatClientReactHelpers( exPlatClient ); + +const exPlatClientWithAuth = createExPlatClient( { + fetchExperimentAssignment: fetchExperimentAssignmentWithAuth, + getAnonId, + logError, + isDevelopmentMode, +} ); + +export const { + loadExperimentAssignment: loadExperimentAssignmentWithAuth, + dangerouslyGetExperimentAssignment: dangerouslyGetExperimentAssignmentWithAuth, +} = exPlatClientWithAuth; + +export const { + useExperiment: useExperimentWithAuth, + Experiment: ExperimentWithAuth, + ProvideExperimentData: ProvideExperimentDataWithAuth, +} = createExPlatClientReactHelpers( exPlatClientWithAuth ); From ca355dacf1daccce58d362bc72c096211e85f9b7 Mon Sep 17 00:00:00 2001 From: arthur791004 Date: Fri, 12 Jul 2024 12:33:35 +0900 Subject: [PATCH 115/254] MU WPCOM: Enable the custom-line-height feature for classic theme by default (#38317) * MU WPCOM: Enable the custom-line-height feature by default * changelog --- .../changelog/mu-wpcom-custom-line-height | 4 ++++ .../src/class-jetpack-mu-wpcom.php | 1 + .../block-editor/custom-line-height.php | 22 +++++++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-custom-line-height create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/block-editor/custom-line-height.php diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-custom-line-height b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-custom-line-height new file mode 100644 index 0000000000000..cdf56cb51b419 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-custom-line-height @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +MU WPCOM: Enable the custom-line-height feature by default diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 661177d160149..2532fa9ce98df 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -132,6 +132,7 @@ public static function load_features() { * Can be moved back to load_features() once the feature no longer exists in the ETK plugin. */ public static function load_etk_features() { + require_once __DIR__ . '/features/block-editor/custom-line-height.php'; require_once __DIR__ . '/features/block-inserter-modifications/block-inserter-modifications.php'; require_once __DIR__ . '/features/hide-homepage-title/hide-homepage-title.php'; require_once __DIR__ . '/features/jetpack-global-styles/class-global-styles.php'; diff --git a/projects/packages/jetpack-mu-wpcom/src/features/block-editor/custom-line-height.php b/projects/packages/jetpack-mu-wpcom/src/features/block-editor/custom-line-height.php new file mode 100644 index 0000000000000..5842ceddfc0ae --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/block-editor/custom-line-height.php @@ -0,0 +1,22 @@ + Date: Fri, 12 Jul 2024 10:15:42 -0400 Subject: [PATCH 116/254] Forms: remove onSplit in favor of splitting feature (#38246) * Forms: remove onSplit in favor of splitting feature * Bump versions --- .../changelog/fix-form-onSplit-deprecation | 5 ++ projects/packages/forms/package.json | 2 +- .../src/blocks/contact-form/child-blocks.js | 1 + .../components/jetpack-field-multiple.js | 2 +- .../components/jetpack-field-option.js | 68 ++++++++++++++----- .../blocks/contact-form/util/block-support.js | 10 +++ .../forms/src/class-jetpack-forms.php | 2 +- 7 files changed, 69 insertions(+), 21 deletions(-) create mode 100644 projects/packages/forms/changelog/fix-form-onSplit-deprecation create mode 100644 projects/packages/forms/src/blocks/contact-form/util/block-support.js diff --git a/projects/packages/forms/changelog/fix-form-onSplit-deprecation b/projects/packages/forms/changelog/fix-form-onSplit-deprecation new file mode 100644 index 0000000000000..75ede852badee --- /dev/null +++ b/projects/packages/forms/changelog/fix-form-onSplit-deprecation @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Option field: remove onSplit prop in favor of splitting feature + + diff --git a/projects/packages/forms/package.json b/projects/packages/forms/package.json index 1199db79e7c36..f5c91266e5014 100644 --- a/projects/packages/forms/package.json +++ b/projects/packages/forms/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-forms", - "version": "0.32.3", + "version": "0.32.4-alpha", "description": "Jetpack Forms", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/forms/#readme", "bugs": { diff --git a/projects/packages/forms/src/blocks/contact-form/child-blocks.js b/projects/packages/forms/src/blocks/contact-form/child-blocks.js index 440e2b2313214..d7b89470fbb7a 100644 --- a/projects/packages/forms/src/blocks/contact-form/child-blocks.js +++ b/projects/packages/forms/src/blocks/contact-form/child-blocks.js @@ -243,6 +243,7 @@ const OptionFieldDefaults = { supports: { reusable: false, html: false, + splitting: true, }, }; diff --git a/projects/packages/forms/src/blocks/contact-form/components/jetpack-field-multiple.js b/projects/packages/forms/src/blocks/contact-form/components/jetpack-field-multiple.js index 8087358fda37e..5b9d77179c705 100644 --- a/projects/packages/forms/src/blocks/contact-form/components/jetpack-field-multiple.js +++ b/projects/packages/forms/src/blocks/contact-form/components/jetpack-field-multiple.js @@ -62,7 +62,7 @@ function JetpackFieldMultiple( props ) {
    diff --git a/projects/packages/forms/src/blocks/contact-form/components/jetpack-field-option.js b/projects/packages/forms/src/blocks/contact-form/components/jetpack-field-option.js index 0ab579d9de533..48b08ff3c8fad 100644 --- a/projects/packages/forms/src/blocks/contact-form/components/jetpack-field-option.js +++ b/projects/packages/forms/src/blocks/contact-form/components/jetpack-field-option.js @@ -1,18 +1,26 @@ -import { RichText } from '@wordpress/block-editor'; +import { RichText, useBlockProps } from '@wordpress/block-editor'; import { createBlock } from '@wordpress/blocks'; import { useDispatch, useSelect } from '@wordpress/data'; +import { useRef } from '@wordpress/element'; import { __ } from '@wordpress/i18n'; import clsx from 'clsx'; import { first } from 'lodash'; +import { useEffect } from 'react'; +import { supportsParagraphSplitting } from '../util/block-support'; import { useParentAttributes } from '../util/use-parent-attributes'; import { useJetpackFieldStyles } from './use-jetpack-field-styles'; -export const JetpackFieldOptionEdit = props => { - const { attributes, clientId, name, onReplace, setAttributes } = props; +export const JetpackFieldOptionEdit = ( { + isSelected, + attributes, + clientId, + name, + onReplace, + setAttributes, +} ) => { const { removeBlock } = useDispatch( 'core/block-editor' ); const parentAttributes = useParentAttributes( clientId ); const { optionStyle } = useJetpackFieldStyles( parentAttributes ); - const siblingsCount = useSelect( select => { const blockEditor = select( 'core/block-editor' ); @@ -21,17 +29,16 @@ export const JetpackFieldOptionEdit = props => { }, [ clientId ] ); + const blockProps = useBlockProps(); + const labelRef = useRef( null ); - const type = name.replace( 'jetpack/field-option-', '' ); - - const classes = clsx( 'jetpack-field-option', `field-option-${ type }` ); - - const handleSplit = label => - createBlock( name, { + const handleSplit = label => { + return createBlock( name, { ...attributes, clientId: label && attributes.label.indexOf( label ) === 0 ? attributes.clientId : undefined, label, } ); + }; const handleDelete = () => { if ( siblingsCount <= 1 ) { @@ -41,21 +48,46 @@ export const JetpackFieldOptionEdit = props => { removeBlock( clientId ); }; + const onFocus = () => { + // TODO: move cursor to end + }; + + useEffect( () => { + const element = labelRef.current; + + element?.addEventListener( 'focus', onFocus ); + + if ( isSelected ) { + // Timeout is necessary for the focus to be effective + setTimeout( () => element?.focus(), 0 ); + } + + return () => { + element?.removeEventListener( 'focus', onFocus ); + }; + }, [ isSelected, labelRef ] ); + + const supportsSplitting = supportsParagraphSplitting(); + const type = name.replace( 'jetpack/field-option-', '' ); + const classes = clsx( 'jetpack-field-option', `field-option-${ type }` ); + return ( -
    +
    { - setAttributes( { label: value } ); - } } - onRemove={ handleDelete } - onSplit={ handleSplit } + onChange={ val => setAttributes( { label: val } ) } onReplace={ onReplace } - placeholder={ __( 'Add option…', 'jetpack-forms' ) } + onRemove={ handleDelete } preserveWhiteSpace={ false } withoutInteractiveFormatting - value={ attributes.label } + ref={ labelRef } + { ...( supportsSplitting ? {} : { onSplit: handleSplit } ) } />
    ); diff --git a/projects/packages/forms/src/blocks/contact-form/util/block-support.js b/projects/packages/forms/src/blocks/contact-form/util/block-support.js new file mode 100644 index 0000000000000..932e8e5ba3bc3 --- /dev/null +++ b/projects/packages/forms/src/blocks/contact-form/util/block-support.js @@ -0,0 +1,10 @@ +import { hasBlockSupport } from '@wordpress/blocks'; + +/** + * Check if Gutenberg supports splitting paragraphs. + * + * @returns {boolean} Whether Gutenberg supports splitting paragraphs. + */ +export function supportsParagraphSplitting() { + return hasBlockSupport( 'core/paragraph', 'splitting', false ); +} diff --git a/projects/packages/forms/src/class-jetpack-forms.php b/projects/packages/forms/src/class-jetpack-forms.php index 11ab3a125e9c0..6c9da8faea21a 100644 --- a/projects/packages/forms/src/class-jetpack-forms.php +++ b/projects/packages/forms/src/class-jetpack-forms.php @@ -15,7 +15,7 @@ */ class Jetpack_Forms { - const PACKAGE_VERSION = '0.32.3'; + const PACKAGE_VERSION = '0.32.4-alpha'; /** * Load the contact form module. From f9312c73ee6f00465d656718638116039a950ce4 Mon Sep 17 00:00:00 2001 From: Bryan Elliott Date: Fri, 12 Jul 2024 10:30:33 -0400 Subject: [PATCH 117/254] Protect card: Add the Last scan time (with tooltip) based on plugin state. (#38091) --- .../product-cards-section/protect-card.jsx | 13 -- .../protect-card/index.tsx | 23 +++ .../protect-card/protect-value-section.tsx | 133 ++++++++++++++++ .../protect-card/style.scss | 60 ++++++++ .../protect-card/use-protect-tooltip-copy.ts | 69 +++++++++ .../my-jetpack/_inc/utils/time-since.ts | 61 ++++++++ .../add-mj-protect-card-last-scan-time | 4 + .../changelog/add-mj-protect-last-scan-time | 4 + projects/packages/my-jetpack/composer.json | 6 +- projects/packages/my-jetpack/global.d.ts | 43 +++++- projects/packages/my-jetpack/package.json | 2 +- .../my-jetpack/src/class-initializer.php | 7 +- .../add-mj-protect-card-last-scan-time | 5 + .../add-mj-protect-card-last-scan-time#2 | 5 + .../add-mj-protect-card-last-scan-time#3 | 5 + projects/plugins/backup/composer.lock | 145 +++++++++++++++++- .../add-mj-protect-card-last-scan-time | 5 + .../add-mj-protect-card-last-scan-time#2 | 5 + .../add-mj-protect-card-last-scan-time#3 | 5 + projects/plugins/boost/composer.lock | 145 +++++++++++++++++- .../add-mj-protect-card-last-scan-time | 5 + .../add-mj-protect-card-last-scan-time#2 | 5 + .../add-mj-protect-card-last-scan-time#3 | 5 + projects/plugins/jetpack/composer.lock | 145 +++++++++++++++++- .../add-mj-protect-card-last-scan-time | 5 + .../add-mj-protect-card-last-scan-time#2 | 5 + .../add-mj-protect-card-last-scan-time#3 | 5 + projects/plugins/migration/composer.lock | 145 +++++++++++++++++- .../add-mj-protect-card-last-scan-time | 5 + .../add-mj-protect-card-last-scan-time#2 | 5 + .../add-mj-protect-card-last-scan-time#3 | 5 + projects/plugins/protect/composer.lock | 6 +- .../add-mj-protect-card-last-scan-time | 5 + .../add-mj-protect-card-last-scan-time#2 | 5 + .../add-mj-protect-card-last-scan-time#3 | 5 + projects/plugins/search/composer.lock | 145 +++++++++++++++++- .../add-mj-protect-card-last-scan-time | 5 + .../add-mj-protect-card-last-scan-time#2 | 5 + .../add-mj-protect-card-last-scan-time#3 | 5 + projects/plugins/social/composer.lock | 145 +++++++++++++++++- .../add-mj-protect-card-last-scan-time | 5 + .../add-mj-protect-card-last-scan-time#2 | 5 + .../add-mj-protect-card-last-scan-time#3 | 5 + projects/plugins/starter-plugin/composer.lock | 145 +++++++++++++++++- .../add-mj-protect-card-last-scan-time | 5 + .../add-mj-protect-card-last-scan-time#2 | 5 + .../add-mj-protect-card-last-scan-time#3 | 5 + projects/plugins/videopress/composer.lock | 145 +++++++++++++++++- 48 files changed, 1690 insertions(+), 36 deletions(-) delete mode 100644 projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card.jsx create mode 100644 projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/index.tsx create mode 100644 projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/protect-value-section.tsx create mode 100644 projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/style.scss create mode 100644 projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/use-protect-tooltip-copy.ts create mode 100644 projects/packages/my-jetpack/_inc/utils/time-since.ts create mode 100644 projects/packages/my-jetpack/changelog/add-mj-protect-card-last-scan-time create mode 100644 projects/packages/my-jetpack/changelog/add-mj-protect-last-scan-time create mode 100644 projects/plugins/backup/changelog/add-mj-protect-card-last-scan-time create mode 100644 projects/plugins/backup/changelog/add-mj-protect-card-last-scan-time#2 create mode 100644 projects/plugins/backup/changelog/add-mj-protect-card-last-scan-time#3 create mode 100644 projects/plugins/boost/changelog/add-mj-protect-card-last-scan-time create mode 100644 projects/plugins/boost/changelog/add-mj-protect-card-last-scan-time#2 create mode 100644 projects/plugins/boost/changelog/add-mj-protect-card-last-scan-time#3 create mode 100644 projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time create mode 100644 projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#2 create mode 100644 projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#3 create mode 100644 projects/plugins/migration/changelog/add-mj-protect-card-last-scan-time create mode 100644 projects/plugins/migration/changelog/add-mj-protect-card-last-scan-time#2 create mode 100644 projects/plugins/migration/changelog/add-mj-protect-card-last-scan-time#3 create mode 100644 projects/plugins/protect/changelog/add-mj-protect-card-last-scan-time create mode 100644 projects/plugins/protect/changelog/add-mj-protect-card-last-scan-time#2 create mode 100644 projects/plugins/protect/changelog/add-mj-protect-card-last-scan-time#3 create mode 100644 projects/plugins/search/changelog/add-mj-protect-card-last-scan-time create mode 100644 projects/plugins/search/changelog/add-mj-protect-card-last-scan-time#2 create mode 100644 projects/plugins/search/changelog/add-mj-protect-card-last-scan-time#3 create mode 100644 projects/plugins/social/changelog/add-mj-protect-card-last-scan-time create mode 100644 projects/plugins/social/changelog/add-mj-protect-card-last-scan-time#2 create mode 100644 projects/plugins/social/changelog/add-mj-protect-card-last-scan-time#3 create mode 100644 projects/plugins/starter-plugin/changelog/add-mj-protect-card-last-scan-time create mode 100644 projects/plugins/starter-plugin/changelog/add-mj-protect-card-last-scan-time#2 create mode 100644 projects/plugins/starter-plugin/changelog/add-mj-protect-card-last-scan-time#3 create mode 100644 projects/plugins/videopress/changelog/add-mj-protect-card-last-scan-time create mode 100644 projects/plugins/videopress/changelog/add-mj-protect-card-last-scan-time#2 create mode 100644 projects/plugins/videopress/changelog/add-mj-protect-card-last-scan-time#3 diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card.jsx b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card.jsx deleted file mode 100644 index 1fe4e1639880b..0000000000000 --- a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card.jsx +++ /dev/null @@ -1,13 +0,0 @@ -import PropTypes from 'prop-types'; -import React from 'react'; -import ProductCard from '../connected-product-card'; - -const ProtectCard = ( { admin } ) => { - return ; -}; - -ProtectCard.propTypes = { - admin: PropTypes.bool.isRequired, -}; - -export default ProtectCard; diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/index.tsx b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/index.tsx new file mode 100644 index 0000000000000..4d6a3a741cdf5 --- /dev/null +++ b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/index.tsx @@ -0,0 +1,23 @@ +import { __ } from '@wordpress/i18n'; +import { PRODUCT_STATUSES } from '../../../constants'; +import ProductCard from '../../connected-product-card'; +import ProtectValueSection from './protect-value-section'; +import type { FC } from 'react'; + +const ProtectCard: FC< { admin: boolean } > = ( { admin } ) => { + // Override the primary action button to read "Protect your site" instead + // of the default text, "Learn more". + const primaryActionOverride = { + [ PRODUCT_STATUSES.ABSENT ]: { + label: __( 'Protect your site', 'jetpack-my-jetpack' ), + }, + }; + + return ( + + + + ); +}; + +export default ProtectCard; diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/protect-value-section.tsx b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/protect-value-section.tsx new file mode 100644 index 0000000000000..4e6600aae9fa1 --- /dev/null +++ b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/protect-value-section.tsx @@ -0,0 +1,133 @@ +import { Gridicon } from '@automattic/jetpack-components'; +import { Popover } from '@wordpress/components'; +import { useViewportMatch } from '@wordpress/compose'; +import { __, sprintf } from '@wordpress/i18n'; +import { useState, useCallback, useMemo, useRef } from 'react'; +import useProduct from '../../../data/products/use-product'; +import { getMyJetpackWindowInitialState } from '../../../data/utils/get-my-jetpack-window-state'; +import { timeSince } from '../../../utils/time-since'; +import { useProtectTooltipCopy } from './use-protect-tooltip-copy'; +import type { TooltipContent } from './use-protect-tooltip-copy'; +import type { FC } from 'react'; + +import './style.scss'; + +const ProtectValueSection = () => { + const slug = 'protect'; + const { detail } = useProduct( slug ); + const { isPluginActive = false } = detail || {}; + const { plugins, themes, scanData } = getMyJetpackWindowInitialState(); + const { + plugins: fromScanPlugins, + themes: fromScanThemes, + num_threats: numThreats = 0, + last_checked: lastScanTime = null, + } = scanData; + + const pluginsCount = fromScanPlugins.length || Object.keys( plugins ).length; + const themesCount = fromScanThemes.length || Object.keys( themes ).length; + + const timeSinceLastScan = lastScanTime ? timeSince( Date.parse( lastScanTime ) ) : false; + const lastScanText = useMemo( () => { + if ( isPluginActive ) { + if ( timeSinceLastScan ) { + return sprintf( + /* translators: %s is how long ago since the last scan took place, i.e.- "17 hours ago" */ + __( 'Last scan: %s', 'jetpack-my-jetpack' ), + timeSinceLastScan + ); + } + return null; + } + return sprintf( + /* translators: `\xa0` is a non-breaking space. %1$d is the number (integer) of plugins and %2$d is the number (integer) of themes the site has. */ + __( '%1$d plugins &\xa0%2$d\xa0themes', 'jetpack-my-jetpack' ), + pluginsCount, + themesCount + ); + }, [ isPluginActive, timeSinceLastScan, pluginsCount, themesCount ] ); + + const tooltipContent = useProtectTooltipCopy( { pluginsCount, themesCount, numThreats } ); + + return ( + + ); +}; + +export default ProtectValueSection; + +const ValueSection: FC< { + isProtectActive: boolean; + lastScanText?: string; + tooltipContent: TooltipContent; +} > = ( { isProtectActive, lastScanText, tooltipContent } ) => { + const useTooltipRef = useRef< HTMLButtonElement >(); + const isMobileViewport: boolean = useViewportMatch( 'medium', '<' ); + const [ isPopoverVisible, setIsPopoverVisible ] = useState( false ); + // TODO: `scanThreatsTooltip` will be utilized in a followup PR. + // eslint-disable-next-line @typescript-eslint/no-unused-vars + const { pluginsThemesTooltip, scanThreatsTooltip } = tooltipContent; + + const toggleTooltip = useCallback( + () => setIsPopoverVisible( prevState => ! prevState ), + [ setIsPopoverVisible ] + ); + const hideTooltip = useCallback( () => { + // Don't hide the tooltip here if it's the tooltip button that was clicked (the button + // becoming the document's activeElement). Instead let toggleTooltip() handle the closing. + if ( useTooltipRef.current && ! useTooltipRef.current.contains( document.activeElement ) ) { + setIsPopoverVisible( false ); + } + }, [ setIsPopoverVisible, useTooltipRef ] ); + + return ( + <> +
    + { lastScanText &&
    { lastScanText }
    } + { ! isProtectActive && ( +
    + + { isPopoverVisible && ( + + <> +

    { pluginsThemesTooltip.title }

    +

    { pluginsThemesTooltip.text }

    + +
    + ) } +
    + ) } +
    +
    +
    +
    Scan
    +
    +
    +
    +
    Auto-Firewall
    +
    +
    +
    +
    Logins Blocked
    +
    +
    +
    + + ); +}; diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/style.scss b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/style.scss new file mode 100644 index 0000000000000..f2f6af7938b61 --- /dev/null +++ b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/style.scss @@ -0,0 +1,60 @@ +.value-section { + display: flex; + justify-content: space-between; + + &__heading { + font-size: var(--font-body-extra-small); + color: var(--jp-gray-100); + font-weight: 500; + } + + &__last-scan { + display: flex; + align-items: center; + justify-content: flex-end; + margin-top: var(--spacing-base); + column-gap: 1px; + position: absolute; + right: calc(var(--spacing-base)*3); + width: calc(57% - (var(--spacing-base) * 3)); + div { + font-size: var(--font-body-extra-small); + line-height: var(--font-body); + color: var(--jp-gray-50); + text-align: right; + } + } + + @media ( max-width: 480px ) { + &__last-scan { + width: calc(53% - (var(--spacing-base) * 3)); + } + } + + &__tooltip-button { + display: flex; + align-items: center; + background: transparent; + border: none; + color: var(--jp-gray-50); + padding: 2px; + cursor: pointer; + svg { + margin: 0 auto; + } + } + + &__tooltip-heading { + font-size: var(--font-title-small); + line-height: 30px; + color: var(--jp-black); + margin: 0 0 16px; + font-weight: 500; + } + + &__tooltip-content { + font-size: var(--font-body); + line-height: var(--font-title-small); + color: var(--jp-gray-70); + } +} diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/use-protect-tooltip-copy.ts b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/use-protect-tooltip-copy.ts new file mode 100644 index 0000000000000..6503be581edf0 --- /dev/null +++ b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/use-protect-tooltip-copy.ts @@ -0,0 +1,69 @@ +import { __, sprintf } from '@wordpress/i18n'; +import useProduct from '../../../data/products/use-product'; +import type { ReactElement } from 'react'; + +type TooltipType = 'pluginsThemesTooltip' | 'scanThreatsTooltip'; +export type TooltipContent = { + [ key in TooltipType ]: { + title: ReactElement | string; + text: ReactElement | string; + }; +}; + +/** + * Gets the translated tooltip copy based on Protect Scan details. + * + * @param {object} props - React props + * @param {number} props.pluginsCount - The number of installed plugins on the site. + * @param {number} props.themesCount - The number of installed themes on the site. + * @param {number} props.numThreats - The number of detected scan threats on the site. + * @returns {TooltipContent} An object containing each tooltip's title and text content. + */ +export function useProtectTooltipCopy( { + pluginsCount = 0, + themesCount = 0, + numThreats = 0, +}: { + pluginsCount: number; + themesCount: number; + numThreats: number; +} ): TooltipContent { + const slug = 'protect'; + const { detail } = useProduct( slug ); + const { hasPaidPlanForProduct: hasProtectPaidPlan } = detail; + + return { + pluginsThemesTooltip: { + title: __( 'Improve site safety: secure plugins & themes', 'jetpack-my-jetpack' ), + text: sprintf( + /* translators: %1$d is the number of plugins and %2$d is the number of themes installed on the site. */ + __( + 'Your site has %1$d plugins and %2$d themes lacking security measures. Improve your site’s safety by adding protection at no cost.', + 'jetpack-my-jetpack' + ), + pluginsCount, + themesCount + ), + }, + scanThreatsTooltip: + hasProtectPaidPlan && numThreats + ? { + title: __( 'Auto-fix threats', 'jetpack-my-jetpack' ), + text: sprintf( + /* translators: %d is the number of detected scan threats on the site. */ + __( + 'The last scan identified %d critical threats. But don’t worry, use the “Auto-fix” button in the product to automatically fix most threats.', + 'jetpack-my-jetpack' + ), + numThreats + ), + } + : { + title: __( 'Elevate your malware protection', 'jetpack-my-jetpack' ), + text: __( + 'We’ve checked items against our database, and all appears well. For a more detailed, line-by-line malware scan, consider upgrading your plan.', + 'jetpack-my-jetpack' + ), + }, + }; +} diff --git a/projects/packages/my-jetpack/_inc/utils/time-since.ts b/projects/packages/my-jetpack/_inc/utils/time-since.ts new file mode 100644 index 0000000000000..2c8c025d369b1 --- /dev/null +++ b/projects/packages/my-jetpack/_inc/utils/time-since.ts @@ -0,0 +1,61 @@ +import { sprintf, _n, __ } from '@wordpress/i18n'; + +/** + * Time Since + * + * @param {number} date - The past date (timestamp) to compare to the current date. + * @returns {string} - A description of the amount of time between a date and now, i.e. "5 minutes ago". + */ +export function timeSince( date: number ) { + const now = new Date(); + const offset = now.getTimezoneOffset() * 60000; + + const seconds = Math.floor( ( new Date( now.getTime() + offset ).getTime() - date ) / 1000 ); + + let interval = seconds / 31536000; // 364 days + if ( interval > 1 ) { + return sprintf( + // translators: placeholder is a number amount of years i.e. "5 years ago". + _n( '%s year ago', '%s years ago', Math.floor( interval ), 'jetpack-my-jetpack' ), + Math.floor( interval ) + ); + } + + interval = seconds / 2592000; // 30 days + if ( interval > 1 ) { + return sprintf( + // translators: placeholder is a number amount of months i.e. "5 months ago". + _n( '%s month ago', '%s months ago', Math.floor( interval ), 'jetpack-my-jetpack' ), + Math.floor( interval ) + ); + } + + interval = seconds / 86400; // 1 day + if ( interval > 1 ) { + return sprintf( + // translators: placeholder is a number amount of days i.e. "5 days ago". + _n( '%s day ago', '%s days ago', Math.floor( interval ), 'jetpack-my-jetpack' ), + Math.floor( interval ) + ); + } + + interval = seconds / 3600; // 1 hour + if ( interval > 1 ) { + return sprintf( + // translators: placeholder is a number amount of hours i.e. "5 hours ago". + _n( '%s hour ago', '%s hours ago', Math.floor( interval ), 'jetpack-my-jetpack' ), + Math.floor( interval ) + ); + } + + interval = seconds / 60; // 1 minute + if ( interval > 1 ) { + return sprintf( + // translators: placeholder is a number amount of minutes i.e. "5 minutes ago". + _n( '%s minute ago', '%s minutes ago', Math.floor( interval ), 'jetpack-my-jetpack' ), + Math.floor( interval ) + ); + } + + return __( 'a few seconds ago', 'jetpack-my-jetpack' ); +} diff --git a/projects/packages/my-jetpack/changelog/add-mj-protect-card-last-scan-time b/projects/packages/my-jetpack/changelog/add-mj-protect-card-last-scan-time new file mode 100644 index 0000000000000..c47cb18e82997 --- /dev/null +++ b/projects/packages/my-jetpack/changelog/add-mj-protect-card-last-scan-time @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated package dependencies. diff --git a/projects/packages/my-jetpack/changelog/add-mj-protect-last-scan-time b/projects/packages/my-jetpack/changelog/add-mj-protect-last-scan-time new file mode 100644 index 0000000000000..f745a0f47608f --- /dev/null +++ b/projects/packages/my-jetpack/changelog/add-mj-protect-last-scan-time @@ -0,0 +1,4 @@ +Significance: minor +Type: changed + +Protect card: Add the Last scan time (with tooltip) based on product state. diff --git a/projects/packages/my-jetpack/composer.json b/projects/packages/my-jetpack/composer.json index 5e0d856f45523..6103e25a81dd4 100644 --- a/projects/packages/my-jetpack/composer.json +++ b/projects/packages/my-jetpack/composer.json @@ -15,7 +15,9 @@ "automattic/jetpack-redirect": "@dev", "automattic/jetpack-constants": "@dev", "automattic/jetpack-plans": "@dev", - "automattic/jetpack-status": "@dev" + "automattic/jetpack-status": "@dev", + "automattic/jetpack-sync": "@dev", + "automattic/jetpack-protect-status": "@dev" }, "require-dev": { "yoast/phpunit-polyfills": "1.1.0", @@ -79,7 +81,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.27.x-dev" + "dev-trunk": "4.28.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" diff --git a/projects/packages/my-jetpack/global.d.ts b/projects/packages/my-jetpack/global.d.ts index 412903cc0a2a2..8cdd63114d5bb 100644 --- a/projects/packages/my-jetpack/global.d.ts +++ b/projects/packages/my-jetpack/global.d.ts @@ -7,7 +7,6 @@ declare module '*.scss'; // These libraries don't have types, this suppresses the TypeScript errors declare module '@wordpress/components'; declare module '@wordpress/compose'; -declare module '@wordpress/i18n'; declare module '@wordpress/icons'; declare module '@automattic/jetpack-connection'; @@ -28,6 +27,15 @@ type JetpackModule = | 'stats' | 'ai'; +type ScanItem = { + checked: boolean; + name: string; + slug: string; + threats: string[]; + type: string; + version: string; +}; + interface Window { myJetpackInitialState?: { siteSuffix: string; @@ -145,6 +153,24 @@ interface Window { }; }; }; + scanData: { + core: ScanItem; + current_progress?: string; + data_source: string; + database: string[]; + error: boolean; + error_code?: string; + error_message?: string; + files: string[]; + has_unchecked_items: boolean; + last_checked: string; + num_plugins_threats: number; + num_themes_threats: number; + num_threats: number; + plugins: ScanItem[]; + status: string; + themes: ScanItem[]; + }; purchases: { items: Array< { ID: string; @@ -229,6 +255,21 @@ interface Window { }; }; }; + themes: { + [ key: string ]: { + Author: string; + Name: string; + RequiresPHP: string; + RequiresWP: string; + Status: string; + Template: string; + TextDomain: string; + ThemeURI: string; + Version: string; + active: boolean; + is_block_theme: boolean; + }; + }; topJetpackMenuItemUrl: string; userIsAdmin: string; userIsNewToJetpack: string; diff --git a/projects/packages/my-jetpack/package.json b/projects/packages/my-jetpack/package.json index 27016098f69a2..811929b9e2c44 100644 --- a/projects/packages/my-jetpack/package.json +++ b/projects/packages/my-jetpack/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-my-jetpack", - "version": "4.27.3-alpha", + "version": "4.28.0-alpha", "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/my-jetpack/#readme", "bugs": { diff --git a/projects/packages/my-jetpack/src/class-initializer.php b/projects/packages/my-jetpack/src/class-initializer.php index 1002e122f2669..b5c166f17e39f 100644 --- a/projects/packages/my-jetpack/src/class-initializer.php +++ b/projects/packages/my-jetpack/src/class-initializer.php @@ -20,8 +20,10 @@ use Automattic\Jetpack\Licensing; use Automattic\Jetpack\Modules; use Automattic\Jetpack\Plugins_Installer; +use Automattic\Jetpack\Protect_Status\Status as Protect_Status; use Automattic\Jetpack\Status; use Automattic\Jetpack\Status\Host as Status_Host; +use Automattic\Jetpack\Sync\Functions as Sync_Functions; use Automattic\Jetpack\Terms_Of_Service; use Automattic\Jetpack\Tracking; use Jetpack; @@ -37,7 +39,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '4.27.3-alpha'; + const PACKAGE_VERSION = '4.28.0-alpha'; /** * HTML container ID for the IDC screen on My Jetpack page. @@ -209,6 +211,7 @@ public static function enqueue_scripts() { $previous_score = $speed_score_history->latest( 1 ); } $latest_score['previousScores'] = $previous_score['scores'] ?? array(); + $scan_data = Protect_Status::get_status(); self::update_historically_active_jetpack_modules(); wp_localize_script( @@ -222,6 +225,7 @@ public static function enqueue_scripts() { 'items' => array(), ), 'plugins' => Plugins_Installer::get_plugins(), + 'themes' => Sync_Functions::get_themes(), 'myJetpackUrl' => admin_url( 'admin.php?page=my-jetpack' ), 'myJetpackCheckoutUri' => admin_url( 'admin.php?page=my-jetpack' ), 'topJetpackMenuItemUrl' => Admin_Menu::get_top_level_menu_item_url(), @@ -255,6 +259,7 @@ public static function enqueue_scripts() { 'isAgencyAccount' => Jetpack_Manage::is_agency_account(), ), 'latestBoostSpeedScores' => $latest_score, + 'scanData' => $scan_data, ) ); diff --git a/projects/plugins/backup/changelog/add-mj-protect-card-last-scan-time b/projects/plugins/backup/changelog/add-mj-protect-card-last-scan-time new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/backup/changelog/add-mj-protect-card-last-scan-time @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/backup/changelog/add-mj-protect-card-last-scan-time#2 b/projects/plugins/backup/changelog/add-mj-protect-card-last-scan-time#2 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/backup/changelog/add-mj-protect-card-last-scan-time#2 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/backup/changelog/add-mj-protect-card-last-scan-time#3 b/projects/plugins/backup/changelog/add-mj-protect-card-last-scan-time#3 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/backup/changelog/add-mj-protect-card-last-scan-time#3 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/backup/composer.lock b/projects/plugins/backup/composer.lock index c33e4c38ab248..d4af919e06c4c 100644 --- a/projects/plugins/backup/composer.lock +++ b/projects/plugins/backup/composer.lock @@ -1088,7 +1088,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "e423495d1048ef659f3277bbd74ca1d5c57a2a8c" + "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1100,8 +1100,10 @@ "automattic/jetpack-licensing": "@dev", "automattic/jetpack-plans": "@dev", "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-status": "@dev", "automattic/jetpack-redirect": "@dev", "automattic/jetpack-status": "@dev", + "automattic/jetpack-sync": "@dev", "php": ">=7.0" }, "require-dev": { @@ -1123,7 +1125,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.27.x-dev" + "dev-trunk": "4.28.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" @@ -1356,6 +1358,145 @@ "relative": true } }, + { + "name": "automattic/jetpack-protect-models", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-models", + "reference": "a79c18207b3476214e4be25eb5184c452c952ea9" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "0.4.2", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-models/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-models", + "textdomain": "jetpack-protect-models", + "version-constants": { + "::PACKAGE_VERSION": "src/class-protect-models.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the models used in Protect. ", + "transport-options": { + "relative": true + } + }, + { + "name": "automattic/jetpack-protect-status", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-status", + "reference": "297c3a5f7826a8e4c76f9bc992d2bc3417a1b669" + }, + "require": { + "automattic/jetpack-connection": "@dev", + "automattic/jetpack-plans": "@dev", + "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-models": "@dev", + "automattic/jetpack-sync": "@dev", + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "dev-master", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-status/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-status", + "textdomain": "jetpack-protect-status", + "version-constants": { + "::PACKAGE_VERSION": "src/class-status.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the Protect Status API functionality to retrieve a site's scan status (WordPress, Themes, and Plugins threats).", + "transport-options": { + "relative": true + } + }, { "name": "automattic/jetpack-redirect", "version": "dev-trunk", diff --git a/projects/plugins/boost/changelog/add-mj-protect-card-last-scan-time b/projects/plugins/boost/changelog/add-mj-protect-card-last-scan-time new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/boost/changelog/add-mj-protect-card-last-scan-time @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/boost/changelog/add-mj-protect-card-last-scan-time#2 b/projects/plugins/boost/changelog/add-mj-protect-card-last-scan-time#2 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/boost/changelog/add-mj-protect-card-last-scan-time#2 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/boost/changelog/add-mj-protect-card-last-scan-time#3 b/projects/plugins/boost/changelog/add-mj-protect-card-last-scan-time#3 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/boost/changelog/add-mj-protect-card-last-scan-time#3 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/boost/composer.lock b/projects/plugins/boost/composer.lock index 9572462eb7f27..b180f7fa0a185 100644 --- a/projects/plugins/boost/composer.lock +++ b/projects/plugins/boost/composer.lock @@ -1007,7 +1007,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "e423495d1048ef659f3277bbd74ca1d5c57a2a8c" + "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1019,8 +1019,10 @@ "automattic/jetpack-licensing": "@dev", "automattic/jetpack-plans": "@dev", "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-status": "@dev", "automattic/jetpack-redirect": "@dev", "automattic/jetpack-status": "@dev", + "automattic/jetpack-sync": "@dev", "php": ">=7.0" }, "require-dev": { @@ -1042,7 +1044,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.27.x-dev" + "dev-trunk": "4.28.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" @@ -1340,6 +1342,145 @@ "relative": true } }, + { + "name": "automattic/jetpack-protect-models", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-models", + "reference": "a79c18207b3476214e4be25eb5184c452c952ea9" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "0.4.2", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-models/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-models", + "textdomain": "jetpack-protect-models", + "version-constants": { + "::PACKAGE_VERSION": "src/class-protect-models.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the models used in Protect. ", + "transport-options": { + "relative": true + } + }, + { + "name": "automattic/jetpack-protect-status", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-status", + "reference": "297c3a5f7826a8e4c76f9bc992d2bc3417a1b669" + }, + "require": { + "automattic/jetpack-connection": "@dev", + "automattic/jetpack-plans": "@dev", + "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-models": "@dev", + "automattic/jetpack-sync": "@dev", + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "dev-master", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-status/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-status", + "textdomain": "jetpack-protect-status", + "version-constants": { + "::PACKAGE_VERSION": "src/class-status.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the Protect Status API functionality to retrieve a site's scan status (WordPress, Themes, and Plugins threats).", + "transport-options": { + "relative": true + } + }, { "name": "automattic/jetpack-redirect", "version": "dev-trunk", diff --git a/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time b/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time new file mode 100644 index 0000000000000..a1c1831fa1ef7 --- /dev/null +++ b/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated composer.lock. + + diff --git a/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#2 b/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#2 new file mode 100644 index 0000000000000..a1c1831fa1ef7 --- /dev/null +++ b/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#2 @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated composer.lock. + + diff --git a/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#3 b/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#3 new file mode 100644 index 0000000000000..a1c1831fa1ef7 --- /dev/null +++ b/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#3 @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated composer.lock. + + diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index fe75796fe1511..ec4907fa06298 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -1740,7 +1740,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "e423495d1048ef659f3277bbd74ca1d5c57a2a8c" + "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1752,8 +1752,10 @@ "automattic/jetpack-licensing": "@dev", "automattic/jetpack-plans": "@dev", "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-status": "@dev", "automattic/jetpack-redirect": "@dev", "automattic/jetpack-status": "@dev", + "automattic/jetpack-sync": "@dev", "php": ">=7.0" }, "require-dev": { @@ -1775,7 +1777,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.27.x-dev" + "dev-trunk": "4.28.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" @@ -2070,6 +2072,145 @@ "relative": true } }, + { + "name": "automattic/jetpack-protect-models", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-models", + "reference": "a79c18207b3476214e4be25eb5184c452c952ea9" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "0.4.2", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-models/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-models", + "textdomain": "jetpack-protect-models", + "version-constants": { + "::PACKAGE_VERSION": "src/class-protect-models.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the models used in Protect. ", + "transport-options": { + "relative": true + } + }, + { + "name": "automattic/jetpack-protect-status", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-status", + "reference": "297c3a5f7826a8e4c76f9bc992d2bc3417a1b669" + }, + "require": { + "automattic/jetpack-connection": "@dev", + "automattic/jetpack-plans": "@dev", + "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-models": "@dev", + "automattic/jetpack-sync": "@dev", + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "dev-master", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-status/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-status", + "textdomain": "jetpack-protect-status", + "version-constants": { + "::PACKAGE_VERSION": "src/class-status.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the Protect Status API functionality to retrieve a site's scan status (WordPress, Themes, and Plugins threats).", + "transport-options": { + "relative": true + } + }, { "name": "automattic/jetpack-publicize", "version": "dev-trunk", diff --git a/projects/plugins/migration/changelog/add-mj-protect-card-last-scan-time b/projects/plugins/migration/changelog/add-mj-protect-card-last-scan-time new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/migration/changelog/add-mj-protect-card-last-scan-time @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/migration/changelog/add-mj-protect-card-last-scan-time#2 b/projects/plugins/migration/changelog/add-mj-protect-card-last-scan-time#2 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/migration/changelog/add-mj-protect-card-last-scan-time#2 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/migration/changelog/add-mj-protect-card-last-scan-time#3 b/projects/plugins/migration/changelog/add-mj-protect-card-last-scan-time#3 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/migration/changelog/add-mj-protect-card-last-scan-time#3 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/migration/composer.lock b/projects/plugins/migration/composer.lock index 3b82486511799..b35aeea9d164c 100644 --- a/projects/plugins/migration/composer.lock +++ b/projects/plugins/migration/composer.lock @@ -1088,7 +1088,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "e423495d1048ef659f3277bbd74ca1d5c57a2a8c" + "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1100,8 +1100,10 @@ "automattic/jetpack-licensing": "@dev", "automattic/jetpack-plans": "@dev", "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-status": "@dev", "automattic/jetpack-redirect": "@dev", "automattic/jetpack-status": "@dev", + "automattic/jetpack-sync": "@dev", "php": ">=7.0" }, "require-dev": { @@ -1123,7 +1125,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.27.x-dev" + "dev-trunk": "4.28.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" @@ -1356,6 +1358,145 @@ "relative": true } }, + { + "name": "automattic/jetpack-protect-models", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-models", + "reference": "a79c18207b3476214e4be25eb5184c452c952ea9" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "0.4.2", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-models/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-models", + "textdomain": "jetpack-protect-models", + "version-constants": { + "::PACKAGE_VERSION": "src/class-protect-models.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the models used in Protect. ", + "transport-options": { + "relative": true + } + }, + { + "name": "automattic/jetpack-protect-status", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-status", + "reference": "297c3a5f7826a8e4c76f9bc992d2bc3417a1b669" + }, + "require": { + "automattic/jetpack-connection": "@dev", + "automattic/jetpack-plans": "@dev", + "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-models": "@dev", + "automattic/jetpack-sync": "@dev", + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "dev-master", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-status/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-status", + "textdomain": "jetpack-protect-status", + "version-constants": { + "::PACKAGE_VERSION": "src/class-status.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the Protect Status API functionality to retrieve a site's scan status (WordPress, Themes, and Plugins threats).", + "transport-options": { + "relative": true + } + }, { "name": "automattic/jetpack-redirect", "version": "dev-trunk", diff --git a/projects/plugins/protect/changelog/add-mj-protect-card-last-scan-time b/projects/plugins/protect/changelog/add-mj-protect-card-last-scan-time new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/protect/changelog/add-mj-protect-card-last-scan-time @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/protect/changelog/add-mj-protect-card-last-scan-time#2 b/projects/plugins/protect/changelog/add-mj-protect-card-last-scan-time#2 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/protect/changelog/add-mj-protect-card-last-scan-time#2 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/protect/changelog/add-mj-protect-card-last-scan-time#3 b/projects/plugins/protect/changelog/add-mj-protect-card-last-scan-time#3 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/protect/changelog/add-mj-protect-card-last-scan-time#3 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/protect/composer.lock b/projects/plugins/protect/composer.lock index f87491e7c0243..4a3d170b899db 100644 --- a/projects/plugins/protect/composer.lock +++ b/projects/plugins/protect/composer.lock @@ -1001,7 +1001,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "e423495d1048ef659f3277bbd74ca1d5c57a2a8c" + "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1013,8 +1013,10 @@ "automattic/jetpack-licensing": "@dev", "automattic/jetpack-plans": "@dev", "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-status": "@dev", "automattic/jetpack-redirect": "@dev", "automattic/jetpack-status": "@dev", + "automattic/jetpack-sync": "@dev", "php": ">=7.0" }, "require-dev": { @@ -1036,7 +1038,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.27.x-dev" + "dev-trunk": "4.28.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" diff --git a/projects/plugins/search/changelog/add-mj-protect-card-last-scan-time b/projects/plugins/search/changelog/add-mj-protect-card-last-scan-time new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/search/changelog/add-mj-protect-card-last-scan-time @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/search/changelog/add-mj-protect-card-last-scan-time#2 b/projects/plugins/search/changelog/add-mj-protect-card-last-scan-time#2 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/search/changelog/add-mj-protect-card-last-scan-time#2 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/search/changelog/add-mj-protect-card-last-scan-time#3 b/projects/plugins/search/changelog/add-mj-protect-card-last-scan-time#3 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/search/changelog/add-mj-protect-card-last-scan-time#3 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/search/composer.lock b/projects/plugins/search/composer.lock index 67534eff9db53..16000989fa416 100644 --- a/projects/plugins/search/composer.lock +++ b/projects/plugins/search/composer.lock @@ -944,7 +944,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "e423495d1048ef659f3277bbd74ca1d5c57a2a8c" + "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -956,8 +956,10 @@ "automattic/jetpack-licensing": "@dev", "automattic/jetpack-plans": "@dev", "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-status": "@dev", "automattic/jetpack-redirect": "@dev", "automattic/jetpack-status": "@dev", + "automattic/jetpack-sync": "@dev", "php": ">=7.0" }, "require-dev": { @@ -979,7 +981,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.27.x-dev" + "dev-trunk": "4.28.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" @@ -1212,6 +1214,145 @@ "relative": true } }, + { + "name": "automattic/jetpack-protect-models", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-models", + "reference": "a79c18207b3476214e4be25eb5184c452c952ea9" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "0.4.2", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-models/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-models", + "textdomain": "jetpack-protect-models", + "version-constants": { + "::PACKAGE_VERSION": "src/class-protect-models.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the models used in Protect. ", + "transport-options": { + "relative": true + } + }, + { + "name": "automattic/jetpack-protect-status", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-status", + "reference": "297c3a5f7826a8e4c76f9bc992d2bc3417a1b669" + }, + "require": { + "automattic/jetpack-connection": "@dev", + "automattic/jetpack-plans": "@dev", + "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-models": "@dev", + "automattic/jetpack-sync": "@dev", + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "dev-master", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-status/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-status", + "textdomain": "jetpack-protect-status", + "version-constants": { + "::PACKAGE_VERSION": "src/class-status.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the Protect Status API functionality to retrieve a site's scan status (WordPress, Themes, and Plugins threats).", + "transport-options": { + "relative": true + } + }, { "name": "automattic/jetpack-redirect", "version": "dev-trunk", diff --git a/projects/plugins/social/changelog/add-mj-protect-card-last-scan-time b/projects/plugins/social/changelog/add-mj-protect-card-last-scan-time new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/social/changelog/add-mj-protect-card-last-scan-time @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/social/changelog/add-mj-protect-card-last-scan-time#2 b/projects/plugins/social/changelog/add-mj-protect-card-last-scan-time#2 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/social/changelog/add-mj-protect-card-last-scan-time#2 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/social/changelog/add-mj-protect-card-last-scan-time#3 b/projects/plugins/social/changelog/add-mj-protect-card-last-scan-time#3 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/social/changelog/add-mj-protect-card-last-scan-time#3 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/social/composer.lock b/projects/plugins/social/composer.lock index 320c37fc1a885..142fe5217ed3b 100644 --- a/projects/plugins/social/composer.lock +++ b/projects/plugins/social/composer.lock @@ -944,7 +944,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "e423495d1048ef659f3277bbd74ca1d5c57a2a8c" + "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -956,8 +956,10 @@ "automattic/jetpack-licensing": "@dev", "automattic/jetpack-plans": "@dev", "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-status": "@dev", "automattic/jetpack-redirect": "@dev", "automattic/jetpack-status": "@dev", + "automattic/jetpack-sync": "@dev", "php": ">=7.0" }, "require-dev": { @@ -979,7 +981,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.27.x-dev" + "dev-trunk": "4.28.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" @@ -1274,6 +1276,145 @@ "relative": true } }, + { + "name": "automattic/jetpack-protect-models", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-models", + "reference": "a79c18207b3476214e4be25eb5184c452c952ea9" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "0.4.2", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-models/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-models", + "textdomain": "jetpack-protect-models", + "version-constants": { + "::PACKAGE_VERSION": "src/class-protect-models.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the models used in Protect. ", + "transport-options": { + "relative": true + } + }, + { + "name": "automattic/jetpack-protect-status", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-status", + "reference": "297c3a5f7826a8e4c76f9bc992d2bc3417a1b669" + }, + "require": { + "automattic/jetpack-connection": "@dev", + "automattic/jetpack-plans": "@dev", + "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-models": "@dev", + "automattic/jetpack-sync": "@dev", + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "dev-master", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-status/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-status", + "textdomain": "jetpack-protect-status", + "version-constants": { + "::PACKAGE_VERSION": "src/class-status.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the Protect Status API functionality to retrieve a site's scan status (WordPress, Themes, and Plugins threats).", + "transport-options": { + "relative": true + } + }, { "name": "automattic/jetpack-publicize", "version": "dev-trunk", diff --git a/projects/plugins/starter-plugin/changelog/add-mj-protect-card-last-scan-time b/projects/plugins/starter-plugin/changelog/add-mj-protect-card-last-scan-time new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/starter-plugin/changelog/add-mj-protect-card-last-scan-time @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/starter-plugin/changelog/add-mj-protect-card-last-scan-time#2 b/projects/plugins/starter-plugin/changelog/add-mj-protect-card-last-scan-time#2 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/starter-plugin/changelog/add-mj-protect-card-last-scan-time#2 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/starter-plugin/changelog/add-mj-protect-card-last-scan-time#3 b/projects/plugins/starter-plugin/changelog/add-mj-protect-card-last-scan-time#3 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/starter-plugin/changelog/add-mj-protect-card-last-scan-time#3 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/starter-plugin/composer.lock b/projects/plugins/starter-plugin/composer.lock index 2a7a06bd5f327..845ffe32e853c 100644 --- a/projects/plugins/starter-plugin/composer.lock +++ b/projects/plugins/starter-plugin/composer.lock @@ -944,7 +944,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "e423495d1048ef659f3277bbd74ca1d5c57a2a8c" + "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -956,8 +956,10 @@ "automattic/jetpack-licensing": "@dev", "automattic/jetpack-plans": "@dev", "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-status": "@dev", "automattic/jetpack-redirect": "@dev", "automattic/jetpack-status": "@dev", + "automattic/jetpack-sync": "@dev", "php": ">=7.0" }, "require-dev": { @@ -979,7 +981,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.27.x-dev" + "dev-trunk": "4.28.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" @@ -1212,6 +1214,145 @@ "relative": true } }, + { + "name": "automattic/jetpack-protect-models", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-models", + "reference": "a79c18207b3476214e4be25eb5184c452c952ea9" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "0.4.2", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-models/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-models", + "textdomain": "jetpack-protect-models", + "version-constants": { + "::PACKAGE_VERSION": "src/class-protect-models.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the models used in Protect. ", + "transport-options": { + "relative": true + } + }, + { + "name": "automattic/jetpack-protect-status", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-status", + "reference": "297c3a5f7826a8e4c76f9bc992d2bc3417a1b669" + }, + "require": { + "automattic/jetpack-connection": "@dev", + "automattic/jetpack-plans": "@dev", + "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-models": "@dev", + "automattic/jetpack-sync": "@dev", + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "dev-master", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-status/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-status", + "textdomain": "jetpack-protect-status", + "version-constants": { + "::PACKAGE_VERSION": "src/class-status.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the Protect Status API functionality to retrieve a site's scan status (WordPress, Themes, and Plugins threats).", + "transport-options": { + "relative": true + } + }, { "name": "automattic/jetpack-redirect", "version": "dev-trunk", diff --git a/projects/plugins/videopress/changelog/add-mj-protect-card-last-scan-time b/projects/plugins/videopress/changelog/add-mj-protect-card-last-scan-time new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/videopress/changelog/add-mj-protect-card-last-scan-time @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/videopress/changelog/add-mj-protect-card-last-scan-time#2 b/projects/plugins/videopress/changelog/add-mj-protect-card-last-scan-time#2 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/videopress/changelog/add-mj-protect-card-last-scan-time#2 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/videopress/changelog/add-mj-protect-card-last-scan-time#3 b/projects/plugins/videopress/changelog/add-mj-protect-card-last-scan-time#3 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/videopress/changelog/add-mj-protect-card-last-scan-time#3 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/videopress/composer.lock b/projects/plugins/videopress/composer.lock index efad5e3bb4991..d255881a9f901 100644 --- a/projects/plugins/videopress/composer.lock +++ b/projects/plugins/videopress/composer.lock @@ -944,7 +944,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "e423495d1048ef659f3277bbd74ca1d5c57a2a8c" + "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -956,8 +956,10 @@ "automattic/jetpack-licensing": "@dev", "automattic/jetpack-plans": "@dev", "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-status": "@dev", "automattic/jetpack-redirect": "@dev", "automattic/jetpack-status": "@dev", + "automattic/jetpack-sync": "@dev", "php": ">=7.0" }, "require-dev": { @@ -979,7 +981,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.27.x-dev" + "dev-trunk": "4.28.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" @@ -1212,6 +1214,145 @@ "relative": true } }, + { + "name": "automattic/jetpack-protect-models", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-models", + "reference": "a79c18207b3476214e4be25eb5184c452c952ea9" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "0.4.2", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-models/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-models", + "textdomain": "jetpack-protect-models", + "version-constants": { + "::PACKAGE_VERSION": "src/class-protect-models.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the models used in Protect. ", + "transport-options": { + "relative": true + } + }, + { + "name": "automattic/jetpack-protect-status", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/protect-status", + "reference": "297c3a5f7826a8e4c76f9bc992d2bc3417a1b669" + }, + "require": { + "automattic/jetpack-connection": "@dev", + "automattic/jetpack-plans": "@dev", + "automattic/jetpack-plugins-installer": "@dev", + "automattic/jetpack-protect-models": "@dev", + "automattic/jetpack-sync": "@dev", + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "dev-master", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.1.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-protect-status/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-protect-status", + "textdomain": "jetpack-protect-status", + "version-constants": { + "::PACKAGE_VERSION": "src/class-status.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "This package contains the Protect Status API functionality to retrieve a site's scan status (WordPress, Themes, and Plugins threats).", + "transport-options": { + "relative": true + } + }, { "name": "automattic/jetpack-redirect", "version": "dev-trunk", From 3f7b2cdeb3441f97acc23bd4ee2207fa5b22dfbf Mon Sep 17 00:00:00 2001 From: Bryan Elliott Date: Fri, 12 Jul 2024 10:59:49 -0400 Subject: [PATCH 118/254] Protect card: Add the Scan/Threats status column (with tooltip) (#38165) --- .../protect-card/assets/shield-off.svg | 5 + .../protect-card/assets/shield-partial.svg | 4 + .../protect-card/assets/shield-success.svg | 4 + .../protect-card/index.tsx | 48 +++- .../protect-card/info-tooltip/index.tsx | 71 +++++ .../protect-card/info-tooltip/style.scss | 12 + .../protect-card/protect-value-section.tsx | 86 +++--- .../protect-card/scan-threats.tsx | 253 ++++++++++++++++++ .../protect-card/style.scss | 71 +++-- .../protect-card/use-protect-tooltip-copy.ts | 33 ++- .../add-my-protect-card-scan-threats | 4 + projects/packages/my-jetpack/global.d.ts | 19 +- .../my-jetpack/src/products/class-protect.php | 33 ++- 13 files changed, 550 insertions(+), 93 deletions(-) create mode 100644 projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/assets/shield-off.svg create mode 100644 projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/assets/shield-partial.svg create mode 100644 projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/assets/shield-success.svg create mode 100644 projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/info-tooltip/index.tsx create mode 100644 projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/info-tooltip/style.scss create mode 100644 projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/scan-threats.tsx create mode 100644 projects/packages/my-jetpack/changelog/add-my-protect-card-scan-threats diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/assets/shield-off.svg b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/assets/shield-off.svg new file mode 100644 index 0000000000000..e1f7f232bc396 --- /dev/null +++ b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/assets/shield-off.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/assets/shield-partial.svg b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/assets/shield-partial.svg new file mode 100644 index 0000000000000..03b09674fdade --- /dev/null +++ b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/assets/shield-partial.svg @@ -0,0 +1,4 @@ + + + + diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/assets/shield-success.svg b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/assets/shield-success.svg new file mode 100644 index 0000000000000..0f3ebeca1048d --- /dev/null +++ b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/assets/shield-success.svg @@ -0,0 +1,4 @@ + + + + diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/index.tsx b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/index.tsx index 4d6a3a741cdf5..5f6b6cd236b97 100644 --- a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/index.tsx +++ b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/index.tsx @@ -1,20 +1,50 @@ import { __ } from '@wordpress/i18n'; -import { PRODUCT_STATUSES } from '../../../constants'; +import { useCallback, type FC } from 'react'; +import useProduct from '../../../data/products/use-product'; +import useAnalytics from '../../../hooks/use-analytics'; import ProductCard from '../../connected-product-card'; import ProtectValueSection from './protect-value-section'; -import type { FC } from 'react'; const ProtectCard: FC< { admin: boolean } > = ( { admin } ) => { - // Override the primary action button to read "Protect your site" instead - // of the default text, "Learn more". - const primaryActionOverride = { - [ PRODUCT_STATUSES.ABSENT ]: { - label: __( 'Protect your site', 'jetpack-my-jetpack' ), - }, + const { recordEvent } = useAnalytics(); + const slug = 'protect'; + const { detail } = useProduct( slug ); + const { hasPaidPlanForProduct: hasProtectPaidPlan } = detail; + + /** + * Called when secondary "View" button is clicked. + */ + const onViewButtonClick = useCallback( () => { + recordEvent( 'jetpack_myjetpack_product_card_manage_click', { + product: slug, + } ); + }, [ recordEvent ] ); + + const shouldShowSecondaryButton = useCallback( + () => ! hasProtectPaidPlan, + [ hasProtectPaidPlan ] + ); + + const viewButton = { + href: 'admin.php?page=jetpack-protect', + label: __( 'View', 'jetpack-my-jetpack' ), + onClick: onViewButtonClick, + shouldShowButton: shouldShowSecondaryButton, }; + // This is a workaround to remove the Description from the product card. However if we end + // up needing to remove the Description from additional cards in the future, we might consider + // extending functionality to support that. + const noDescription = useCallback( () => null, [] ); + return ( - + ); diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/info-tooltip/index.tsx b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/info-tooltip/index.tsx new file mode 100644 index 0000000000000..de355f68cf165 --- /dev/null +++ b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/info-tooltip/index.tsx @@ -0,0 +1,71 @@ +import { Gridicon } from '@automattic/jetpack-components'; +import { Popover } from '@wordpress/components'; +import { useViewportMatch } from '@wordpress/compose'; +import { useState, useCallback, useRef } from 'react'; +import useAnalytics from '../../../../hooks/use-analytics'; +import type { FC, ReactNode } from 'react'; + +import './style.scss'; + +type Props = { + children: ReactNode; + icon?: string; + iconSize?: number; + tracksEventName?: string; + tracksEventProps?: { [ key: string ]: string | boolean | number }; +}; + +export const InfoTooltip: FC< Props > = ( { + children, + icon = 'info-outline', + iconSize = 14, + tracksEventName, + tracksEventProps = {}, +} ) => { + const { recordEvent } = useAnalytics(); + const useTooltipRef = useRef< HTMLButtonElement >(); + const isMobileViewport: boolean = useViewportMatch( 'medium', '<' ); + const [ isPopoverVisible, setIsPopoverVisible ] = useState( false ); + + const toggleTooltip = useCallback( + () => + setIsPopoverVisible( prevState => { + if ( ! prevState === true && tracksEventName ) { + recordEvent( `jetpack_${ tracksEventName }`, { + page: 'my-jetpack', + feature: 'jetpack-protect', + ...tracksEventProps, + } ); + } + return ! prevState; + } ), + [ recordEvent, tracksEventName, tracksEventProps ] + ); + + const hideTooltip = useCallback( () => { + // Don't hide the tooltip here if it's the tooltip button that was clicked (the button + // becoming the document's activeElement). Instead let toggleTooltip() handle the closing. + if ( useTooltipRef.current && ! useTooltipRef.current.contains( document.activeElement ) ) { + setIsPopoverVisible( false ); + } + }, [ setIsPopoverVisible, useTooltipRef ] ); + + return ( + + + { isPopoverVisible && ( + + { children } + + ) } + + ); +}; diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/info-tooltip/style.scss b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/info-tooltip/style.scss new file mode 100644 index 0000000000000..a39f6451f89ff --- /dev/null +++ b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/info-tooltip/style.scss @@ -0,0 +1,12 @@ +.info-tooltip__button { + display: flex; + align-items: center; + background: transparent; + border: none; + color: var(--jp-gray-50); + padding: 2px; + cursor: pointer; + svg { + margin: 0 auto; + } +} diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/protect-value-section.tsx b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/protect-value-section.tsx index 4e6600aae9fa1..5d71e2d9993a6 100644 --- a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/protect-value-section.tsx +++ b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/protect-value-section.tsx @@ -1,11 +1,10 @@ -import { Gridicon } from '@automattic/jetpack-components'; -import { Popover } from '@wordpress/components'; -import { useViewportMatch } from '@wordpress/compose'; -import { __, sprintf } from '@wordpress/i18n'; -import { useState, useCallback, useMemo, useRef } from 'react'; +import { __, _n, sprintf } from '@wordpress/i18n'; +import { useMemo } from 'react'; import useProduct from '../../../data/products/use-product'; import { getMyJetpackWindowInitialState } from '../../../data/utils/get-my-jetpack-window-state'; import { timeSince } from '../../../utils/time-since'; +import { InfoTooltip } from './info-tooltip'; +import { ScanAndThreatStatus } from './scan-threats'; import { useProtectTooltipCopy } from './use-protect-tooltip-copy'; import type { TooltipContent } from './use-protect-tooltip-copy'; import type { FC } from 'react'; @@ -39,11 +38,21 @@ const ProtectValueSection = () => { } return null; } - return sprintf( - /* translators: `\xa0` is a non-breaking space. %1$d is the number (integer) of plugins and %2$d is the number (integer) of themes the site has. */ - __( '%1$d plugins &\xa0%2$d\xa0themes', 'jetpack-my-jetpack' ), - pluginsCount, - themesCount + return ( + sprintf( + /* translators: %d is the number of plugins installed on the site. */ + _n( '%d plugin', '%d plugins', pluginsCount, 'jetpack-my-jetpack' ), + pluginsCount + ) + + ' ' + + /* translators: The ampersand symbol here (&) is meaning "and". */ + __( '&', 'jetpack-my-jetpack' ) + + '\xa0' + // `\xa0` is a non-breaking space. + sprintf( + /* translators: %d is the number of themes installed on the site. */ + _n( '%d theme', '%d themes', themesCount, 'jetpack-my-jetpack' ).replace( ' ', '\xa0' ), // `\xa0` is a non-breaking space. + themesCount + ) ); }, [ isPluginActive, timeSinceLastScan, pluginsCount, themesCount ] ); @@ -65,59 +74,30 @@ const ValueSection: FC< { lastScanText?: string; tooltipContent: TooltipContent; } > = ( { isProtectActive, lastScanText, tooltipContent } ) => { - const useTooltipRef = useRef< HTMLButtonElement >(); - const isMobileViewport: boolean = useViewportMatch( 'medium', '<' ); - const [ isPopoverVisible, setIsPopoverVisible ] = useState( false ); - // TODO: `scanThreatsTooltip` will be utilized in a followup PR. - // eslint-disable-next-line @typescript-eslint/no-unused-vars - const { pluginsThemesTooltip, scanThreatsTooltip } = tooltipContent; - - const toggleTooltip = useCallback( - () => setIsPopoverVisible( prevState => ! prevState ), - [ setIsPopoverVisible ] - ); - const hideTooltip = useCallback( () => { - // Don't hide the tooltip here if it's the tooltip button that was clicked (the button - // becoming the document's activeElement). Instead let toggleTooltip() handle the closing. - if ( useTooltipRef.current && ! useTooltipRef.current.contains( document.activeElement ) ) { - setIsPopoverVisible( false ); - } - }, [ setIsPopoverVisible, useTooltipRef ] ); + const { pluginsThemesTooltip } = tooltipContent; return ( <>
    { lastScanText &&
    { lastScanText }
    } { ! isProtectActive && ( -
    - - { isPopoverVisible && ( - - <> -

    { pluginsThemesTooltip.title }

    -

    { pluginsThemesTooltip.text }

    - -
    - ) } -
    + + <> +

    { pluginsThemesTooltip.title }

    +

    { pluginsThemesTooltip.text }

    + +
    ) }
    -
    Scan
    -
    +
    Auto-Firewall
    diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/scan-threats.tsx b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/scan-threats.tsx new file mode 100644 index 0000000000000..055f9f39976b7 --- /dev/null +++ b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/scan-threats.tsx @@ -0,0 +1,253 @@ +import { Gridicon } from '@automattic/jetpack-components'; +import { Popover } from '@wordpress/components'; +import { useViewportMatch } from '@wordpress/compose'; +import { __ } from '@wordpress/i18n'; +import { useMemo, useState, useCallback, useRef } from 'react'; +import useProduct from '../../../data/products/use-product'; +import { getMyJetpackWindowInitialState } from '../../../data/utils/get-my-jetpack-window-state'; +import useAnalytics from '../../../hooks/use-analytics'; +import useMyJetpackConnection from '../../../hooks/use-my-jetpack-connection'; +import ShieldOff from './assets/shield-off.svg'; +import ShieldPartial from './assets/shield-partial.svg'; +import ShieldSuccess from './assets/shield-success.svg'; +import { InfoTooltip } from './info-tooltip'; +import { useProtectTooltipCopy, type TooltipContent } from './use-protect-tooltip-copy'; +import type { ReactElement, PropsWithChildren } from 'react'; + +export const ScanAndThreatStatus = () => { + const slug = 'protect'; + const { detail } = useProduct( slug ); + const { isPluginActive = false, hasPaidPlanForProduct: hasProtectPaidPlan } = detail || {}; + const { isSiteConnected } = useMyJetpackConnection(); + const { plugins, themes, scanData } = getMyJetpackWindowInitialState(); + const { + plugins: fromScanPlugins, + themes: fromScanThemes, + num_threats: numThreats = 0, + } = scanData; + + const pluginsCount = fromScanPlugins.length || Object.keys( plugins ).length; + const themesCount = fromScanThemes.length || Object.keys( themes ).length; + const tooltipContent = useProtectTooltipCopy( { pluginsCount, themesCount, numThreats } ); + const { scanThreatsTooltip } = tooltipContent; + + const criticalScanThreatCount = useMemo( () => { + const { core, database, files, num_plugins_threats, num_themes_threats } = scanData; + const pluginsThreats = num_plugins_threats + ? fromScanPlugins.reduce( ( accum, plugin ) => accum.concat( plugin.threats ), [] ) + : []; + const themesThreats = num_themes_threats + ? fromScanThemes.reduce( ( accum, theme ) => accum.concat( theme.threats ), [] ) + : []; + const allThreats = [ + ...pluginsThreats, + ...themesThreats, + ...( core?.threats ?? [] ), + ...database, + ...files, + ]; + return allThreats.reduce( + ( accum, threat ) => ( threat.severity >= 5 ? ( accum += 1 ) : accum ), + 0 + ); + }, [ fromScanPlugins, fromScanThemes, scanData ] ); + + if ( isPluginActive && isSiteConnected ) { + if ( hasProtectPaidPlan ) { + if ( numThreats ) { + return ( + + ); + } + return ; + } + return numThreats ? ( + + ) : ( + + ); + } + + return ; +}; + +/** + * ThreatStatus component + * + * @param {PropsWithChildren} props - The component props + * @param {number} props.numThreats - The number of threats + * @param {number} props.criticalThreatCount - The number of critical threats + * @param {TooltipContent[ 'scanThreatsTooltip' ]} props.tooltipContent - The number of critical threats + * @returns {ReactElement} rendered component + */ +function ThreatStatus( { + numThreats, + criticalThreatCount, + tooltipContent, +}: { + numThreats: number; + criticalThreatCount?: number; + tooltipContent?: TooltipContent[ 'scanThreatsTooltip' ]; +} ) { + const { recordEvent } = useAnalytics(); + const useTooltipRef = useRef< HTMLButtonElement >(); + const isMobileViewport: boolean = useViewportMatch( 'medium', '<' ); + const [ isPopoverVisible, setIsPopoverVisible ] = useState( false ); + + const toggleTooltip = useCallback( + () => + setIsPopoverVisible( prevState => { + if ( ! prevState === true ) { + recordEvent( 'jetpack_protect_card_tooltip_open', { + page: 'my-jetpack', + feature: 'jetpack-protect', + location: 'scan', + status: 'alert', + hasPaidPlan: true, + threats: numThreats, + } ); + } + return ! prevState; + } ), + [ numThreats, recordEvent ] + ); + const hideTooltip = useCallback( () => { + // Don't hide the tooltip here if it's the tooltip button that was clicked (the button + // becoming the document's activeElement). Instead let toggleTooltip() handle the closing. + if ( useTooltipRef.current && ! useTooltipRef.current.contains( document.activeElement ) ) { + setIsPopoverVisible( false ); + } + }, [ setIsPopoverVisible, useTooltipRef ] ); + + if ( criticalThreatCount ) { + return ( + <> +
    { __( 'Threats', 'jetpack-my-jetpack' ) }
    +
    +
    +
    { numThreats }
    +
    + + { isPopoverVisible && ( + + <> +

    { tooltipContent.title }

    +

    { tooltipContent.text }

    + +
    + ) } +
    +
    +
    + + ); + } + + return ( + <> +
    { __( 'Threats', 'jetpack-my-jetpack' ) }
    +
    +
    { numThreats }
    +
    + + ); +} + +/** + * ScanStatus component + * + * @param {PropsWithChildren} props - The component props + * @param {'success' | 'partial' | 'off'} props.status - The number of threats + * @param {TooltipContent[ 'scanThreatsTooltip' ]} props.tooltipContent - The number of critical threats + * @returns { ReactElement} rendered component + */ +function ScanStatus( { + status, + tooltipContent, +}: { + status: 'success' | 'partial' | 'off'; + tooltipContent?: TooltipContent[ 'scanThreatsTooltip' ]; +} ) { + if ( status === 'success' ) { + return ( + <> +
    { __( 'Scan', 'jetpack-my-jetpack' ) }
    +
    +
    + { +
    +
    { __( 'Secure', 'jetpack-my-jetpack' ) }
    +
    + + ); + } + if ( status === 'partial' ) { + return ( + <> +
    { __( 'Scan', 'jetpack-my-jetpack' ) }
    +
    +
    + { +
    +
    + { __( 'Partial', 'jetpack-my-jetpack' ) } +
    + + <> +

    { tooltipContent.title }

    +

    { tooltipContent.text }

    + +
    +
    + + ); + } + return ( + <> +
    { __( 'Scan', 'jetpack-my-jetpack' ) }
    +
    +
    + { +
    +
    { __( 'Off', 'jetpack-my-jetpack' ) }
    +
    + + ); +} diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/style.scss b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/style.scss index f2f6af7938b61..3b82be661559d 100644 --- a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/style.scss +++ b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/style.scss @@ -1,11 +1,14 @@ .value-section { display: flex; justify-content: space-between; + margin-top: calc(var(--spacing-base) / 2); &__heading { font-size: var(--font-body-extra-small); color: var(--jp-gray-100); font-weight: 500; + margin-bottom: calc(var(--spacing-base) + 2px); + line-height: var(--font-title-small); } &__last-scan { @@ -15,7 +18,7 @@ margin-top: var(--spacing-base); column-gap: 1px; position: absolute; - right: calc(var(--spacing-base)*3); + right: calc(var(--spacing-base) * 3); width: calc(57% - (var(--spacing-base) * 3)); div { font-size: var(--font-body-extra-small); @@ -31,24 +34,11 @@ } } - &__tooltip-button { - display: flex; - align-items: center; - background: transparent; - border: none; - color: var(--jp-gray-50); - padding: 2px; - cursor: pointer; - svg { - margin: 0 auto; - } - } - &__tooltip-heading { font-size: var(--font-title-small); - line-height: 30px; + line-height: calc(var(--font-title-small) + 6px);; color: var(--jp-black); - margin: 0 0 16px; + margin: 0 0 calc(var(--spacing-base) * 2); font-weight: 500; } @@ -57,4 +47,53 @@ line-height: var(--font-title-small); color: var(--jp-gray-70); } + + &__data { + display: flex; + align-items: center; + font-size: var(--font-body-extra-small); + line-height: var(--font-title-small); + color: var(--jp-gray-50); + font-weight: 500; + } + + &__status-icon { + display: block; + margin-right: calc(var(--spacing-base) - 2px); + } + + &__status-text { + margin-right: 1px; + // Reduce the letter spacing slightly. + // The specific letter spacing is per the design mockup. + letter-spacing: -0.24px; // https://wp.me/p1HpG7-rFA + } } + +.scan-threats { + &__threat-count { + font-size: calc(var(--font-title-large) - 4px); + line-height: var(--font-title-large); + font-weight: 400; + color: var(--jp-black); + } + + &__critical-threats { + display: flex; + align-items: center; + } + + &__critical-threat-container { + margin-left: 1px; + > button > svg { + fill: var(--jp-red-50); + } + } + + &__critical-threat-count { + color: var(--jp-red-50); + margin-left: calc(var(--spacing-base) / 4); + } +} + + diff --git a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/use-protect-tooltip-copy.ts b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/use-protect-tooltip-copy.ts index 6503be581edf0..1f51776b2153f 100644 --- a/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/use-protect-tooltip-copy.ts +++ b/projects/packages/my-jetpack/_inc/components/product-cards-section/protect-card/use-protect-tooltip-copy.ts @@ -1,4 +1,4 @@ -import { __, sprintf } from '@wordpress/i18n'; +import { __, _n, sprintf } from '@wordpress/i18n'; import useProduct from '../../../data/products/use-product'; import type { ReactElement } from 'react'; @@ -36,13 +36,21 @@ export function useProtectTooltipCopy( { pluginsThemesTooltip: { title: __( 'Improve site safety: secure plugins & themes', 'jetpack-my-jetpack' ), text: sprintf( - /* translators: %1$d is the number of plugins and %2$d is the number of themes installed on the site. */ + /* translators: %1$s the singular or plural of number of plugin(s), and %2$s is the singular or plural of the number of theme(s). */ __( - 'Your site has %1$d plugins and %2$d themes lacking security measures. Improve your site’s safety by adding protection at no cost.', + 'Your site has %1$s and %2$s lacking security measures. Improve your site’s safety by adding protection at no cost.', 'jetpack-my-jetpack' ), - pluginsCount, - themesCount + sprintf( + /* translators: %d is the number of plugins installed on the site. */ + _n( '%d plugin', '%d plugins', pluginsCount, 'jetpack-my-jetpack' ), + pluginsCount + ), + sprintf( + /* translators: %d is the number of themes installed on the site. */ + _n( '%d theme', '%d themes', themesCount, 'jetpack-my-jetpack' ), + themesCount + ) ), }, scanThreatsTooltip: @@ -50,12 +58,21 @@ export function useProtectTooltipCopy( { ? { title: __( 'Auto-fix threats', 'jetpack-my-jetpack' ), text: sprintf( - /* translators: %d is the number of detected scan threats on the site. */ + /* translators: %s is the singular or plural of number of detected critical threats on the site. */ __( - 'The last scan identified %d critical threats. But don’t worry, use the “Auto-fix” button in the product to automatically fix most threats.', + 'The last scan identified %s. But don’t worry, use the “Auto-fix” button in the product to automatically fix most threats.', 'jetpack-my-jetpack' ), - numThreats + sprintf( + /* translators: %d is the number of detected scan threats on the site. */ + _n( + '%d critical threat.', + '%d critical threats.', + numThreats, + 'jetpack-my-jetpack' + ), + numThreats + ) ), } : { diff --git a/projects/packages/my-jetpack/changelog/add-my-protect-card-scan-threats b/projects/packages/my-jetpack/changelog/add-my-protect-card-scan-threats new file mode 100644 index 0000000000000..d8d47d70e31dc --- /dev/null +++ b/projects/packages/my-jetpack/changelog/add-my-protect-card-scan-threats @@ -0,0 +1,4 @@ +Significance: patch +Type: added + +Add scan/threat info to the Protect card in My Jetpack. diff --git a/projects/packages/my-jetpack/global.d.ts b/projects/packages/my-jetpack/global.d.ts index 8cdd63114d5bb..e8fc1136d62a1 100644 --- a/projects/packages/my-jetpack/global.d.ts +++ b/projects/packages/my-jetpack/global.d.ts @@ -27,11 +27,28 @@ type JetpackModule = | 'stats' | 'ai'; +type ThreatItem = { + // Protect API properties (free plan) + id: string; + title: string; + fixed_in: string; + description: string | null; + source: string | null; + // Scan API properties (paid plan) + context: string | null; + filename: string | null; + first_detected: string | null; + fixable: boolean | null; + severity: number | null; + signature: string | null; + status: number | null; +}; + type ScanItem = { checked: boolean; name: string; slug: string; - threats: string[]; + threats: ThreatItem[]; type: string; version: string; }; diff --git a/projects/packages/my-jetpack/src/products/class-protect.php b/projects/packages/my-jetpack/src/products/class-protect.php index 331ea2b46e58d..70624db3a0526 100644 --- a/projects/packages/my-jetpack/src/products/class-protect.php +++ b/projects/packages/my-jetpack/src/products/class-protect.php @@ -255,16 +255,37 @@ public static function get_pricing_for_ui() { } /** - * Checks if the site has a paid plan for the product + * Checks whether the current plan (or purchases) of the site already supports the product * - * @return bool + * @return boolean */ public static function has_paid_plan_for_product() { - $scan_data = static::get_state_from_wpcom(); - if ( is_wp_error( $scan_data ) ) { + $purchases_data = Wpcom_Products::get_site_current_purchases(); + if ( is_wp_error( $purchases_data ) ) { return false; } - return is_object( $scan_data ) && isset( $scan_data->state ) && 'unavailable' !== $scan_data->state; + if ( is_array( $purchases_data ) && ! empty( $purchases_data ) ) { + foreach ( $purchases_data as $purchase ) { + // Protect is available as jetpack_scan product and as part of the Security or Complete plan. + if ( + strpos( $purchase->product_slug, 'jetpack_scan' ) !== false || + str_starts_with( $purchase->product_slug, 'jetpack_security' ) || + str_starts_with( $purchase->product_slug, 'jetpack_complete' ) + ) { + return true; + } + } + } + return false; + } + + /** + * Checks whether the product can be upgraded - i.e. this shows the /#add-protect interstitial + * + * @return boolean + */ + public static function is_upgradable() { + return ! self::has_paid_plan_for_product(); } /** @@ -292,6 +313,6 @@ public static function get_manage_url() { * @return array Products bundle list. */ public static function is_upgradable_by_bundle() { - return array( 'security' ); + return array( 'security', 'complete' ); } } From cbf857ac1bedf7a590c021ab1a2c85571f7e609d Mon Sep 17 00:00:00 2001 From: Luiz Kowalski Date: Fri, 12 Jul 2024 15:20:34 -0300 Subject: [PATCH 119/254] Jetpack AI: Register ai-assistant-site-logo-support beta extension (#38322) * Register the extension on backend * Add ai-assistant-site-logo-support to the extension list, as beta * Changelog --- .../update-jetpack-ai-logo-extension-beta-feature | 4 ++++ .../extensions/blocks/ai-assistant/ai-assistant.php | 12 ++++++++++++ projects/plugins/jetpack/extensions/index.json | 3 ++- 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 projects/plugins/jetpack/changelog/update-jetpack-ai-logo-extension-beta-feature diff --git a/projects/plugins/jetpack/changelog/update-jetpack-ai-logo-extension-beta-feature b/projects/plugins/jetpack/changelog/update-jetpack-ai-logo-extension-beta-feature new file mode 100644 index 0000000000000..5c5dfeb5787bc --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-jetpack-ai-logo-extension-beta-feature @@ -0,0 +1,4 @@ +Significance: minor +Type: other + +Jetpack AI: add beta flag to control logo generator extension. diff --git a/projects/plugins/jetpack/extensions/blocks/ai-assistant/ai-assistant.php b/projects/plugins/jetpack/extensions/blocks/ai-assistant/ai-assistant.php index 02e4ff32244dd..7d68a2eedc77b 100644 --- a/projects/plugins/jetpack/extensions/blocks/ai-assistant/ai-assistant.php +++ b/projects/plugins/jetpack/extensions/blocks/ai-assistant/ai-assistant.php @@ -185,3 +185,15 @@ function () { } } ); + +/** + * Register the `ai-assistant-site-logo-support` extension. + */ +add_action( + 'jetpack_register_gutenberg_extensions', + function () { + if ( apply_filters( 'jetpack_ai_enabled', true ) ) { + \Jetpack_Gutenberg::set_extension_available( 'ai-assistant-site-logo-support' ); + } + } +); diff --git a/projects/plugins/jetpack/extensions/index.json b/projects/plugins/jetpack/extensions/index.json index c7ee8bf1e3c87..fb51b70578947 100644 --- a/projects/plugins/jetpack/extensions/index.json +++ b/projects/plugins/jetpack/extensions/index.json @@ -79,7 +79,8 @@ "videopress/video-chapters", "ai-assistant-backend-prompts", "ai-assistant-extensions-support", - "ai-proofread-breve" + "ai-proofread-breve", + "ai-assistant-site-logo-support" ], "experimental": [ "ai-image", "ai-paragraph" ], "no-post-editor": [ From 3fc8c3c3a01e9eacc2b76d21dd4993de885dc6e5 Mon Sep 17 00:00:00 2001 From: Sergey Mitroshin Date: Fri, 12 Jul 2024 14:46:10 -0400 Subject: [PATCH 120/254] Google Analytics: initialize via MU-WPCOM plugin (#37622) Initialize Google Analytics package via MU-WPCOM plugin. --- .../add-google-analytics-to-mu-wpcom | 4 ++ .../packages/jetpack-mu-wpcom/composer.json | 1 + .../src/class-jetpack-mu-wpcom.php | 1 + .../google-analytics/google-analytics.php | 11 +++ .../add-google-analytics-to-mu-wpcom | 5 ++ .../plugins/mu-wpcom-plugin/composer.lock | 71 ++++++++++++++++++- .../add-google-analytics-to-mu-wpcom | 4 ++ projects/plugins/wpcomsh/composer.lock | 71 ++++++++++++++++++- 8 files changed, 166 insertions(+), 2 deletions(-) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/add-google-analytics-to-mu-wpcom create mode 100644 projects/packages/jetpack-mu-wpcom/src/features/google-analytics/google-analytics.php create mode 100644 projects/plugins/mu-wpcom-plugin/changelog/add-google-analytics-to-mu-wpcom create mode 100644 projects/plugins/wpcomsh/changelog/add-google-analytics-to-mu-wpcom diff --git a/projects/packages/jetpack-mu-wpcom/changelog/add-google-analytics-to-mu-wpcom b/projects/packages/jetpack-mu-wpcom/changelog/add-google-analytics-to-mu-wpcom new file mode 100644 index 0000000000000..40c6ae0470f7a --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/add-google-analytics-to-mu-wpcom @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Load the Google Analytics package. diff --git a/projects/packages/jetpack-mu-wpcom/composer.json b/projects/packages/jetpack-mu-wpcom/composer.json index 95127bca609c0..b8ef93ae05d88 100644 --- a/projects/packages/jetpack-mu-wpcom/composer.json +++ b/projects/packages/jetpack-mu-wpcom/composer.json @@ -16,6 +16,7 @@ "automattic/jetpack-status": "@dev", "automattic/scheduled-updates": "@dev", "automattic/jetpack-compat": "@dev", + "automattic/jetpack-google-analytics": "@dev", "scssphp/scssphp": "1.12.0" }, "require-dev": { diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 2532fa9ce98df..b3d0b34f13cbe 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -109,6 +109,7 @@ public static function load_features() { require_once __DIR__ . '/features/wpcom-block-editor/functions.editor-type.php'; require_once __DIR__ . '/features/wpcom-sidebar-notice/wpcom-sidebar-notice.php'; require_once __DIR__ . '/features/wpcom-themes/wpcom-themes.php'; + require_once __DIR__ . '/features/google-analytics/google-analytics.php'; // Initializers, if needed. \Marketplace_Products_Updater::init(); diff --git a/projects/packages/jetpack-mu-wpcom/src/features/google-analytics/google-analytics.php b/projects/packages/jetpack-mu-wpcom/src/features/google-analytics/google-analytics.php new file mode 100644 index 0000000000000..fd6acc2a40143 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/src/features/google-analytics/google-analytics.php @@ -0,0 +1,11 @@ +=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "^0.4.2", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.2.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-google-analytics/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-google-analytics", + "textdomain": "jetpack-google-analytics", + "version-constants": { + "::PACKAGE_VERSION": "src/class-ga-manager.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Set up Google Analytics without touching a line of code.", + "transport-options": { + "relative": true + } + }, { "name": "automattic/jetpack-ip", "version": "dev-trunk", @@ -937,7 +1005,7 @@ "dist": { "type": "path", "url": "../../packages/jetpack-mu-wpcom", - "reference": "b38d3b2528ad88fb370897a5e7860b0725e06850" + "reference": "94b20f27ba3452f454c50a288931cc3e57c363ba" }, "require": { "automattic/jetpack-assets": "@dev", @@ -946,6 +1014,7 @@ "automattic/jetpack-classic-theme-helper": "@dev", "automattic/jetpack-compat": "@dev", "automattic/jetpack-connection": "@dev", + "automattic/jetpack-google-analytics": "@dev", "automattic/jetpack-masterbar": "@dev", "automattic/jetpack-redirect": "@dev", "automattic/jetpack-stats-admin": "@dev", diff --git a/projects/plugins/wpcomsh/changelog/add-google-analytics-to-mu-wpcom b/projects/plugins/wpcomsh/changelog/add-google-analytics-to-mu-wpcom new file mode 100644 index 0000000000000..3415d4df7dd84 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/add-google-analytics-to-mu-wpcom @@ -0,0 +1,4 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index b6c1985c1d545..66028b68de68c 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -812,6 +812,74 @@ "relative": true } }, + { + "name": "automattic/jetpack-google-analytics", + "version": "dev-trunk", + "dist": { + "type": "path", + "url": "../../packages/google-analytics", + "reference": "9aacc5acb62eda87adf12a76dcc1d006103adf5c" + }, + "require": { + "automattic/jetpack-status": "@dev", + "php": ">=7.0" + }, + "require-dev": { + "automattic/jetpack-changelogger": "@dev", + "automattic/wordbless": "^0.4.2", + "yoast/phpunit-polyfills": "1.1.0" + }, + "suggest": { + "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." + }, + "type": "jetpack-library", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "0.2.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-google-analytics/compare/v${old}...v${new}" + }, + "mirror-repo": "Automattic/jetpack-google-analytics", + "textdomain": "jetpack-google-analytics", + "version-constants": { + "::PACKAGE_VERSION": "src/class-ga-manager.php" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "scripts": { + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Set up Google Analytics without touching a line of code.", + "transport-options": { + "relative": true + } + }, { "name": "automattic/jetpack-ip", "version": "dev-trunk", @@ -1074,7 +1142,7 @@ "dist": { "type": "path", "url": "../../packages/jetpack-mu-wpcom", - "reference": "b38d3b2528ad88fb370897a5e7860b0725e06850" + "reference": "94b20f27ba3452f454c50a288931cc3e57c363ba" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1083,6 +1151,7 @@ "automattic/jetpack-classic-theme-helper": "@dev", "automattic/jetpack-compat": "@dev", "automattic/jetpack-connection": "@dev", + "automattic/jetpack-google-analytics": "@dev", "automattic/jetpack-masterbar": "@dev", "automattic/jetpack-redirect": "@dev", "automattic/jetpack-stats-admin": "@dev", From cad737881bb640bd81acdd15a3f72c99014399f2 Mon Sep 17 00:00:00 2001 From: Miguel Lezama Date: Fri, 12 Jul 2024 20:11:30 -0300 Subject: [PATCH 121/254] Admin: Redirect Jetpack Admin Pages to Specific Sections (#38148) --- .../_inc/lib/admin-pages/class.jetpack-react-page.php | 11 ++++++++++- .../jetpack/changelog/add-redirect-admin-pages | 4 ++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 projects/plugins/jetpack/changelog/add-redirect-admin-pages diff --git a/projects/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php b/projects/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php index 860c6f44e2279..56b96499d14a4 100644 --- a/projects/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php +++ b/projects/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php @@ -46,7 +46,16 @@ public function add_page_actions( $hook ) { /** This action is documented in class.jetpack-admin.php */ do_action( 'jetpack_admin_menu', $hook ); - if ( ! isset( $_GET['page'] ) || 'jetpack' !== $_GET['page'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is view logic. + if ( ! isset( $_GET['page'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended + return; + } + $page = sanitize_text_field( wp_unslash( $_GET['page'] ) ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended + if ( 'jetpack' !== $page ) { + if ( strpos( $page, 'jetpack/' ) === 0 ) { + $section = substr( $page, 8 ); + wp_safe_redirect( admin_url( 'admin.php?page=jetpack#/' . $section ) ); + exit; + } return; // No need to handle the fallback redirection if we are not on the Jetpack page. } diff --git a/projects/plugins/jetpack/changelog/add-redirect-admin-pages b/projects/plugins/jetpack/changelog/add-redirect-admin-pages new file mode 100644 index 0000000000000..655b95cf88aad --- /dev/null +++ b/projects/plugins/jetpack/changelog/add-redirect-admin-pages @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +Admin: redirect jetpack pages From fe17eb182452c2dbb629238f84c8d7921251e3de Mon Sep 17 00:00:00 2001 From: Jeremy Herve Date: Mon, 15 Jul 2024 09:27:21 +0200 Subject: [PATCH 122/254] Publicize: add Fediverse meta tag on posts when available (#38198) * Publicize: add Fediverse meta tag on posts when available See https://blog.joinmastodon.org/2024/07/highlighting-journalism-on-mastodon/ If we have an existing Mastodon connection on the site, let's add it as meta tag on each post. * Improve logic to support global connections. 1. We now keep all existing Mastodon connections for a post, as long as that post was published to that connection. If you've opted not to share that post to Mastodon, we do not keep that connection. 2. We keep both your own connections as well as any other global connections on the site. 3. We then sort through those connections: * We prioritize your own connections, and pick the first of them, * If you, the author, haven't published that specific post to a Mastodon connection, we look for global Mastodon connections. If there are some, we pick the first. See discussion here: https://github.com/Automattic/jetpack/pull/38198#issuecomment-2225663451 --- .../changelog/add-fediverse-tag-social | 4 + .../publicize/src/class-publicize-base.php | 93 +++++++++++++++++++ 2 files changed, 97 insertions(+) create mode 100644 projects/packages/publicize/changelog/add-fediverse-tag-social diff --git a/projects/packages/publicize/changelog/add-fediverse-tag-social b/projects/packages/publicize/changelog/add-fediverse-tag-social new file mode 100644 index 0000000000000..d7e2865964e4e --- /dev/null +++ b/projects/packages/publicize/changelog/add-fediverse-tag-social @@ -0,0 +1,4 @@ +Significance: patch +Type: added + +Mastodon: display a Fediverse Creator tag when the post author has connected their account to a Mastodon account. diff --git a/projects/packages/publicize/src/class-publicize-base.php b/projects/packages/publicize/src/class-publicize-base.php index 0266e31c655ba..582a9cfdd28ad 100644 --- a/projects/packages/publicize/src/class-publicize-base.php +++ b/projects/packages/publicize/src/class-publicize-base.php @@ -254,6 +254,10 @@ public function __construct() { // The custom priority for this action ensures that any existing code that // removes post-thumbnails support during 'init' continues to work. add_action( 'init', __NAMESPACE__ . '\add_theme_post_thumbnails_support', 8 ); + + // Add a Fediverse Open Graph Tag when an author has connected their Mastodon account. + add_filter( 'jetpack_open_graph_tags', array( $this, 'add_fediverse_creator_open_graph_tag' ), 10, 1 ); + add_filter( 'jetpack_open_graph_output', array( $this, 'filter_fediverse_cards_output' ), 10, 1 ); } /** @@ -2116,6 +2120,95 @@ public function get_dismissed_notices() { public static function can_manage_connection( $connection_data ) { return current_user_can( 'edit_others_posts' ) || get_current_user_id() === (int) $connection_data['user_id']; } + + /** + * Display a Fediverse actor Open Graph tag when the post author has a Mastodon connection. + * + * @see https://blog.joinmastodon.org/2024/07/highlighting-journalism-on-mastodon/ + * + * @param array $tags Current tags. + * + * @return array + */ + public function add_fediverse_creator_open_graph_tag( $tags ) { + global $post; + + if ( + ! is_singular() + || ! $post instanceof WP_Post + || ! isset( $post->ID ) + || empty( $post->post_author ) + ) { + return $tags; + } + + $post_mastodon_connections = array(); + + // Loop through active connections. + foreach ( (array) $this->get_services( 'connected' ) as $service_name => $connections ) { + if ( 'mastodon' !== $service_name ) { + continue; + } + + // services can have multiple connections. Store them all in our array. + foreach ( $connections as $connection ) { + $connection_id = $this->get_connection_id( $connection ); + $mastodon_handle = $connection['external_display'] ?? ''; + + if ( empty( $mastodon_handle ) ) { + continue; + } + + // Did we skip this connection for this post? + if ( get_post_meta( $post->ID, $this->POST_SKIP_PUBLICIZE . $connection_id, true ) ) { + continue; + } + + $post_mastodon_connections[] = array( + 'user_id' => (int) $connection['user_id'], + 'connection_id' => (int) $connection_id, + 'handle' => $mastodon_handle, + 'global' => $this->is_global_connection( $connection ), + ); + } + } + + // If we have no Mastodon connections, skip. + if ( empty( $post_mastodon_connections ) ) { + return $tags; + } + + /* + * Select a single Mastodon connection to use. + * It should be either the first connection belonging to the post author, + * or the first global connection. + */ + foreach ( $post_mastodon_connections as $mastodon_connection ) { + if ( $post->post_author === $mastodon_connection['user_id'] ) { + $tags['fediverse:creator'] = esc_attr( $mastodon_connection['handle'] ); + break; + } + + if ( $mastodon_connection['global'] ) { + $tags['fediverse:creator'] = esc_attr( $mastodon_connection['handle'] ); + break; + } + } + + return $tags; + } + + /** + * Update the markup for the Open Graph tag to match the expected output for Mastodon + * (name instead of property). + * + * @param string $og_tag A single OG tag. + * + * @return string Result of the OG tag. + */ + public static function filter_fediverse_cards_output( $og_tag ) { + return ( str_contains( $og_tag, 'fediverse:' ) ) ? preg_replace( '/property="([^"]+)"/', 'name="\1"', $og_tag ) : $og_tag; + } } // phpcs:disable Universal.Files.SeparateFunctionsFromOO.Mixed -- TODO: Move these functions to some other file. From 9c947acf544f714a7736eb0e1851bac6cf5d3efb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gergely=20M=C3=A1rk=20Juh=C3=A1sz?= <36671565+gmjuhasz@users.noreply.github.com> Date: Mon, 15 Jul 2024 09:51:54 +0200 Subject: [PATCH 123/254] Social: Add recommendation steps for the V1 plan (#38219) * Update the advanced plan recommendations for the v1 plan * changelog * Fixup versions * Use the sharing page for connections with the UI v1 --- .../update-social-v1-recommendation-steps | 4 ++++ projects/js-packages/licensing/package.json | 2 +- projects/plugins/jetpack/_inc/client/main.jsx | 8 ++++---- .../_inc/client/recommendations/constants.js | 20 +++++++++---------- .../client/recommendations/feature-utils.js | 20 +++++++++++-------- .../_inc/client/recommendations/index.jsx | 16 +++++++-------- .../prompts/resource-prompt/index.jsx | 4 +++- .../client/state/recommendations/reducer.js | 20 +++++++++---------- .../update-social-v1-recommendation-steps | 4 ++++ 9 files changed, 56 insertions(+), 42 deletions(-) create mode 100644 projects/js-packages/licensing/changelog/update-social-v1-recommendation-steps create mode 100644 projects/plugins/jetpack/changelog/update-social-v1-recommendation-steps diff --git a/projects/js-packages/licensing/changelog/update-social-v1-recommendation-steps b/projects/js-packages/licensing/changelog/update-social-v1-recommendation-steps new file mode 100644 index 0000000000000..afb53cfea3c22 --- /dev/null +++ b/projects/js-packages/licensing/changelog/update-social-v1-recommendation-steps @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Social Recommendations: Added for V1 plan diff --git a/projects/js-packages/licensing/package.json b/projects/js-packages/licensing/package.json index b5bfa7af7f5a9..6ca8e0d2d484e 100644 --- a/projects/js-packages/licensing/package.json +++ b/projects/js-packages/licensing/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-licensing", - "version": "0.12.18", + "version": "0.12.19-alpha", "description": "Jetpack licensing flow", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/licensing/#readme", "bugs": { diff --git a/projects/plugins/jetpack/_inc/client/main.jsx b/projects/plugins/jetpack/_inc/client/main.jsx index 7a4105d8b8f57..a9cfdf1278fa6 100644 --- a/projects/plugins/jetpack/_inc/client/main.jsx +++ b/projects/plugins/jetpack/_inc/client/main.jsx @@ -121,13 +121,13 @@ const recommendationsRoutes = [ '/recommendations/welcome-search', '/recommendations/welcome-scan', '/recommendations/welcome-social-basic', - '/recommendations/welcome-social-advanced', + '/recommendations/welcome-social-v1', '/recommendations/welcome-social-image-generator', '/recommendations/welcome-golden-token', '/recommendations/backup-activated', '/recommendations/scan-activated', '/recommendations/unlimited-sharing-activated', - '/recommendations/social-advanced-activated', + '/recommendations/social-v1-activated', '/recommendations/antispam-activated', '/recommendations/videopress-activated', '/recommendations/search-activated', @@ -599,12 +599,12 @@ class Main extends React.Component { case '/recommendations/welcome-search': case '/recommendations/welcome-scan': case '/recommendations/welcome-social-basic': - case '/recommendations/welcome-social-advanced': + case '/recommendations/welcome-social-v1': case '/recommendations/welcome-golden-token': case '/recommendations/backup-activated': case '/recommendations/scan-activated': case '/recommendations/unlimited-sharing-activated': - case '/recommendations/social-advanced-activated': + case '/recommendations/social-v1-activated': case '/recommendations/welcome-social-image-generator': case '/recommendations/antispam-activated': case '/recommendations/videopress-activated': diff --git a/projects/plugins/jetpack/_inc/client/recommendations/constants.js b/projects/plugins/jetpack/_inc/client/recommendations/constants.js index 4a162606521cb..baef7d5f2610a 100644 --- a/projects/plugins/jetpack/_inc/client/recommendations/constants.js +++ b/projects/plugins/jetpack/_inc/client/recommendations/constants.js @@ -9,8 +9,8 @@ import { JETPACK_SEARCH_PRODUCTS, JETPACK_SCAN_PRODUCTS, JETPACK_GOLDEN_TOKEN_BUNDLES, - JETPACK_SOCIAL_ADVANCED_PRODUCTS, JETPACK_SOCIAL_BASIC_PRODUCTS, + JETPACK_SOCIAL_V1_PRODUCTS, } from 'lib/plans/constants'; export const RECOMMENDATION_WIZARD_STEP = { @@ -41,12 +41,12 @@ export const RECOMMENDATION_WIZARD_STEP = { WELCOME__SEARCH: 'welcome__search', WELCOME__SCAN: 'welcome__scan', WELCOME__SOCIAL_BASIC: 'welcome__social_basic', - WELCOME__SOCIAL_ADVANCED: 'welcome__social_advanced', + WELCOME__SOCIAL_V1: 'welcome__social_v1', WELCOME__SOCIAL_IMAGE_GENERATOR: 'welcome__social_image_generator', WELCOME__GOLDEN_TOKEN: 'welcome__golden_token', BACKUP_ACTIVATED: 'backup-activated', SCAN_ACTIVATED: 'scan-activated', - SOCIAL_ADVANCED_ACTIVATED: 'social-advanced-activated', + SOCIAL_V1_ACTIVATED: 'social-v1-activated', UNLIMITED_SHARING_ACTIVATED: 'unlimited-sharing-activated', ANTISPAM_ACTIVATED: 'antispam-activated', VIDEOPRESS_ACTIVATED: 'videopress-activated', @@ -67,7 +67,7 @@ export const ONBOARDING_JETPACK_VIDEOPRESS = 'JETPACK_VIDEOPRESS'; export const ONBOARDING_JETPACK_SEARCH = 'JETPACK_SEARCH'; export const ONBOARDING_JETPACK_SCAN = 'JETPACK_SCAN'; export const ONBOARDING_JETPACK_SOCIAL_BASIC = 'JETPACK_SOCIAL_BASIC'; -export const ONBOARDING_JETPACK_SOCIAL_ADVANCED = 'JETPACK_SOCIAL_ADVANCED'; +export const ONBOARDING_JETPACK_SOCIAL_V1 = 'JETPACK_SOCIAL_V1'; export const ONBOARDING_JETPACK_GOLDEN_TOKEN = 'JETPACK_GOLDEN_TOKEN'; export const ONBOARDING_SUPPORT_START_TIMESTAMP = 1664323200000; // 2022-09-28 @@ -83,7 +83,7 @@ export const ONBOARDING_ORDER = [ ONBOARDING_JETPACK_SEARCH, ONBOARDING_JETPACK_SCAN, ONBOARDING_JETPACK_SOCIAL_BASIC, - ONBOARDING_JETPACK_SOCIAL_ADVANCED, + ONBOARDING_JETPACK_SOCIAL_V1, ]; export const ONBOARDING_NAME_BY_PRODUCT_SLUG = { @@ -97,7 +97,7 @@ export const ONBOARDING_NAME_BY_PRODUCT_SLUG = { [ ONBOARDING_JETPACK_SEARCH ]: JETPACK_SEARCH_PRODUCTS, [ ONBOARDING_JETPACK_SCAN ]: JETPACK_SCAN_PRODUCTS, [ ONBOARDING_JETPACK_SOCIAL_BASIC ]: JETPACK_SOCIAL_BASIC_PRODUCTS, - [ ONBOARDING_JETPACK_SOCIAL_ADVANCED ]: JETPACK_SOCIAL_ADVANCED_PRODUCTS, + [ ONBOARDING_JETPACK_SOCIAL_V1 ]: JETPACK_SOCIAL_V1_PRODUCTS, }; export const SUMMARY_SECTION_BY_ONBOARDING_NAME = { @@ -109,7 +109,7 @@ export const SUMMARY_SECTION_BY_ONBOARDING_NAME = { 'antispam-activated', 'videopress-activated', 'unlimited-sharing-activated', - 'social-advanced-activated', + 'social-v1-activated', 'search-activated', ], }, @@ -145,11 +145,11 @@ export const SUMMARY_SECTION_BY_ONBOARDING_NAME = { name: 'Social Basic', slugs: [ RECOMMENDATION_WIZARD_STEP.UNLIMITED_SHARING_ACTIVATED ], }, - [ ONBOARDING_JETPACK_SOCIAL_ADVANCED ]: { - name: 'Social Advanced', + [ ONBOARDING_JETPACK_SOCIAL_V1 ]: { + name: 'Social', slugs: [ RECOMMENDATION_WIZARD_STEP.UNLIMITED_SHARING_ACTIVATED, - RECOMMENDATION_WIZARD_STEP.SOCIAL_ADVANCED_ACTIVATED, + RECOMMENDATION_WIZARD_STEP.SOCIAL_V1_ACTIVATED, ], }, [ ONBOARDING_JETPACK_GOLDEN_TOKEN ]: { diff --git a/projects/plugins/jetpack/_inc/client/recommendations/feature-utils.js b/projects/plugins/jetpack/_inc/client/recommendations/feature-utils.js index 20905cc7131e3..bfdac2b6b923b 100644 --- a/projects/plugins/jetpack/_inc/client/recommendations/feature-utils.js +++ b/projects/plugins/jetpack/_inc/client/recommendations/feature-utils.js @@ -165,7 +165,7 @@ export const getSummaryPrimaryProps = ( state, primarySlug ) => { ctaLabel: __( 'Manage', 'jetpack' ), ctaLink: getSiteAdminUrl( state ) + 'admin.php?page=jetpack#/sharing', }; - case 'social-advanced-activated': + case 'social-v1-activated': return { displayName: __( 'Advanced Sharing Features', 'jetpack' ), ctaLabel: __( 'Manage', 'jetpack' ), @@ -554,17 +554,20 @@ export const getStepContent = ( state, stepSlug ) => { illustration: 'assistant-jetpack-social', skipText: __( 'Next', 'jetpack' ), }; - case 'welcome__social_advanced': + case 'welcome__social_v1': return { question: __( 'Welcome to Jetpack Social!', 'jetpack' ), description: __( - "With your new advanced plan you unlocked unlimited sharing, access to upload photos and videos with your posts, and usage of Social Image Generator.

    Let's start with connecting your social media accounts, if you haven't already.", + "With your new Social plan you unlocked priority support, access to upload photos and videos with your posts, and usage of Social Image Generator.

    Let's start with connecting your social media accounts, if you haven't already.", 'jetpack' ), ctaText: __( 'Manage Social Media Connections', 'jetpack' ), - ctaLink: getRedirectUrl( 'calypso-marketing-connections', { - site: getSiteRawUrl( state ), - } ), + ctaLink: getSocialInitiaState( state ).useAdminUiV1 + ? getSiteAdminUrl( state ) + 'admin.php?page=jetpack#/sharing' + : getRedirectUrl( 'calypso-marketing-connections', { + site: getSiteRawUrl( state ), + } ), + ctaForceExternal: true, illustration: 'assistant-jetpack-social', skipText: __( 'Next', 'jetpack' ), }; @@ -577,6 +580,7 @@ export const getStepContent = ( state, stepSlug ) => { ), ctaText: __( 'View Jetpack Social settings', 'jetpack' ), ctaLink: getSiteAdminUrl( state ) + 'admin.php?page=jetpack#/sharing', + ctaForceExternal: true, illustration: 'assistant-social-image-post', skipText: __( 'Next', 'jetpack' ), }; @@ -631,11 +635,11 @@ export const getStepContent = ( state, stepSlug ) => { illustration: 'assistant-jetpack-social', skipText: __( 'Next', 'jetpack' ), }; - case 'social-advanced-activated': + case 'social-v1-activated': return { question: __( 'Advanced Sharing features', 'jetpack' ), description: __( - 'Use your unlocked unlimited sharing, upload photos and videos with your posts, and create previews with Social Image Generator. To use these features, just head to the post editor and start creating your post!

    You can manage your connections, and tweak features like Social Image Generator from the Jetpack Social Settings.', + 'Use your Social plan to upload photos and videos with your posts, and create previews with Social Image Generator. To use these features, just head to the post editor and start creating your post!

    You can manage your connections, and tweak features like Social Image Generator from the Jetpack Social Settings.', 'jetpack' ), ctaText: __( 'View Jetpack Social settings', 'jetpack' ), diff --git a/projects/plugins/jetpack/_inc/client/recommendations/index.jsx b/projects/plugins/jetpack/_inc/client/recommendations/index.jsx index 17810cfb45839..ea476fb8dfad6 100644 --- a/projects/plugins/jetpack/_inc/client/recommendations/index.jsx +++ b/projects/plugins/jetpack/_inc/client/recommendations/index.jsx @@ -148,8 +148,8 @@ const RecommendationsComponent = props => { case RECOMMENDATION_WIZARD_STEP.WELCOME__SOCIAL_BASIC: redirectPath = '/welcome-social-basic'; break; - case RECOMMENDATION_WIZARD_STEP.WELCOME__SOCIAL_ADVANCED: - redirectPath = '/welcome-social-advanced'; + case RECOMMENDATION_WIZARD_STEP.WELCOME__SOCIAL_V1: + redirectPath = '/welcome-social-v1'; break; case RECOMMENDATION_WIZARD_STEP.WELCOME__SOCIAL_IMAGE_GENERATOR: redirectPath = 'welcome-social-image-generator'; @@ -169,8 +169,8 @@ const RecommendationsComponent = props => { case RECOMMENDATION_WIZARD_STEP.UNLIMITED_SHARING_ACTIVATED: redirectPath = '/unlimited-sharing-activated'; break; - case RECOMMENDATION_WIZARD_STEP.SOCIAL_ADVANCED_ACTIVATED: - redirectPath = '/social-advanced-activated'; + case RECOMMENDATION_WIZARD_STEP.SOCIAL_V1_ACTIVATED: + redirectPath = '/social-v1-activated'; break; case RECOMMENDATION_WIZARD_STEP.ANTISPAM_ACTIVATED: redirectPath = '/antispam-activated'; @@ -295,8 +295,8 @@ const RecommendationsComponent = props => { - - + + @@ -313,8 +313,8 @@ const RecommendationsComponent = props => { - - + + diff --git a/projects/plugins/jetpack/_inc/client/recommendations/prompts/resource-prompt/index.jsx b/projects/plugins/jetpack/_inc/client/recommendations/prompts/resource-prompt/index.jsx index bf139576a324d..37a82ecd15918 100644 --- a/projects/plugins/jetpack/_inc/client/recommendations/prompts/resource-prompt/index.jsx +++ b/projects/plugins/jetpack/_inc/client/recommendations/prompts/resource-prompt/index.jsx @@ -45,6 +45,7 @@ const ResourcePromptComponent = props => { illustration, ctaText, ctaLink, + ctaForceExternal, hasNoAction, skipText, stepSlug, @@ -119,7 +120,8 @@ const ResourcePromptComponent = props => { return null; }, [ stepProgressValue, progressValue ] ); - const ctaLinkIsExternal = ctaLink?.match( /^https:\/\/jetpack.com\/redirect/ ); + const ctaLinkIsExternal = + ctaLink?.match( /^https:\/\/jetpack.com\/redirect/ ) || ctaForceExternal; return ( { case 'backup-activated': case 'scan-activated': case 'unlimited-sharing-activated': - case 'social-advanced-activated': + case 'social-v1-activated': case 'search-activated': case 'welcome__complete': case 'welcome__security': @@ -666,7 +666,7 @@ const isStepEligibleToShow = ( state, step ) => { case 'welcome__search': case 'welcome__scan': case 'welcome__social_basic': - case 'welcome__social_advanced': + case 'welcome__social_v1': case 'welcome__social_image_generator': case 'welcome__backup': case 'welcome__golden_token': @@ -856,7 +856,7 @@ export const isOnboardingEligibleToShowInSummary = ( state, onboardingName ) => case ONBOARDING_JETPACK_SEARCH: case ONBOARDING_JETPACK_SECURITY: case ONBOARDING_JETPACK_SOCIAL_BASIC: - case ONBOARDING_JETPACK_SOCIAL_ADVANCED: + case ONBOARDING_JETPACK_SOCIAL_V1: // Don't show plans that overlap with active plan: Complete return ! viewedOnboardings.includes( ONBOARDING_JETPACK_COMPLETE ); case ONBOARDING_JETPACK_BACKUP: diff --git a/projects/plugins/jetpack/changelog/update-social-v1-recommendation-steps b/projects/plugins/jetpack/changelog/update-social-v1-recommendation-steps new file mode 100644 index 0000000000000..9dcc203a3ce3f --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-social-v1-recommendation-steps @@ -0,0 +1,4 @@ +Significance: patch +Type: enhancement + +Added recommendation steps for the Social v1 plan From 17c26123e48039845822975a39d4c08a99548361 Mon Sep 17 00:00:00 2001 From: Foteini Giannaropoulou Date: Mon, 15 Jul 2024 13:42:15 +0300 Subject: [PATCH 124/254] Jetpack Sync: Add support for WooCommerce HPOS checksums (#38320) * Jetpack Sync: Add support for simple Sync checksums --- .../changelog/fix-sync-hpos-checksum-support | 4 ++ projects/packages/sync/composer.json | 2 +- .../sync/src/class-package-version.php | 2 +- .../packages/sync/src/class-replicastore.php | 24 +++++++++++- .../src/replicastore/class-table-checksum.php | 37 +++++++++++++++++-- .../changelog/fix-sync-hpos-checksum-support | 5 +++ .../composer.lock | 4 +- .../changelog/fix-sync-hpos-checksum-support | 5 +++ projects/plugins/backup/composer.lock | 4 +- .../changelog/fix-sync-hpos-checksum-support | 5 +++ projects/plugins/boost/composer.lock | 4 +- .../changelog/fix-sync-hpos-checksum-support | 5 +++ projects/plugins/jetpack/composer.lock | 4 +- .../changelog/fix-sync-hpos-checksum-support | 5 +++ projects/plugins/migration/composer.lock | 4 +- .../changelog/fix-sync-hpos-checksum-support | 5 +++ .../plugins/mu-wpcom-plugin/composer.lock | 4 +- .../changelog/fix-sync-hpos-checksum-support | 5 +++ projects/plugins/protect/composer.lock | 4 +- .../changelog/fix-sync-hpos-checksum-support | 5 +++ projects/plugins/search/composer.lock | 4 +- .../changelog/fix-sync-hpos-checksum-support | 5 +++ projects/plugins/social/composer.lock | 4 +- .../changelog/fix-sync-hpos-checksum-support | 5 +++ projects/plugins/starter-plugin/composer.lock | 4 +- .../changelog/fix-sync-hpos-checksum-support | 5 +++ projects/plugins/videopress/composer.lock | 4 +- .../changelog/fix-sync-hpos-checksum-support | 5 +++ projects/plugins/wpcomsh/composer.lock | 4 +- 29 files changed, 147 insertions(+), 30 deletions(-) create mode 100644 projects/packages/sync/changelog/fix-sync-hpos-checksum-support create mode 100644 projects/plugins/automattic-for-agencies-client/changelog/fix-sync-hpos-checksum-support create mode 100644 projects/plugins/backup/changelog/fix-sync-hpos-checksum-support create mode 100644 projects/plugins/boost/changelog/fix-sync-hpos-checksum-support create mode 100644 projects/plugins/jetpack/changelog/fix-sync-hpos-checksum-support create mode 100644 projects/plugins/migration/changelog/fix-sync-hpos-checksum-support create mode 100644 projects/plugins/mu-wpcom-plugin/changelog/fix-sync-hpos-checksum-support create mode 100644 projects/plugins/protect/changelog/fix-sync-hpos-checksum-support create mode 100644 projects/plugins/search/changelog/fix-sync-hpos-checksum-support create mode 100644 projects/plugins/social/changelog/fix-sync-hpos-checksum-support create mode 100644 projects/plugins/starter-plugin/changelog/fix-sync-hpos-checksum-support create mode 100644 projects/plugins/videopress/changelog/fix-sync-hpos-checksum-support create mode 100644 projects/plugins/wpcomsh/changelog/fix-sync-hpos-checksum-support diff --git a/projects/packages/sync/changelog/fix-sync-hpos-checksum-support b/projects/packages/sync/changelog/fix-sync-hpos-checksum-support new file mode 100644 index 0000000000000..41cfce8e07c8f --- /dev/null +++ b/projects/packages/sync/changelog/fix-sync-hpos-checksum-support @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Jetpack Sync: Add support for HPOS checksums diff --git a/projects/packages/sync/composer.json b/projects/packages/sync/composer.json index ac75f524b7799..ca3d9480ac16f 100644 --- a/projects/packages/sync/composer.json +++ b/projects/packages/sync/composer.json @@ -59,7 +59,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.2.x-dev" + "dev-trunk": "3.3.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index fedcbfb8b79e8..59075e260a0a4 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.2.2-alpha'; + const PACKAGE_VERSION = '3.3.0-alpha'; const PACKAGE_SLUG = 'sync'; diff --git a/projects/packages/sync/src/class-replicastore.php b/projects/packages/sync/src/class-replicastore.php index 7548fffdc63c2..06c0188a8871f 100644 --- a/projects/packages/sync/src/class-replicastore.php +++ b/projects/packages/sync/src/class-replicastore.php @@ -1175,7 +1175,6 @@ public function get_allowed_mime_types( $user_id ) { // phpcs:ignore VariableAna /** * Retrieve all the checksums we are interested in. - * Currently that is posts, comments, post meta and comment meta. * * @access public * @@ -1238,6 +1237,29 @@ public function checksum_all( $perform_text_conversion = false ) { } catch ( Exception $ex ) { $result['woocommerce_order_itemmeta'] = null; } + + if ( Table_Checksum::enable_woocommerce_hpos_tables() ) { + try { + $woocommerce_hpos_orders_checksum = $this->checksum_histogram( 'wc_orders' ); + $result['wc_orders'] = $this->summarize_checksum_histogram( $woocommerce_hpos_orders_checksum ); + } catch ( Exception $ex ) { + $result['wc_orders'] = null; + } + + try { + $woocommerce_hpos_order_addresses_checksum = $this->checksum_histogram( 'wc_order_addresses' ); + $result['wc_order_addresses'] = $this->summarize_checksum_histogram( $woocommerce_hpos_order_addresses_checksum ); + } catch ( Exception $ex ) { + $result['wc_order_addresses'] = null; + } + + try { + $woocommerce_hpos_order_operational_data_checksum = $this->checksum_histogram( 'wc_order_operational_data' ); + $result['wc_order_operational_data'] = $this->summarize_checksum_histogram( $woocommerce_hpos_order_operational_data_checksum ); + } catch ( Exception $ex ) { + $result['wc_order_operational_data'] = null; + } + } } return $result; diff --git a/projects/packages/sync/src/replicastore/class-table-checksum.php b/projects/packages/sync/src/replicastore/class-table-checksum.php index 4810326562c70..1dee548a539ed 100644 --- a/projects/packages/sync/src/replicastore/class-table-checksum.php +++ b/projects/packages/sync/src/replicastore/class-table-checksum.php @@ -313,7 +313,7 @@ protected function get_default_tables() { 'key_fields' => array( 'id' ), 'checksum_text_fields' => array( 'type', 'status', 'payment_method_title' ), 'filter_values' => array(), - 'is_table_enabled_callback' => array( $this, 'enable_woocommerce_tables' ), + 'is_table_enabled_callback' => 'Automattic\Jetpack\Sync\Replicastore\Table_Checksum::enable_woocommerce_hpos_tables', ), 'wc_order_addresses' => array( 'table' => "{$wpdb->prefix}wc_order_addresses", @@ -321,7 +321,7 @@ protected function get_default_tables() { 'key_fields' => array( 'order_id', 'address_type' ), 'checksum_text_fields' => array( 'address_type' ), 'filter_values' => array(), - 'is_table_enabled_callback' => array( $this, 'enable_woocommerce_tables' ), + 'is_table_enabled_callback' => 'Automattic\Jetpack\Sync\Replicastore\Table_Checksum::enable_woocommerce_hpos_tables', ), 'wc_order_operational_data' => array( 'table' => "{$wpdb->prefix}wc_order_operational_data", @@ -329,7 +329,7 @@ protected function get_default_tables() { 'key_fields' => array( 'order_id' ), 'checksum_text_fields' => array( 'order_key', 'cart_hash' ), 'filter_values' => array(), - 'is_table_enabled_callback' => array( $this, 'enable_woocommerce_tables' ), + 'is_table_enabled_callback' => 'Automattic\Jetpack\Sync\Replicastore\Table_Checksum::enable_woocommerce_hpos_tables', ), 'users' => array( 'table' => $wpdb->users, @@ -881,6 +881,37 @@ protected function enable_woocommerce_tables() { return true; } + /** + * Make sure the WooCommerce HPOS tables should be enabled for Checksum/Fix. + * + * @see Automattic\Jetpack\SyncActions::initialize_woocommerce + * + * @since $$next-version$$ + * + * @return bool + */ + public static function enable_woocommerce_hpos_tables() { + /** + * On WordPress.com, we can't directly check if the site has support for WooCommerce HPOS tables. + * Having the option to override the functionality here helps with syncing WooCommerce HPOS tables. + * + * @since $$next-version$$ + * + * @param bool If we should we force-enable WooCommerce HPOS tables support. + */ + $force_woocommerce_hpos_support = apply_filters( 'jetpack_table_checksum_force_enable_woocommerce_hpos', false ); + + // If we're forcing WooCommerce HPOS tables support, there's no need to check further. + // This is used on WordPress.com. + if ( $force_woocommerce_hpos_support ) { + return true; + } + + // If the 'woocommerce_hpos_orders' module is enabled, this means that WooCommerce class exists + // and HPOS is enabled too. + return false !== Sync\Modules::get_module( 'woocommerce_hpos_orders' ); + } + /** * Prepare and append custom columns to the list of columns that we run the checksum on. * diff --git a/projects/plugins/automattic-for-agencies-client/changelog/fix-sync-hpos-checksum-support b/projects/plugins/automattic-for-agencies-client/changelog/fix-sync-hpos-checksum-support new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/automattic-for-agencies-client/changelog/fix-sync-hpos-checksum-support @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/automattic-for-agencies-client/composer.lock b/projects/plugins/automattic-for-agencies-client/composer.lock index bd0c339796857..500858788c761 100644 --- a/projects/plugins/automattic-for-agencies-client/composer.lock +++ b/projects/plugins/automattic-for-agencies-client/composer.lock @@ -862,7 +862,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" + "reference": "9e674c384f72544b488e3af3d9348692d32cee54" }, "require": { "automattic/jetpack-connection": "@dev", @@ -895,7 +895,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.2.x-dev" + "dev-trunk": "3.3.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/backup/changelog/fix-sync-hpos-checksum-support b/projects/plugins/backup/changelog/fix-sync-hpos-checksum-support new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/backup/changelog/fix-sync-hpos-checksum-support @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/backup/composer.lock b/projects/plugins/backup/composer.lock index d4af919e06c4c..dd87da2c311a3 100644 --- a/projects/plugins/backup/composer.lock +++ b/projects/plugins/backup/composer.lock @@ -1667,7 +1667,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" + "reference": "9e674c384f72544b488e3af3d9348692d32cee54" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1700,7 +1700,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.2.x-dev" + "dev-trunk": "3.3.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/boost/changelog/fix-sync-hpos-checksum-support b/projects/plugins/boost/changelog/fix-sync-hpos-checksum-support new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/boost/changelog/fix-sync-hpos-checksum-support @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/boost/composer.lock b/projects/plugins/boost/composer.lock index b180f7fa0a185..203432b927169 100644 --- a/projects/plugins/boost/composer.lock +++ b/projects/plugins/boost/composer.lock @@ -1651,7 +1651,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" + "reference": "9e674c384f72544b488e3af3d9348692d32cee54" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1684,7 +1684,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.2.x-dev" + "dev-trunk": "3.3.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/jetpack/changelog/fix-sync-hpos-checksum-support b/projects/plugins/jetpack/changelog/fix-sync-hpos-checksum-support new file mode 100644 index 0000000000000..a1c1831fa1ef7 --- /dev/null +++ b/projects/plugins/jetpack/changelog/fix-sync-hpos-checksum-support @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated composer.lock. + + diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index ec4907fa06298..09c3e512744f6 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -2677,7 +2677,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" + "reference": "9e674c384f72544b488e3af3d9348692d32cee54" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2710,7 +2710,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.2.x-dev" + "dev-trunk": "3.3.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/migration/changelog/fix-sync-hpos-checksum-support b/projects/plugins/migration/changelog/fix-sync-hpos-checksum-support new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/migration/changelog/fix-sync-hpos-checksum-support @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/migration/composer.lock b/projects/plugins/migration/composer.lock index b35aeea9d164c..f49fb720551e1 100644 --- a/projects/plugins/migration/composer.lock +++ b/projects/plugins/migration/composer.lock @@ -1667,7 +1667,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" + "reference": "9e674c384f72544b488e3af3d9348692d32cee54" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1700,7 +1700,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.2.x-dev" + "dev-trunk": "3.3.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/mu-wpcom-plugin/changelog/fix-sync-hpos-checksum-support b/projects/plugins/mu-wpcom-plugin/changelog/fix-sync-hpos-checksum-support new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/mu-wpcom-plugin/changelog/fix-sync-hpos-checksum-support @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/mu-wpcom-plugin/composer.lock b/projects/plugins/mu-wpcom-plugin/composer.lock index dc00253ca9284..751d9334e86e6 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.lock +++ b/projects/plugins/mu-wpcom-plugin/composer.lock @@ -1506,7 +1506,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" + "reference": "9e674c384f72544b488e3af3d9348692d32cee54" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1539,7 +1539,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.2.x-dev" + "dev-trunk": "3.3.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/protect/changelog/fix-sync-hpos-checksum-support b/projects/plugins/protect/changelog/fix-sync-hpos-checksum-support new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/protect/changelog/fix-sync-hpos-checksum-support @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/protect/composer.lock b/projects/plugins/protect/composer.lock index 4a3d170b899db..807cbab0627fc 100644 --- a/projects/plugins/protect/composer.lock +++ b/projects/plugins/protect/composer.lock @@ -1580,7 +1580,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" + "reference": "9e674c384f72544b488e3af3d9348692d32cee54" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1613,7 +1613,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.2.x-dev" + "dev-trunk": "3.3.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/search/changelog/fix-sync-hpos-checksum-support b/projects/plugins/search/changelog/fix-sync-hpos-checksum-support new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/search/changelog/fix-sync-hpos-checksum-support @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/search/composer.lock b/projects/plugins/search/composer.lock index 16000989fa416..c64f18960e52f 100644 --- a/projects/plugins/search/composer.lock +++ b/projects/plugins/search/composer.lock @@ -1672,7 +1672,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" + "reference": "9e674c384f72544b488e3af3d9348692d32cee54" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1705,7 +1705,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.2.x-dev" + "dev-trunk": "3.3.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/social/changelog/fix-sync-hpos-checksum-support b/projects/plugins/social/changelog/fix-sync-hpos-checksum-support new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/social/changelog/fix-sync-hpos-checksum-support @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/social/composer.lock b/projects/plugins/social/composer.lock index 142fe5217ed3b..869bb64c4d76f 100644 --- a/projects/plugins/social/composer.lock +++ b/projects/plugins/social/composer.lock @@ -1662,7 +1662,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" + "reference": "9e674c384f72544b488e3af3d9348692d32cee54" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1695,7 +1695,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.2.x-dev" + "dev-trunk": "3.3.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/starter-plugin/changelog/fix-sync-hpos-checksum-support b/projects/plugins/starter-plugin/changelog/fix-sync-hpos-checksum-support new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/starter-plugin/changelog/fix-sync-hpos-checksum-support @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/starter-plugin/composer.lock b/projects/plugins/starter-plugin/composer.lock index 845ffe32e853c..ee83bc08f981a 100644 --- a/projects/plugins/starter-plugin/composer.lock +++ b/projects/plugins/starter-plugin/composer.lock @@ -1523,7 +1523,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" + "reference": "9e674c384f72544b488e3af3d9348692d32cee54" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1556,7 +1556,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.2.x-dev" + "dev-trunk": "3.3.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/videopress/changelog/fix-sync-hpos-checksum-support b/projects/plugins/videopress/changelog/fix-sync-hpos-checksum-support new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/videopress/changelog/fix-sync-hpos-checksum-support @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/videopress/composer.lock b/projects/plugins/videopress/composer.lock index d255881a9f901..0238fdcda0048 100644 --- a/projects/plugins/videopress/composer.lock +++ b/projects/plugins/videopress/composer.lock @@ -1523,7 +1523,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" + "reference": "9e674c384f72544b488e3af3d9348692d32cee54" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1556,7 +1556,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.2.x-dev" + "dev-trunk": "3.3.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/wpcomsh/changelog/fix-sync-hpos-checksum-support b/projects/plugins/wpcomsh/changelog/fix-sync-hpos-checksum-support new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/fix-sync-hpos-checksum-support @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index 66028b68de68c..2c3e0ae1c05e2 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -1705,7 +1705,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "89d46505557c31b54cb41a8ae6f38070640f1d0f" + "reference": "9e674c384f72544b488e3af3d9348692d32cee54" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1738,7 +1738,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.2.x-dev" + "dev-trunk": "3.3.x-dev" }, "dependencies": { "test-only": [ From 8894aceeb676f1d4ccf915d810f3802a9e1f1e49 Mon Sep 17 00:00:00 2001 From: Kosta Date: Mon, 15 Jul 2024 13:08:35 +0200 Subject: [PATCH 125/254] Fix comment redirect and avoid loading likes for unapproved comments (#38301) * Fix comment redirect and avoid loading likes for unapproved comments * changelog --- .../plugins/jetpack/changelog/fix-at-comment-post-redirect | 4 ++++ projects/plugins/jetpack/modules/comment-likes.php | 4 ++++ .../subscription-modal-on-comment/subscription-modal.js | 4 ++-- 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/fix-at-comment-post-redirect diff --git a/projects/plugins/jetpack/changelog/fix-at-comment-post-redirect b/projects/plugins/jetpack/changelog/fix-at-comment-post-redirect new file mode 100644 index 0000000000000..7f4f39be53d3b --- /dev/null +++ b/projects/plugins/jetpack/changelog/fix-at-comment-post-redirect @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +Fix redirect for comments pending approval diff --git a/projects/plugins/jetpack/modules/comment-likes.php b/projects/plugins/jetpack/modules/comment-likes.php index 169e520e62261..acbba42397476 100644 --- a/projects/plugins/jetpack/modules/comment-likes.php +++ b/projects/plugins/jetpack/modules/comment-likes.php @@ -209,6 +209,10 @@ public function comment_likes( $content, $comment = null ) { return $content; } + if ( empty( $comment->comment_approved ) ) { + return $content; + } + // In case master iframe hasn't been loaded. This could be the case when Post Likes module is disabled, // or on pages on which we have comments but post likes are disabled. if ( false === has_action( 'wp_footer', 'jetpack_likes_master_iframe' ) ) { diff --git a/projects/plugins/jetpack/modules/comments/subscription-modal-on-comment/subscription-modal.js b/projects/plugins/jetpack/modules/comments/subscription-modal-on-comment/subscription-modal.js index 93bab5d995986..9df971aa1b2fb 100644 --- a/projects/plugins/jetpack/modules/comments/subscription-modal-on-comment/subscription-modal.js +++ b/projects/plugins/jetpack/modules/comments/subscription-modal-on-comment/subscription-modal.js @@ -25,8 +25,8 @@ document.addEventListener( 'DOMContentLoaded', function () { ); // eslint-disable-next-line no-empty } catch ( e ) {} - // For avoiding Firefox reload, we need to force reload bypassing the cache. - window.location.reload( true ); + + window.location = destinationUrl.toString(); } function JetpackSubscriptionModalOnCommentMessageListener( event ) { From 2c4d80f0fdf2621935cebbb401a720b78d004232 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nauris=20P=C5=AB=C4=B7is?= Date: Mon, 15 Jul 2024 14:42:02 +0300 Subject: [PATCH 126/254] Jetpack Boost: Fix Image Guide Display for SVGs (#38329) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix: Don't show image guide on SVGs * Move svg check when searching for measurable elements * Add js-packages/image-guide changelog entry. * Fix svelte linter complaints * fix module resolution * only show the guide if at least one of the images has a file size available * remove moduleResolution config * Trailing coma 🏥 --- .../changelog/update-fix-image-guide-svgs | 4 ++ .../image-guide/src/find-image-elements.ts | 9 ++- .../image-guide/src/ui/Bubble.svelte | 4 +- .../image-guide/src/ui/Main.svelte | 59 +++++++++++-------- .../image-guide/src/ui/Popup.svelte | 4 +- 5 files changed, 53 insertions(+), 27 deletions(-) create mode 100644 projects/js-packages/image-guide/changelog/update-fix-image-guide-svgs diff --git a/projects/js-packages/image-guide/changelog/update-fix-image-guide-svgs b/projects/js-packages/image-guide/changelog/update-fix-image-guide-svgs new file mode 100644 index 0000000000000..694da4b8779ef --- /dev/null +++ b/projects/js-packages/image-guide/changelog/update-fix-image-guide-svgs @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Fixed a bug where image guide would show up for svg images. diff --git a/projects/js-packages/image-guide/src/find-image-elements.ts b/projects/js-packages/image-guide/src/find-image-elements.ts index 70894c5ff5f8e..802082c7a8020 100644 --- a/projects/js-packages/image-guide/src/find-image-elements.ts +++ b/projects/js-packages/image-guide/src/find-image-elements.ts @@ -9,6 +9,9 @@ import { MeasurableImage, type FetchFn } from './MeasurableImage.js'; export function findMeasurableElements( nodes: Element[] ): HTMLElement[] | HTMLImageElement[] { return nodes.filter( ( el ): el is HTMLElement | HTMLImageElement => { if ( el instanceof HTMLImageElement ) { + if ( isSvgUrl( el.src ) ) { + return false; + } return true; } if ( el instanceof HTMLElement ) { @@ -55,6 +58,11 @@ export function backgroundImageSource( node: HTMLElement ) { return null; } +function isSvgUrl( srcUrl: string ): boolean { + const url = new URL( srcUrl ); + return url.pathname.toLowerCase().endsWith( '.svg' ); +} + /** * Create MeasurableImage objects from a list of nodes * and remove any nodes that can't be measured. @@ -79,7 +87,6 @@ export async function getMeasurableImages( */ return null; } - return new MeasurableImage( node, backgroundImageSource ); } diff --git a/projects/js-packages/image-guide/src/ui/Bubble.svelte b/projects/js-packages/image-guide/src/ui/Bubble.svelte index 0200122858476..9b3e40fbfa049 100644 --- a/projects/js-packages/image-guide/src/ui/Bubble.svelte +++ b/projects/js-packages/image-guide/src/ui/Bubble.svelte @@ -35,7 +35,9 @@ } - + + +
    { - stores.forEach( store => store.updateDimensions() ); - } ); + onMount(() => { + stores.forEach(store => store.updateDimensions()); + }); - function closeDetails( e ) { + function closeDetails(e) { // Don't exit when hovering the Portal if ( e.relatedTarget && // Don't exit when hovering the Popup - e.relatedTarget.classList.contains( 'keep-guide-open' ) + e.relatedTarget.classList.contains('keep-guide-open') ) { return; } @@ -30,43 +31,53 @@ show = false; } - function getGuideSize( width = -1, height = -1 ): GuideSize { - if ( width < 200 || height < 200 ) { + function getGuideSize(width = -1, height = -1): GuideSize { + if (width < 200 || height < 200) { return 'micro'; - } else if ( width < 400 || height < 400 ) { + } else if (width < 400 || height < 400) { return 'small'; } return 'normal'; } - function toggleBackdrop( on = false ) { - if ( on ) { - stores.forEach( store => store.node.classList.add( 'jetpack-boost-guide__backdrop' ) ); + function toggleBackdrop(on = false) { + if (on) { + stores.forEach(store => store.node.classList.add('jetpack-boost-guide__backdrop')); } else { - stores.forEach( store => store.node.classList.remove( 'jetpack-boost-guide__backdrop' ) ); + stores.forEach(store => store.node.classList.remove('jetpack-boost-guide__backdrop')); } } // Use the first image available in the stores to determine the guide size - const sizeOnPage = stores[ 0 ].sizeOnPage; - $: size = getGuideSize( $sizeOnPage.width, $sizeOnPage.height ); + const sizeOnPage = stores[0].sizeOnPage; + $: size = getGuideSize($sizeOnPage.width, $sizeOnPage.height); - $: toggleBackdrop( show !== false ); + $: toggleBackdrop(show !== false); let position = { top: 0, left: 0, }; - function hover( e: CustomEvent ) { + function hover(e: CustomEvent) { const detail = e.detail; const index = detail.index; position = detail.position; show = index; } + + /** + * Only show image guide if at least one of the images + * has a file size available. + */ + const hasItemsWithFileSize = derived(stores.map(s => s.fileSize), $fileSizes => + $fileSizes.some(fileSize => fileSize.width !== -1 && fileSize.height !== -1) + ); -{#if $guideState === 'active'} - +{#if $guideState === 'active' && $hasItemsWithFileSize} + + +
    component source for details. --> - + {/if}
    {/if} diff --git a/projects/js-packages/image-guide/src/ui/Popup.svelte b/projects/js-packages/image-guide/src/ui/Popup.svelte index ea1dd087b4f8e..cc23659dae727 100644 --- a/projects/js-packages/image-guide/src/ui/Popup.svelte +++ b/projects/js-packages/image-guide/src/ui/Popup.svelte @@ -67,7 +67,9 @@ - + + +
    Date: Mon, 15 Jul 2024 10:35:20 -0400 Subject: [PATCH 127/254] Random Redirect: remove module from Jetpack plugin (#38310) * Remove Random Redirect module * changelog --- projects/plugins/jetpack/.phan/baseline.php | 1 - .../changelog/update-remove-random-redirect | 4 + projects/plugins/jetpack/class.jetpack.php | 6 - .../plugins/jetpack/modules/module-extras.php | 1 - .../modules/theme-tools/random-redirect.php | 103 ------------------ 5 files changed, 4 insertions(+), 111 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/update-remove-random-redirect delete mode 100644 projects/plugins/jetpack/modules/theme-tools/random-redirect.php diff --git a/projects/plugins/jetpack/.phan/baseline.php b/projects/plugins/jetpack/.phan/baseline.php index 33e31880aae3c..41265a27f99b6 100644 --- a/projects/plugins/jetpack/.phan/baseline.php +++ b/projects/plugins/jetpack/.phan/baseline.php @@ -438,7 +438,6 @@ 'modules/theme-tools/content-options/featured-images-fallback.php' => ['PhanTypeMismatchArgument', 'PhanTypePossiblyInvalidDimOffset'], 'modules/theme-tools/content-options/featured-images.php' => ['PhanPluginSimplifyExpressionBool', 'PhanTypeMismatchArgument'], 'modules/theme-tools/content-options/post-details.php' => ['PhanTypeArraySuspiciousNullable'], - 'modules/theme-tools/random-redirect.php' => ['PhanTypeMismatchArgument'], 'modules/theme-tools/responsive-videos.php' => ['PhanRedefineFunction'], 'modules/theme-tools/site-breadcrumbs.php' => ['PhanTypeMismatchArgument', 'PhanTypeMismatchReturn'], 'modules/theme-tools/site-logo/inc/class-site-logo.php' => ['PhanRedundantCondition', 'PhanTypeComparisonToArray', 'PhanTypeMismatchReturn'], diff --git a/projects/plugins/jetpack/changelog/update-remove-random-redirect b/projects/plugins/jetpack/changelog/update-remove-random-redirect new file mode 100644 index 0000000000000..cb2373a067f23 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-remove-random-redirect @@ -0,0 +1,4 @@ +Significance: major +Type: other + +Random Redirect: remove module diff --git a/projects/plugins/jetpack/class.jetpack.php b/projects/plugins/jetpack/class.jetpack.php index 0f93064aaa196..c71bcf2848e6c 100644 --- a/projects/plugins/jetpack/class.jetpack.php +++ b/projects/plugins/jetpack/class.jetpack.php @@ -168,9 +168,6 @@ class Jetpack { 'latex' => array( array( 'wp-latex/wp-latex.php', 'WP LaTeX' ), ), - 'random-redirect' => array( - array( 'random-redirect/random-redirect.php', 'Random Redirect' ), - ), 'sharedaddy' => array( array( 'sharedaddy/sharedaddy.php', 'Sharedaddy' ), array( 'jetpack-sharing/sharedaddy.php', 'Jetpack Sharing' ), @@ -260,9 +257,6 @@ class Jetpack { 'All In One WP Security & Firewall' => 'all-in-one-wp-security-and-firewall/wp-security.php', 'iThemes Security' => 'better-wp-security/better-wp-security.php', ), - 'random-redirect' => array( - 'Random Redirect 2' => 'random-redirect-2/random-redirect.php', - ), 'related-posts' => array( 'YARPP' => 'yet-another-related-posts-plugin/yarpp.php', 'WordPress Related Posts' => 'wordpress-23-related-posts-plugin/wp_related_posts.php', diff --git a/projects/plugins/jetpack/modules/module-extras.php b/projects/plugins/jetpack/modules/module-extras.php index 71031c3c7005a..4699068311064 100644 --- a/projects/plugins/jetpack/modules/module-extras.php +++ b/projects/plugins/jetpack/modules/module-extras.php @@ -24,7 +24,6 @@ // Theme Tools. 'theme-tools.php', 'theme-tools/social-links.php', - 'theme-tools/random-redirect.php', 'theme-tools/featured-content.php', 'theme-tools/infinite-scroll.php', 'theme-tools/responsive-videos.php', diff --git a/projects/plugins/jetpack/modules/theme-tools/random-redirect.php b/projects/plugins/jetpack/modules/theme-tools/random-redirect.php deleted file mode 100644 index 6b23bcddc56b0..0000000000000 --- a/projects/plugins/jetpack/modules/theme-tools/random-redirect.php +++ /dev/null @@ -1,103 +0,0 @@ -contact support' ); - } - - _deprecated_file( __FILE__, 'jetpack-13.6', '', esc_html__( 'Starting Jetpack 13.6, Jetpack will no longer support the Random Redirect module.', 'jetpack' ) ); - - $where = array( - "post_password = ''", - "post_status = 'publish'", - ); - $where_args = array(); - - // Set default post type. - $post_type = get_post_type(); - - // Change the post type if the parameter is set. - if ( isset( $_GET['random_post_type'] ) && post_type_exists( sanitize_key( $_GET['random_post_type'] ) ) ) { - $post_type = sanitize_key( $_GET['random_post_type'] ); - } - - // Don't show a random page if 'page' isn't specified as the post type specifically. - if ( 'page' === $post_type && is_front_page() && ! isset( $_GET['random_post_type'] ) ) { - $post_type = 'post'; - } - - $where[] = 'p.post_type = %s'; - $where_args[] = $post_type; - - // Set author name if we're on an author archive. - if ( is_author() ) { - $where[] = 'post_author = %s'; - $where_args[] = get_the_author_meta( 'ID' ); - } - - // Set default category type - if ( is_category() ) { - $category = get_the_category(); - if ( isset( $category ) && ! empty( $category ) ) { - $random_cat_id = $category[0]->term_id; - } - } - - // Set the category ID if the parameter is set. - if ( isset( $_GET['random_cat_id'] ) ) { - $random_cat_id = (int) $_GET['random_cat_id']; - } - - global $wpdb; - - $where = implode( ' AND ', $where ); - if ( isset( $random_cat_id ) ) { - // phpcs:ignore WordPress.DB.DirectDatabaseQuery, WordPress.DB.PreparedSQL.InterpolatedNotPrepared, WordPress.DB.PreparedSQLPlaceholders.ReplacementsWrongNumber - $random_id = $wpdb->get_var( $wpdb->prepare( "SELECT DISTINCT ID FROM $wpdb->posts AS p INNER JOIN $wpdb->term_relationships AS tr ON (p.ID = tr.object_id AND tr.term_taxonomy_id = %s) INNER JOIN $wpdb->term_taxonomy AS tt ON(tr.term_taxonomy_id = tt.term_taxonomy_id AND taxonomy = 'category') WHERE $where ORDER BY RAND() LIMIT 1", $random_cat_id, ...$where_args ) ); - } else { - // phpcs:ignore WordPress.DB.DirectDatabaseQuery, WordPress.DB.PreparedSQL.InterpolatedNotPrepared, WordPress.DB.PreparedSQLPlaceholders.UnfinishedPrepare - $random_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts AS p WHERE $where ORDER BY RAND() LIMIT 1", ...$where_args ) ); - } - - $permalink = get_permalink( $random_id ); - wp_safe_redirect( $permalink ); - exit; -} - -add_action( 'template_redirect', 'jetpack_matt_random_redirect' ); From 29f2c9705513a71e01f7d5f2baaa42e02acdb71d Mon Sep 17 00:00:00 2001 From: Douglas Henri Date: Mon, 15 Jul 2024 11:36:03 -0300 Subject: [PATCH 128/254] AI Assistant: Add long sentences feature to proofread (#38314) * add long sentences feature * changelog * fix ts test * rename word to text * fix popover on second-level highlight --- .../changelog/add-proofread-long-sentences | 4 ++ .../breve/features/_features.colors.scss | 1 + .../breve/features/ambiguous-words/index.ts | 18 +++---- .../breve/features/complex-words/index.ts | 20 ++++---- .../components/breve/features/events.ts | 21 +++++--- .../components/breve/features/index.ts | 5 ++ .../breve/features/long-sentences/index.ts | 47 +++++++++++++++++ .../components/breve/highlight/highlight.ts | 16 +++--- .../components/breve/highlight/index.tsx | 21 +++++--- .../components/breve/store/actions.ts | 15 +++++- .../components/breve/store/reducer.ts | 51 ++++++++++++++++--- .../components/breve/store/selectors.ts | 15 +++++- .../components/breve/types.ts | 15 ++++-- 13 files changed, 195 insertions(+), 54 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/add-proofread-long-sentences create mode 100644 projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/long-sentences/index.ts diff --git a/projects/plugins/jetpack/changelog/add-proofread-long-sentences b/projects/plugins/jetpack/changelog/add-proofread-long-sentences new file mode 100644 index 0000000000000..fedef0ba4179c --- /dev/null +++ b/projects/plugins/jetpack/changelog/add-proofread-long-sentences @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +AI Assistant: Add long sentences feature to proofread diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/_features.colors.scss b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/_features.colors.scss index a7e43dc64d0ca..972f7b41bd94d 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/_features.colors.scss +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/_features.colors.scss @@ -4,6 +4,7 @@ $features-colors: ( 'complex-words': rgba( 240, 184, 73, 1 ), 'ambiguous-words': rgba( 0, 175, 82, 1 ), + 'long-sentences': rgba( 122, 0, 223, 1 ), ); @mixin properties( $feature, $color, $properties ) { diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/ambiguous-words/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/ambiguous-words/index.ts index bf0cc8d763e48..0f06af9469cae 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/ambiguous-words/index.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/ambiguous-words/index.ts @@ -6,7 +6,7 @@ import weaselWords from './words'; /** * Types */ -import type { BreveFeatureConfig, HighlightedWord } from '../../types'; +import type { BreveFeatureConfig, HighlightedText } from '../../types'; export const AMBIGUOUS_WORDS: BreveFeatureConfig = { name: 'ambiguous-words', @@ -17,18 +17,18 @@ export const AMBIGUOUS_WORDS: BreveFeatureConfig = { const list = new RegExp( `\\b(${ weaselWords.map( escapeRegExp ).join( '|' ) })\\b`, 'gi' ); -export default function ambiguousWords( text: string ): Array< HighlightedWord > { - const matches = text.matchAll( list ); - const highlightedWords: Array< HighlightedWord > = []; +export default function ambiguousWords( blockText: string ): Array< HighlightedText > { + const matches = blockText.matchAll( list ); + const highlightedTexts: Array< HighlightedText > = []; for ( const match of matches ) { - const word = match[ 0 ].trim(); - highlightedWords.push( { - word, + const text = match[ 0 ].trim(); + highlightedTexts.push( { + text, startIndex: match.index, - endIndex: match.index + word.length, + endIndex: match.index + text.length, } ); } - return highlightedWords; + return highlightedTexts; } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts index 85acfba4f0aec..83b509c14bcee 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts @@ -6,7 +6,7 @@ import phrases from './phrases'; /** * Types */ -import type { BreveFeatureConfig, HighlightedWord } from '../../types'; +import type { BreveFeatureConfig, HighlightedText } from '../../types'; export const COMPLEX_WORDS: BreveFeatureConfig = { name: 'complex-words', @@ -20,19 +20,19 @@ const list = new RegExp( 'gi' ); -export default function complexWords( text: string ): Array< HighlightedWord > { - const matches = text.matchAll( list ); - const highlightedWords: Array< HighlightedWord > = []; +export default function complexWords( blockText: string ): Array< HighlightedText > { + const matches = blockText.matchAll( list ); + const highlightedTexts: Array< HighlightedText > = []; for ( const match of matches ) { - const word = match[ 0 ].trim(); - highlightedWords.push( { - word, - suggestion: phrases[ word ], + const text = match[ 0 ].trim(); + highlightedTexts.push( { + text, + suggestion: phrases[ text ], startIndex: match.index, - endIndex: match.index + word.length, + endIndex: match.index + text.length, } ); } - return highlightedWords; + return highlightedTexts; } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts index 4cd12de962c65..d4838209f0e8e 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts @@ -1,7 +1,7 @@ /** * External dependencies */ -import { dispatch } from '@wordpress/data'; +import { dispatch, select } from '@wordpress/data'; /** * Internal dependencies */ @@ -10,22 +10,31 @@ import features from './index'; /** * Types */ -import type { BreveDispatch } from '../types'; +import type { BreveDispatch, BreveSelect } from '../types'; -let timeout: number; +let highlightTimeout: number; function handleMouseEnter( e: React.MouseEvent ) { e.stopPropagation(); - clearTimeout( timeout ); + clearTimeout( highlightTimeout ); + ( dispatch( 'jetpack/ai-breve' ) as BreveDispatch ).increasePopoverLevel(); ( dispatch( 'jetpack/ai-breve' ) as BreveDispatch ).setHighlightHover( true ); ( dispatch( 'jetpack/ai-breve' ) as BreveDispatch ).setPopoverAnchor( e.target ); } function handleMouseLeave( e: React.MouseEvent ) { e.stopPropagation(); - timeout = setTimeout( () => { + ( dispatch( 'jetpack/ai-breve' ) as BreveDispatch ).decreasePopoverLevel(); + + highlightTimeout = setTimeout( () => { + // If the mouse is still over any highlight, don't hide the popover + const { getPopoverLevel } = select( 'jetpack/ai-breve' ) as BreveSelect; + if ( getPopoverLevel() > 0 ) { + return; + } + ( dispatch( 'jetpack/ai-breve' ) as BreveDispatch ).setHighlightHover( false ); - }, 100 ); + }, 50 ); } export default function registerEvents( clientId: string ) { diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts index 5c14e7aa36a27..a5a700d0c2f9b 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts @@ -3,6 +3,7 @@ */ import ambiguousWords, { AMBIGUOUS_WORDS } from './ambiguous-words'; import complexWords, { COMPLEX_WORDS } from './complex-words'; +import longSentences, { LONG_SENTENCES } from './long-sentences'; /** * Types */ @@ -14,6 +15,10 @@ const features: Array< BreveFeature > = [ config: COMPLEX_WORDS, highlight: complexWords, }, + { + config: LONG_SENTENCES, + highlight: longSentences, + }, { config: AMBIGUOUS_WORDS, highlight: ambiguousWords, diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/long-sentences/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/long-sentences/index.ts new file mode 100644 index 0000000000000..337a0eb29da81 --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/long-sentences/index.ts @@ -0,0 +1,47 @@ +/** + * Internal dependencies + */ +import { escapeRegExp } from '../../utils/escapeRegExp'; +/** + * Types + */ +import type { BreveFeatureConfig, HighlightedText } from '../../types'; + +export const LONG_SENTENCES: BreveFeatureConfig = { + name: 'long-sentences', + title: 'Long sentences', + tagName: 'span', + className: 'has-proofread-highlight--long-sentences', +}; + +const sentenceRegex = /[^\s][^.!?]+[.!?]+/g; + +export default function longSentences( text: string ): Array< HighlightedText > { + const highlightedTexts: Array< HighlightedText > = []; + + const sentenceMatches = text.match( sentenceRegex ); + + if ( ! sentenceMatches ) { + return highlightedTexts; + } + + const sentences = [ + // Unique sentences with more than 20 words + ...new Set( sentenceMatches.filter( sentence => sentence.split( /\s+/ ).length > 20 ) ), + ]; + + sentences.forEach( sentence => { + const regex = new RegExp( escapeRegExp( sentence ), 'gi' ); + const matches = text.matchAll( regex ); + + for ( const match of matches ) { + highlightedTexts.push( { + text: sentence, + startIndex: match.index, + endIndex: match.index + sentence.length, + } ); + } + } ); + + return highlightedTexts; +} diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts index aa76c615fb0a4..eff3dba14211a 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts @@ -7,17 +7,19 @@ import { applyFormat } from '@wordpress/rich-text'; */ import type { RichTextFormat, RichTextValue } from '@wordpress/rich-text/build-types/types'; +export type HighlightProps = { + content: RichTextValue; + type: string; + indexes: Array< { startIndex: number; endIndex: number } >; + attributes?: { [ key: string ]: string }; +}; + const applyHighlightFormat = ( { content, type, indexes, attributes = {}, -}: { - content: RichTextValue; - type: string; - indexes: Array< { startIndex: number; endIndex: number } >; - attributes: { [ key: string ]: string }; -} ): RichTextValue => { +}: HighlightProps ): RichTextValue => { let newContent = content; if ( indexes.length > 0 ) { @@ -40,6 +42,6 @@ const applyHighlightFormat = ( { return newContent; }; -export default function highlight( { content, type, indexes, attributes } ) { +export default function highlight( { content, type, indexes, attributes }: HighlightProps ) { return applyHighlightFormat( { indexes, content, type, attributes } ); } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx index e1d7acc64118a..738e648361bcb 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx @@ -17,12 +17,13 @@ import './style.scss'; /** * Types */ -import type { BreveSelect } from '../types'; +import type { BreveDispatch, BreveSelect } from '../types'; +import type { WPFormat } from '@wordpress/rich-text/build-types/register-format-type'; import type { RichTextFormatList } from '@wordpress/rich-text/build-types/types'; // Setup the Breve highlights export default function Highlight() { - const { setPopoverHover } = useDispatch( 'jetpack/ai-breve' ); + const { setPopoverHover } = useDispatch( 'jetpack/ai-breve' ) as BreveDispatch; const popoverOpen = useSelect( select => { const store = select( 'jetpack/ai-breve' ) as BreveSelect; @@ -45,11 +46,13 @@ export default function Highlight() { title: '', }; - const handleMouseEnter = () => { + const handleMouseEnter = ( e: React.MouseEvent ) => { + e.stopPropagation(); setPopoverHover( true ); }; - const handleMouseLeave = () => { + const handleMouseLeave = ( e: React.MouseEvent ) => { + e.stopPropagation(); setPopoverHover( false ); }; @@ -86,8 +89,12 @@ export function registerBreveHighlights() { features.forEach( feature => { const { highlight: featureHighlight, config } = feature; const { name, ...configSettings } = config; + const formatName = `jetpack/ai-proofread-${ name }`; const settings = { + name: formatName, + interactive: false, + edit: () => {}, ...configSettings, __experimentalGetPropsForEditableTreePreparation() { @@ -106,7 +113,7 @@ export function registerBreveHighlights() { ) { return ( formats: Array< RichTextFormatList >, text: string ) => { const record = { formats, text } as RichTextValue; - const type = `jetpack/ai-proofread-${ config.name }`; + const type = formatName; if ( text && isProofreadEnabled && isFeatureEnabled ) { const applied = highlight( { @@ -126,8 +133,8 @@ export function registerBreveHighlights() { return removeFormat( record, type, 0, record.text.length ).formats; }; }, - } as never; + } as WPFormat; - registerFormatType( `jetpack/ai-proofread-${ name }`, settings ); + registerFormatType( formatName, settings ); } ); } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts index c03a1cf98a8d0..a7ff1a1b49963 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts @@ -19,10 +19,23 @@ export function setPopoverHover( isHover: boolean ) { }; } -export function setPopoverAnchor( anchor: HTMLElement | EventTarget ) { +export function setPopoverAnchor( anchor: HTMLElement | EventTarget, level: number ) { return { type: 'SET_POPOVER_ANCHOR', anchor, + level, + }; +} + +export function increasePopoverLevel() { + return { + type: 'INCREASE_POPOVER_LEVEL', + }; +} + +export function decreasePopoverLevel() { + return { + type: 'DECREASE_POPOVER_LEVEL', }; } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts index 3f94a9ecebd37..fb721a7e99cbb 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts @@ -2,20 +2,23 @@ * WordPress dependencies */ import { combineReducers } from '@wordpress/data'; +/** + * Types + */ +import type { BreveState } from '../types'; const enabledFromLocalStorage = window.localStorage.getItem( 'jetpack-ai-proofread-enabled' ); const disabledFeaturesFromLocalStorage = window.localStorage.getItem( 'jetpack-ai-proofread-disabled-features' ); const initialConfiguration = { - // TODO: Confirm that we will start it as true enabled: enabledFromLocalStorage === 'true' || enabledFromLocalStorage === null, disabled: disabledFeaturesFromLocalStorage !== null ? JSON.parse( disabledFeaturesFromLocalStorage ) : [], }; export function configuration( - state = initialConfiguration, + state: BreveState[ 'configuration' ] = initialConfiguration, action: { type: string; enabled?: boolean; feature?: string } ) { switch ( action.type ) { @@ -28,8 +31,9 @@ export function configuration( enabled, }; } + case 'ENABLE_FEATURE': { - const disabled = state.disabled.filter( feature => feature !== action.feature ); + const disabled = ( state.disabled ?? [] ).filter( feature => feature !== action.feature ); window.localStorage.setItem( 'jetpack-ai-proofread-disabled-features', JSON.stringify( disabled ) @@ -40,8 +44,9 @@ export function configuration( disabled, }; } + case 'DISABLE_FEATURE': { - const disabled = [ ...state.disabled, action.feature ]; + const disabled = [ ...( state.disabled ?? [] ), action.feature ]; window.localStorage.setItem( 'jetpack-ai-proofread-disabled-features', JSON.stringify( disabled ) @@ -58,8 +63,8 @@ export function configuration( } export function popover( - state = {}, - action: { type: string; isHover?: boolean; anchor?: HTMLElement } + state: BreveState[ 'popover' ] = {}, + action: { type: string; isHover?: boolean; anchor?: HTMLElement | EventTarget } ) { switch ( action.type ) { case 'SET_HIGHLIGHT_HOVER': @@ -72,13 +77,43 @@ export function popover( return { ...state, isPopoverHover: action.isHover, + frozenAnchor: action.isHover ? ( state.anchors ?? [] )[ ( state.level ?? 1 ) - 1 ] : null, + }; + + case 'SET_POPOVER_ANCHOR': { + if ( ! action.anchor ) { + return state; + } + + const anchors = [ ...( state.anchors ?? [] ) ]; + + anchors[ Math.max( ( state.level ?? 1 ) - 1, 0 ) ] = action.anchor; + + return { + ...state, + anchors, + }; + } + + case 'INCREASE_POPOVER_LEVEL': { + const level = ( state.level ?? 0 ) + 1; + + return { + ...state, + level, }; + } + + case 'DECREASE_POPOVER_LEVEL': { + const level = Math.max( ( state.level ?? 1 ) - 1, 0 ); + const anchors = ( state.anchors ?? [] ).slice( 0, level ); - case 'SET_POPOVER_ANCHOR': return { ...state, - anchor: action.anchor, + level, + anchors, }; + } } return state; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts index bcdaa0f64829f..febb919a047c6 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts @@ -13,8 +13,19 @@ export function isPopoverHover( state: BreveState ) { return state.popover?.isPopoverHover; } -export function getPopoverAnchor( state: BreveState ) { - return state.popover?.anchor; +export function getPopoverAnchor( state: BreveState ): HTMLElement | EventTarget | null { + if ( state.popover?.frozenAnchor ) { + return state.popover.frozenAnchor; + } + + // Returns the last non-nullish anchor in the array + return ( + ( state.popover?.anchors ?? [] ) as Array< HTMLElement | EventTarget | null > + ).reduceRight( ( acc, anchor ) => acc ?? anchor, null ); +} + +export function getPopoverLevel( state: BreveState ) { + return state.popover?.level; } // CONFIGURATION diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/types.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/types.ts index 0694823fa94ef..33171a1426311 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/types.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/types.ts @@ -4,7 +4,9 @@ export type BreveState = { popover?: { isHighlightHover?: boolean; isPopoverHover?: boolean; - anchor?: HTMLElement | EventTarget; + anchors?: Array< HTMLElement | EventTarget >; + level?: number; + frozenAnchor?: HTMLElement | EventTarget; }; configuration?: { enabled?: boolean; @@ -16,6 +18,7 @@ export type BreveSelect = { isHighlightHover: () => boolean; isPopoverHover: () => boolean; getPopoverAnchor: () => HTMLElement | EventTarget; + getPopoverLevel: () => number; isProofreadEnabled: () => boolean; isFeatureEnabled: ( feature: string ) => boolean; getDisabledFeatures: () => Array< string >; @@ -25,6 +28,10 @@ export type BreveDispatch = { setHighlightHover: ( isHover: boolean ) => void; setPopoverHover: ( isHover: boolean ) => void; setPopoverAnchor: ( anchor: HTMLElement | EventTarget ) => void; + increasePopoverLevel: () => void; + decreasePopoverLevel: () => void; + toggleProofread: ( force?: boolean ) => void; + toggleFeature: ( feature: string, force?: boolean ) => void; }; export type BreveFeatureConfig = { @@ -36,11 +43,11 @@ export type BreveFeatureConfig = { export type BreveFeature = { config: BreveFeatureConfig; - highlight: ( text: string ) => Array< HighlightedWord >; + highlight: ( text: string ) => Array< HighlightedText >; }; -export type HighlightedWord = { - word: string; +export type HighlightedText = { + text: string; suggestion?: string; startIndex: number; endIndex: number; From 26c1bf77c0c9ab5331cd655081232454390e2332 Mon Sep 17 00:00:00 2001 From: Kev Date: Mon, 15 Jul 2024 10:36:53 -0400 Subject: [PATCH 129/254] Comic CPT: remove definition from Jetpack plugin (#38309) * Remove Comic Custom Post Type * changelog --- projects/plugins/jetpack/.phan/baseline.php | 1 - .../changelog/update-remove-comic-cpt-include | 4 + .../modules/custom-post-types/comics.php | 745 ------------------ .../plugins/jetpack/modules/module-extras.php | 1 - 4 files changed, 4 insertions(+), 747 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/update-remove-comic-cpt-include delete mode 100644 projects/plugins/jetpack/modules/custom-post-types/comics.php diff --git a/projects/plugins/jetpack/.phan/baseline.php b/projects/plugins/jetpack/.phan/baseline.php index 41265a27f99b6..4b82430a9f822 100644 --- a/projects/plugins/jetpack/.phan/baseline.php +++ b/projects/plugins/jetpack/.phan/baseline.php @@ -337,7 +337,6 @@ 'modules/custom-css/csstidy/class.csstidy-print.php' => ['PhanPluginRedundantAssignmentInLoop', 'PhanTypeMismatchReturn'], 'modules/custom-css/csstidy/class.csstidy.php' => ['PhanCompatibleNegativeStringOffset', 'PhanImpossibleCondition', 'PhanInfiniteRecursion', 'PhanParamTooMany', 'PhanRedundantCondition', 'PhanTypeMismatchArgument'], 'modules/custom-css/custom-css.php' => ['PhanPluginMixedKeyNoKey', 'PhanTypeArraySuspiciousNullable', 'PhanTypeMismatchArgument', 'PhanTypeMismatchArgumentNullable'], - 'modules/custom-post-types/comics.php' => ['PhanParamTooMany', 'PhanRedundantCondition', 'PhanTypeMismatchArgument'], 'modules/custom-post-types/nova.php' => ['PhanTypeExpectedObjectPropAccess', 'PhanTypeMismatchArgument', 'PhanTypeMismatchArgumentNullable', 'PhanTypeMismatchArgumentProbablyReal', 'PhanTypeSuspiciousNonTraversableForeach'], 'modules/custom-post-types/portfolios.php' => ['PhanTypeMismatchArgument', 'PhanTypeMismatchArgumentProbablyReal', 'PhanTypeMismatchReturn', 'PhanTypeMismatchReturnProbablyReal', 'PhanTypeSuspiciousNonTraversableForeach'], 'modules/custom-post-types/testimonial.php' => ['PhanTypeMismatchArgumentProbablyReal'], diff --git a/projects/plugins/jetpack/changelog/update-remove-comic-cpt-include b/projects/plugins/jetpack/changelog/update-remove-comic-cpt-include new file mode 100644 index 0000000000000..5bbf0f9fbf616 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-remove-comic-cpt-include @@ -0,0 +1,4 @@ +Significance: major +Type: other + +Custom Post Types: remove Comic post type diff --git a/projects/plugins/jetpack/modules/custom-post-types/comics.php b/projects/plugins/jetpack/modules/custom-post-types/comics.php deleted file mode 100644 index 18d25cfd308fc..0000000000000 --- a/projects/plugins/jetpack/modules/custom-post-types/comics.php +++ /dev/null @@ -1,745 +0,0 @@ -site_supports_comics() ) ) { - return; - } - - $this->register_post_types(); - - add_action( 'pre_get_posts', array( $this, 'add_posts_to_loop' ) ); - - // In order for the Feedbag job to find Comic posts, we need to circumvent any pretty - // URLs in the RSS feed given to Feedbag in favor of /?p=123&post_type=jetpack-comic - add_filter( 'the_permalink_rss', array( $this, 'custom_permalink_for_feedbag' ) ); - - // There are some cases (like when Feedbag is fetching posts) that the comics - // post type needs to be registered no matter what, but none of the UI needs to be - // available. - - add_filter( 'post_updated_messages', array( $this, 'updated_messages' ) ); - - if ( function_exists( 'queue_publish_post' ) ) { - add_action( 'publish_jetpack-comic', 'queue_publish_post', 10, 2 ); - } - - add_action( 'pre_get_posts', array( $this, 'include_in_feeds' ) ); - - add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) ); - - add_filter( 'manage_' . self::POST_TYPE . '_posts_columns', array( $this, 'manage_posts_columns' ) ); - add_action( 'manage_' . self::POST_TYPE . '_posts_custom_column', array( $this, 'manage_posts_custom_column' ), 10, 2 ); - add_image_size( 'jetpack-comic-thumb', 150, 0, false ); - - // Enable front-end uploading for users special enough. - if ( current_user_can( 'upload_files' ) && current_user_can( 'edit_posts' ) ) { - add_action( 'wp_ajax_jetpack_comic_upload', array( $this, 'upload' ) ); - add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) ); - } - - /** - * Add a "Convert to Comic" and "Convert to Post" option to the bulk - * edit dropdowns. - */ - add_action( 'admin_footer-edit.php', array( $this, 'admin_footer' ) ); - add_action( 'load-edit.php', array( $this, 'bulk_edit' ) ); - add_action( 'admin_notices', array( $this, 'bulk_edit_notices' ) ); - } - - /** - * Enqueue JavaScript in the footer. - * - * @return void - */ - public function admin_footer() { - $post_type = get_post_type(); - - ?> - - current_action(); - - check_admin_referer( 'bulk-posts' ); - - if ( 'post2comic' === $action || 'comic2post' === $action ) { - if ( ! current_user_can( 'publish_posts' ) ) { - wp_die( esc_html__( 'You are not allowed to make this change.', 'jetpack' ) ); - } - - $post_ids = array_map( 'intval', $_REQUEST['post'] ); - - $modified_count = 0; - - foreach ( $post_ids as $post_id ) { - $destination_post_type = ( $action === 'post2comic' ) ? self::POST_TYPE : 'post'; - $origin_post_type = ( $destination_post_type === 'post' ) ? self::POST_TYPE : 'post'; - - if ( current_user_can( 'edit_post', $post_id ) ) { - $post = get_post( $post_id ); - - // Only convert posts that are post => comic or comic => post. - // (e.g., Ignore comic => comic, page => post, etc. ) - if ( $post->post_type !== $destination_post_type && $post->post_type === $origin_post_type ) { - $post_type_object = get_post_type_object( $destination_post_type ); - - if ( current_user_can( $post_type_object->cap->publish_posts ) ) { - set_post_type( $post_id, $destination_post_type ); - ++$modified_count; - } - } - } - } - - $sendback = remove_query_arg( array( 'exported', 'untrashed', 'deleted', 'ids' ), wp_get_referer() ); - - if ( ! $sendback ) { - $sendback = add_query_arg( array( 'post_type', get_post_type() ), admin_url( 'edit.php' ) ); - } - - $pagenum = $wp_list_table->get_pagenum(); - $bulk_edit_comics_nonce = wp_create_nonce( 'bulk-edit-comics-nonce' ); - $sendback = add_query_arg( - array( - 'paged' => $pagenum, - 'post_type_changed' => $modified_count, - 'bulk_edit_comics_nonce' => $bulk_edit_comics_nonce, - ), - $sendback - ); - - wp_safe_redirect( $sendback ); - exit(); - } - } - - /** - * Show the post conversion success notice. - * - * @return void - */ - public function bulk_edit_notices() { - global $pagenow; - - if ( - empty( $_GET['bulk_edit_comics_nonce'] ) - || ! wp_verify_nonce( sanitize_key( $_GET['bulk_edit_comics_nonce'] ), 'bulk-edit-comics-nonce' ) - ) { - return; - } - - $number_posts_changed = isset( $_GET['post_type_changed'] ) - ? (int) $_GET['post_type_changed'] - : 0; - - if ( 'edit.php' === $pagenow && $number_posts_changed ) { - ?> - - wp_create_nonce( 'jetpack_comic_upload_nonce' ), - 'writeURL' => admin_url( 'admin-ajax.php?action=jetpack_comic_upload' ), - 'labels' => array( - 'dragging' => __( 'Drop images to upload', 'jetpack' ), - 'uploading' => __( 'Uploading...', 'jetpack' ), - 'processing' => __( 'Processing...', 'jetpack' ), - 'unsupported' => __( "Sorry, your browser isn't supported. Upgrade at browsehappy.com.", 'jetpack' ), - 'invalidUpload' => __( 'Only images can be uploaded here.', 'jetpack' ), - 'error' => __( "Your upload didn't complete; try again later or cross your fingers and try again right now.", 'jetpack' ), - ), - ); - - wp_localize_script( 'jetpack-comics', 'Jetpack_Comics_Options', $options ); - } - } - - /** - * Enqueue stylesheet in the admin. - */ - public function admin_enqueue_scripts() { - wp_enqueue_style( 'jetpack-comics-admin', plugins_url( 'comics/admin.css', __FILE__ ), array(), JETPACK__VERSION ); - } - - /** - * Register the post types if the theme supports them. - */ - public function maybe_register_post_types() { - // Return early if theme does not support Jetpack Comic. - if ( ! ( $this->site_supports_comics() ) ) { - return; - } - - $this->register_post_types(); - } - - /** - * Register our CPT. - */ - public function register_post_types() { - if ( post_type_exists( self::POST_TYPE ) ) { - return; - } - - register_post_type( - self::POST_TYPE, - array( - 'description' => __( 'Comics', 'jetpack' ), - 'labels' => array( - 'name' => esc_html__( 'Comics', 'jetpack' ), - 'singular_name' => esc_html__( 'Comic', 'jetpack' ), - 'menu_name' => esc_html__( 'Comics', 'jetpack' ), - 'all_items' => esc_html__( 'All Comics', 'jetpack' ), - 'add_new' => esc_html__( 'Add New', 'jetpack' ), - 'add_new_item' => esc_html__( 'Add New Comic', 'jetpack' ), - 'edit_item' => esc_html__( 'Edit Comic', 'jetpack' ), - 'new_item' => esc_html__( 'New Comic', 'jetpack' ), - 'view_item' => esc_html__( 'View Comic', 'jetpack' ), - 'search_items' => esc_html__( 'Search Comics', 'jetpack' ), - 'not_found' => esc_html__( 'No Comics found', 'jetpack' ), - 'not_found_in_trash' => esc_html__( 'No Comics found in Trash', 'jetpack' ), - 'filter_items_list' => esc_html__( 'Filter comics list', 'jetpack' ), - 'items_list_navigation' => esc_html__( 'Comics list navigation', 'jetpack' ), - 'items_list' => esc_html__( 'Comics list', 'jetpack' ), - ), - 'supports' => array( - 'title', - 'editor', - 'thumbnail', - 'comments', - 'revisions', - 'publicize', // Jetpack - 'subscriptions', // wpcom - 'shortlinks', // Jetpack - ), - 'rewrite' => array( - 'slug' => 'comic', - 'with_front' => false, - ), - 'taxonomies' => array( - 'category', - 'post_tag', - ), - // Only make the type public for sites that support Comics. - 'public' => true, - 'menu_position' => 5, // below Posts - 'map_meta_cap' => true, - 'has_archive' => true, - 'query_var' => 'comic', - 'show_in_rest' => true, - ) - ); - } - - /** - * Add a Preview colunm to the Comic CPT admin view. - * - * @param array $columns An array of column names. - * @return array Updated `$columns`. - */ - public function manage_posts_columns( $columns ) { - $new_columns = array( - 'preview-jetpack-comic' => __( 'Preview', 'jetpack' ), - ); - return array_merge( array_slice( $columns, 0, 2 ), $new_columns, array_slice( $columns, 2 ) ); - } - - /** - * Display the post's featured image in column. - * - * @param string $column_name The name of the column to display. - * @param int $post_ID The current post ID. - */ - public function manage_posts_custom_column( $column_name, $post_ID ) { - if ( 'preview-jetpack-comic' === $column_name && has_post_thumbnail( $post_ID ) ) { - echo get_the_post_thumbnail( $post_ID, 'jetpack-comic-thumb' ); - } - } - - /** - * The function url_to_postid() doesn't handle pretty permalinks - * for CPTs very well. When we're generating an RSS feed to be consumed - * for Feedbag (the Reader's feed storage mechanism), eschew - * a pretty URL for one that will get the post into the Reader. - * - * @see https://core.trac.wordpress.org/ticket/19744 - * @param string $permalink The existing (possibly pretty) permalink. - * - * @return string The permalink to use. - */ - public function custom_permalink_for_feedbag( $permalink ) { - global $post; - - if ( ! empty( $GLOBALS['is_feedbag_rss_script'] ) && self::POST_TYPE === $post->post_type ) { - $permalink = home_url( - add_query_arg( - array( - 'p' => $post->ID, - 'post_type' => self::POST_TYPE, - ), - '?' - ) - ); - } - - return $permalink; - } - - /** - * Update messages for the Comic admin. - * - * @param array $messages Existing post update messages. - * - * @return array $messages Amended post update messages. - */ - public function updated_messages( $messages ) { - global $post; - - $messages['jetpack-comic'] = array( - 0 => '', // Unused. Messages start at index 1. - 1 => sprintf( - /* Translators: link to comic item's page. */ - __( 'Comic updated. View comic', 'jetpack' ), - esc_url( get_permalink( $post->ID ) ) - ), - 2 => esc_html__( 'Custom field updated.', 'jetpack' ), - 3 => esc_html__( 'Custom field deleted.', 'jetpack' ), - 4 => esc_html__( 'Comic updated.', 'jetpack' ), - /* translators: %s: date and time of the revision */ - 5 => isset( $_GET['revision'] ) // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Copying core message handling. - ? sprintf( - /* Translators: link to comic item's page. */ - esc_html__( 'Comic restored to revision from %s', 'jetpack' ), - wp_post_revision_title( (int) $_GET['revision'], false ) // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Copying core message handling. - ) - : false, - 6 => sprintf( - /* Translators: link to comic item's page. */ - __( 'Comic published. View comic', 'jetpack' ), - esc_url( get_permalink( $post->ID ) ) - ), - 7 => esc_html__( 'Comic saved.', 'jetpack' ), - 8 => sprintf( - /* Translators: link to portfolio item's page. */ - __( 'Comic submitted. Preview comic', 'jetpack' ), - esc_url( add_query_arg( 'preview', 'true', get_permalink( $post->ID ) ) ) - ), - 9 => sprintf( - /* Translators: link to comic item's page. */ - __( 'Comic scheduled for: %1$s. Preview comic', 'jetpack' ), - // translators: Publish box date format, see https://php.net/date - date_i18n( __( 'M j, Y @ G:i', 'jetpack' ), strtotime( $post->post_date ) ), - esc_url( get_permalink( $post->ID ) ) - ), - 10 => sprintf( - /* Translators: link to comic item's page. */ - __( 'Comic draft updated. Preview comic', 'jetpack' ), - esc_url( add_query_arg( 'preview', 'true', get_permalink( $post->ID ) ) ) - ), - ); - - return $messages; - } - - /** - * Should this Custom Post Type be made available? - * - * @return bool - */ - public function site_supports_comics() { - if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { - $php_self = isset( $_SERVER['PHP_SELF'] ) - ? sanitize_text_field( wp_unslash( $_SERVER['PHP_SELF'] ) ) - : ''; - $blog_ids = isset( $_SERVER['argv'] ) - ? array_map( 'intval', (array) wp_unslash( $_SERVER['argv'] ) ) - : array(); - - if ( - ! empty( $php_self ) - && str_ends_with( $php_self, 'blog-rss.php' ) - && count( $blog_ids ) > 1 - ) { - // blog-rss.php isn't run in the context of the target blog when the init action fires, - // so check manually whether the target blog supports comics. - switch_to_blog( $blog_ids[1] ); - // The add_theme_support( 'jetpack-comic' ) won't fire on switch_to_blog, so check for Panel manually. - $supports_comics = ( ( function_exists( 'site_vertical' ) && 'comics' === site_vertical() ) - || current_theme_supports( self::POST_TYPE ) - || get_stylesheet() === 'pub/panel' ); - restore_current_blog(); - - /** This action is documented in modules/custom-post-types/nova.php */ - return (bool) apply_filters( 'jetpack_enable_cpt', $supports_comics, self::POST_TYPE ); - } - } - - $supports_comics = false; - - /** - * If we're on WordPress.com, and it has the menu site vertical. - * - * @todo: Extract this out into a wpcom only file. - */ - if ( function_exists( 'site_vertical' ) && 'comics' === site_vertical() ) { - $supports_comics = true; - } - - /** - * Else, if the current theme requests it. - */ - if ( current_theme_supports( self::POST_TYPE ) ) { - $supports_comics = true; - } - - if ( $supports_comics ) { - $message = sprintf( - // translators: %s is a link to the WordPress.org documentation. - __( 'Jetpack no longer supports the Comics Post Type: %s', 'jetpack' ), - 'https://jetpack.com/support/custom-content-types/#comics' - ); - - _deprecated_hook( 'Jetpack_Comic', 'jetpack-13.6', '', esc_html( $message ) ); - } - - /** - * Filter it in case something else knows better. - */ - /** This action is documented in modules/custom-post-types/nova.php */ - return (bool) apply_filters( 'jetpack_enable_cpt', $supports_comics, self::POST_TYPE ); - } - - /** - * Anywhere that a feed is displaying posts, show comics too. - * - * @param WP_Query $query The current query. - * - * @return void - */ - public function include_in_feeds( $query ) { - if ( ! $query->is_feed() ) { - return; - } - - // Don't modify the query if the post type isn't public. - if ( ! get_post_type_object( 'jetpack-comic' )->public ) { - return; - } - - $query_post_types = $query->get( 'post_type' ); - - if ( empty( $query_post_types ) ) { - $query_post_types = 'post'; - } - - if ( ! is_array( $query_post_types ) ) { - $query_post_types = array( $query_post_types ); - } - - if ( in_array( 'post', $query_post_types, true ) ) { - $query_post_types[] = self::POST_TYPE; - $query->set( 'post_type', $query_post_types ); - } - } - - /** - * API endpoint for front-end image uploading. - * - * @return never - */ - public function upload() { - global $content_width; - - header( 'Content-Type: application/json' ); - - if ( - empty( $_REQUEST['nonce'] ) - || ! wp_verify_nonce( sanitize_key( $_REQUEST['nonce'] ), 'jetpack_comic_upload_nonce' ) - ) { - die( wp_json_encode( array( 'error' => __( 'Invalid or expired nonce.', 'jetpack' ) ) ) ); - } - - $_POST['action'] = 'wp_handle_upload'; - - $image_id_arr = array(); - $image_error_arr = array(); - - $i = 0; - - while ( isset( $_FILES[ 'image_' . $i ] ) ) { - // Create attachment for the image. - $image_id = media_handle_upload( "image_$i", 0 ); - - if ( is_wp_error( $image_id ) ) { - $error = array( $image_id, $image_id->get_error_message() ); - array_push( $image_error_arr, $error ); - } else { - array_push( $image_id_arr, $image_id ); - } - - ++$i; - } - - if ( $image_id_arr === array() ) { - // All image uploads failed. - $rv = array( 'error' => '' ); - - foreach ( $image_error_arr as $error ) { - $rv['error'] .= $error[1] . "\n"; - } - } else { - if ( count( $image_id_arr ) === 1 ) { - $image_id = $image_id_arr[0]; - - // Get the image - $image_src = get_the_guid( $image_id ); - $image_dims = wp_get_attachment_image_src( $image_id, 'full' ); - - // Take off 10px of width to account for padding and border. @todo make this smarter. - if ( $content_width ) { - $image_width = $content_width - 10; - } else { - $image_width = $image_dims[1] - 10; - } - - $image_name = isset( $_FILES['image_0']['name'] ) - ? sanitize_file_name( wp_unslash( $_FILES['image_0']['name'] ) ) - : ''; - $post_content = sprintf( - '%3$s', - esc_url( $image_src ), - esc_attr( $image_width ), - esc_attr( $image_name ), - esc_attr( $image_id ) - ); - } else { - $post_content = '[gallery ids="' . esc_attr( implode( ',', $image_id_arr ) ) . '"]'; - } - - // Create a new post with the image(s) - $post_id = wp_insert_post( - array( - 'post_content' => $post_content, - 'post_type' => 'jetpack-comic', - 'post_status' => 'draft', - ), - true - ); - - if ( is_wp_error( $post_id, 'WP_Error' ) ) { - // Failed to create the post. - $rv = array( 'error' => $post_id->get_error_message() ); - - // Delete the uploaded images. - foreach ( $image_id_arr as $image_id ) { - wp_delete_post( $image_id, true ); - } - } else { - foreach ( $image_id_arr as $image_id ) { - wp_update_post( - array( - 'ID' => $image_id, - 'post_parent' => $post_id, - ) - ); - } - - if ( current_theme_supports( 'post-thumbnails' ) && count( $image_id_arr ) === 1 ) { - set_post_thumbnail( $post_id, $image_id_arr[0] ); - } - - $rv = array( - 'url' => add_query_arg( - array( - 'post' => $post_id, - 'action' => 'edit', - ), - admin_url( 'post.php' ) - ), - ); - } - } - - die( wp_json_encode( $rv ) ); - } - - /** - * Add comic posts to the tag and category pages. - * - * @param WP_Query $query Post query. - * - * @return WP_Query - */ - public function add_posts_to_loop( $query ) { - if ( ! is_admin() && $query->is_main_query() && ( $query->is_category() || $query->is_tag() ) ) { - $post_types = $query->get( 'post_type' ); - - if ( ! $post_types || 'post' === $post_types ) { - $post_types = array( 'post', self::POST_TYPE ); - } elseif ( is_array( $post_types ) ) { - $post_types[] = self::POST_TYPE; - } - - $query->set( 'post_type', $post_types ); - } - - return $query; - } - - /** - * Add to REST API post type allowed list. - * - * @param array $post_types Array of post types to add to the allowed list. - * - * @return array - */ - public function allow_rest_api_type( $post_types ) { - $post_types[] = self::POST_TYPE; - return $post_types; - } -} - -add_action( 'init', array( 'Jetpack_Comic', 'init' ) ); - -/** - * Custom welcome email for WordPress.com sites in the Comic vertical. - * - * @param string $welcome_email Body of the email. - * @param int $blog_id Site ID. - * @param int $user_id User ID. - * @param string $password User password, or "N/A" if the user account is not new. - * @param string $title Site title. - * @param array $meta Signup meta data. By default, contains the requested privacy setting and lang id. - * - * @return string - */ -function comics_welcome_email( $welcome_email, $blog_id, $user_id, $password, $title, $meta ) { - if ( ( isset( $meta['vertical'] ) && 'comics' === $meta['vertical'] ) || has_blog_sticker( 'vertical-comics', $blog_id ) ) { - return __( - "Welcome! Ready to publish your first strip? - -Your webcomic's new site is ready to go. Get started by setting your comic's title and tagline so your readers know what it's all about. - -Looking for more help with setting up your site? Check out the WordPress.com beginner's tutorial and the guide to comics on WordPress.com. Dive right in by publishing your first strip! - -Lots of laughs, -The WordPress.com Team", - 'jetpack' - ); - } - - return $welcome_email; -} -add_filter( 'update_welcome_email_pre_replacement', 'comics_welcome_email', 10, 6 ); diff --git a/projects/plugins/jetpack/modules/module-extras.php b/projects/plugins/jetpack/modules/module-extras.php index 4699068311064..b7bbfa0ad8c06 100644 --- a/projects/plugins/jetpack/modules/module-extras.php +++ b/projects/plugins/jetpack/modules/module-extras.php @@ -14,7 +14,6 @@ */ $tools = array( // Always loaded, but only registered if theme supports it. - 'custom-post-types/comics.php', 'custom-post-types/testimonial.php', 'custom-post-types/nova.php', 'geo-location.php', From 5645b639430c1535972667046c3e6f12dcee7acc Mon Sep 17 00:00:00 2001 From: dkmyta <43220201+dkmyta@users.noreply.github.com> Date: Mon, 15 Jul 2024 08:10:49 -0700 Subject: [PATCH 130/254] Protect: Fix ThreatFixHeader component title (#38312) * Fix ThreatFixHeader title * changelog * Disable fix all button if no threats are selected * Fix handleCheckboxClick functionality and use existing props * Adjust approach to bringing label prop to the FixAllThreatsModal --- .../fix-protect-threat-fix-header-title | 4 ++ .../fix-all-threats-modal/index.jsx | 3 +- .../js/components/threats-list/free-list.jsx | 43 +++++++------------ .../js/components/threats-list/paid-list.jsx | 21 +-------- .../threats-list/use-threats-list.js | 21 ++++++++- 5 files changed, 43 insertions(+), 49 deletions(-) create mode 100644 projects/plugins/protect/changelog/fix-protect-threat-fix-header-title diff --git a/projects/plugins/protect/changelog/fix-protect-threat-fix-header-title b/projects/plugins/protect/changelog/fix-protect-threat-fix-header-title new file mode 100644 index 0000000000000..3dbced026a931 --- /dev/null +++ b/projects/plugins/protect/changelog/fix-protect-threat-fix-header-title @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Fixes ThreatFixHeader component title diff --git a/projects/plugins/protect/src/js/components/fix-all-threats-modal/index.jsx b/projects/plugins/protect/src/js/components/fix-all-threats-modal/index.jsx index 6708ecc387d14..ee595100fa070 100644 --- a/projects/plugins/protect/src/js/components/fix-all-threats-modal/index.jsx +++ b/projects/plugins/protect/src/js/components/fix-all-threats-modal/index.jsx @@ -35,7 +35,7 @@ const FixAllThreatsModal = ( { threatList = [] } ) => { if ( ! checked ) { setThreatIds( threatIds.filter( id => id !== threat.id ) ); } else { - setThreatIds( threatIds.push( threat.id ) ); + setThreatIds( [ ...threatIds, threat.id ] ); } }, [ threatIds ] @@ -69,6 +69,7 @@ const FixAllThreatsModal = ( { threatList = [] } ) => { diff --git a/projects/plugins/protect/src/js/components/threats-list/free-list.jsx b/projects/plugins/protect/src/js/components/threats-list/free-list.jsx index a9ebdf5e5c61b..b463be6b71feb 100644 --- a/projects/plugins/protect/src/js/components/threats-list/free-list.jsx +++ b/projects/plugins/protect/src/js/components/threats-list/free-list.jsx @@ -9,16 +9,14 @@ import styles from './styles.module.scss'; const ThreatAccordionItem = ( { description, - filename, fixedIn, icon, id, + label, name, source, - table, title, type, - version, } ) => { const { adminUrl } = window.jetpackProtectInitialState || {}; const { run } = useProductCheckoutWorkflow( { @@ -36,32 +34,10 @@ const ThreatAccordionItem = ( { ) : null; - /** - * Get Label - * - * @returns {string} Threat label based on the assumed threat type (extension, file, database, etc). - */ - const getLabel = useCallback( () => { - if ( name && version ) { - // Extension threat i.e. "Woocommerce (3.0.0)" - return `${ name } (${ version })`; - } - - if ( filename ) { - // File threat i.e. "index.php" - return filename.split( '/' ).pop(); - } - - if ( table ) { - // Database threat i.e. "wp_posts" - return table; - } - }, [ filename, name, table, version ] ); - return ( { @@ -111,12 +87,25 @@ const FreeList = ( { list } ) => { return ( { list.map( - ( { description, fixedIn, icon, id, name, source, table, title, type, version } ) => ( + ( { + description, + fixedIn, + icon, + id, + label, + name, + source, + table, + title, + type, + version, + } ) => ( { const [ isSmall ] = useBreakpointMatch( [ 'sm', 'lg' ], [ null, '<' ] ); - const getLabel = threat => { - if ( threat.name && threat.version ) { - // Extension threat i.e. "Woocommerce (3.0.0)" - return `${ threat.name } (${ threat.version })`; - } - - if ( threat.filename ) { - // File threat i.e. "index.php" - return threat.filename.split( '/' ).pop(); - } - - if ( threat.table ) { - // Database threat i.e. "wp_posts" - return threat.table; - } - }; - - list = list.map( threat => ( { label: getLabel( threat ), ...threat } ) ); - return ( <> { ! isSmall && ( diff --git a/projects/plugins/protect/src/js/components/threats-list/use-threats-list.js b/projects/plugins/protect/src/js/components/threats-list/use-threats-list.js index fc36870ef89c7..aab0347249175 100644 --- a/projects/plugins/protect/src/js/components/threats-list/use-threats-list.js +++ b/projects/plugins/protect/src/js/components/threats-list/use-threats-list.js @@ -110,8 +110,27 @@ const useThreatsList = () => { }; }, [ core, database, files, plugins, selected, themes ] ); + const getLabel = threat => { + if ( threat.name && threat.version ) { + // Extension threat i.e. "Woocommerce (3.0.0)" + return `${ threat.name } (${ threat.version })`; + } + + if ( threat.filename ) { + // File threat i.e. "index.php" + return threat.filename.split( '/' ).pop(); + } + + if ( threat.table ) { + // Database threat i.e. "wp_posts" + return threat.table; + } + }; + const list = useMemo( () => { - return [ ...unsortedList ].sort( sortThreats ); + return unsortedList + .sort( sortThreats ) + .map( threat => ( { label: getLabel( threat ), ...threat } ) ); }, [ unsortedList ] ); return { From 64490695470fe8fb02b37b31246c3e354d9555ab Mon Sep 17 00:00:00 2001 From: Nate Weller Date: Mon, 15 Jul 2024 11:24:59 -0600 Subject: [PATCH 131/254] Add individual controls for toggling the IP block and allow lists. (#38184) --- .../waf/changelog/add-waf-ip-list-toggles | 4 ++ projects/packages/waf/composer.json | 2 +- .../waf/src/class-brute-force-protection.php | 15 +++++ .../packages/waf/src/class-compatibility.php | 56 +++++++++++++++++++ .../waf/src/class-rest-controller.php | 8 +++ .../waf/src/class-waf-rules-manager.php | 22 +++++++- .../packages/waf/src/class-waf-runner.php | 12 +++- .../integration/test-waf-compatibility.php | 36 ++++++++++++ .../jetpack/changelog/add-waf-ip-list-toggles | 5 ++ projects/plugins/jetpack/composer.lock | 4 +- .../protect/changelog/add-waf-ip-list-toggles | 5 ++ projects/plugins/protect/composer.lock | 4 +- 12 files changed, 164 insertions(+), 9 deletions(-) create mode 100644 projects/packages/waf/changelog/add-waf-ip-list-toggles create mode 100644 projects/plugins/jetpack/changelog/add-waf-ip-list-toggles create mode 100644 projects/plugins/protect/changelog/add-waf-ip-list-toggles diff --git a/projects/packages/waf/changelog/add-waf-ip-list-toggles b/projects/packages/waf/changelog/add-waf-ip-list-toggles new file mode 100644 index 0000000000000..a2863e6e289b5 --- /dev/null +++ b/projects/packages/waf/changelog/add-waf-ip-list-toggles @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Added the ability to toggle IP block and allow lists individually. diff --git a/projects/packages/waf/composer.json b/projects/packages/waf/composer.json index 783d62d4b277e..53b1049cb7c42 100644 --- a/projects/packages/waf/composer.json +++ b/projects/packages/waf/composer.json @@ -61,7 +61,7 @@ "link-template": "https://github.com/Automattic/jetpack-waf/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.16.x-dev" + "dev-trunk": "0.17.x-dev" } }, "config": { diff --git a/projects/packages/waf/src/class-brute-force-protection.php b/projects/packages/waf/src/class-brute-force-protection.php index 08a0b12d8e255..f88c76a4b68e9 100644 --- a/projects/packages/waf/src/class-brute-force-protection.php +++ b/projects/packages/waf/src/class-brute-force-protection.php @@ -14,6 +14,7 @@ use Automattic\Jetpack\Modules; use Automattic\Jetpack\Waf\Waf_Compatibility; use Automattic\Jetpack\Waf\Waf_Constants; +use Automattic\Jetpack\Waf\Waf_Rules_Manager; use Jetpack_IXR_Client; use Jetpack_Options; use WP_Error; @@ -633,6 +634,15 @@ public function get_headers() { return $output; } + /** + * Whether or not the IP allow list is enabled. + * + * @return bool + */ + public static function ip_allow_list_enabled() { + return get_option( Waf_Rules_Manager::IP_ALLOW_LIST_ENABLED_OPTION_NAME, true ); + } + /** * Checks if the IP address is in the allow list. * @@ -658,6 +668,11 @@ public function ip_is_allowed( $ip ) { return true; } + // Allow list must be enabled. + if ( ! $this->ip_allow_list_enabled() ) { + return false; + } + $allow_list = Brute_Force_Protection_Shared_Functions::get_local_allow_list(); if ( is_multisite() ) { diff --git a/projects/packages/waf/src/class-compatibility.php b/projects/packages/waf/src/class-compatibility.php index 1adc7e94ae760..8e70fa2ec8ebd 100644 --- a/projects/packages/waf/src/class-compatibility.php +++ b/projects/packages/waf/src/class-compatibility.php @@ -28,6 +28,8 @@ public static function add_compatibility_hooks() { add_filter( 'default_option_' . Waf_Initializer::NEEDS_UPDATE_OPTION_NAME, __CLASS__ . '::default_option_waf_needs_update', 10, 3 ); add_filter( 'default_option_' . Waf_Rules_Manager::IP_ALLOW_LIST_OPTION_NAME, __CLASS__ . '::default_option_waf_ip_allow_list', 10, 3 ); add_filter( 'option_' . Waf_Rules_Manager::IP_ALLOW_LIST_OPTION_NAME, __CLASS__ . '::filter_option_waf_ip_allow_list', 10, 1 ); + add_filter( 'default_option_' . Waf_Rules_Manager::IP_ALLOW_LIST_ENABLED_OPTION_NAME, __CLASS__ . '::default_option_waf_ip_allow_list_enabled', 10, 3 ); + add_filter( 'default_option_' . Waf_Rules_Manager::IP_BLOCK_LIST_ENABLED_OPTION_NAME, __CLASS__ . '::default_option_waf_ip_block_list_enabled', 10, 3 ); } /** @@ -229,4 +231,58 @@ public static function default_option_waf_ip_allow_list( $default, $option, $pas public static function is_brute_force_running_in_jetpack() { return defined( 'JETPACK__VERSION' ) && version_compare( JETPACK__VERSION, '12', '<' ); } + + /** + * Default the allow list enabled option to the value of the generic IP lists enabled option it replaced. + * + * @since $next-version$ + * + * @param mixed $default The default value to return if the option does not exist in the database. + * @param string $option Option name. + * @param bool $passed_default Was get_option() passed a default value. + * + * @return mixed The default value to return if the option does not exist in the database. + */ + public static function default_option_waf_ip_allow_list_enabled( $default, $option, $passed_default ) { + // If the deprecated IP lists option was set to false, disable the allow list. + // @phan-suppress-next-line PhanDeprecatedClassConstant -- Needed for backwards compatibility. + $deprecated_option = get_option( Waf_Rules_Manager::IP_LISTS_ENABLED_OPTION_NAME, true ); + if ( ! $deprecated_option ) { + return false; + } + + // If the allow list is empty, disable the allow list. + if ( ! get_option( Waf_Rules_Manager::IP_ALLOW_LIST_OPTION_NAME ) ) { + return false; + } + + // Allow get_option() to override this default value + if ( $passed_default ) { + return $default; + } + + // Default to enabling the allow list. + return true; + } + + /** + * Default the block list enabled option to the value of the generic IP lists enabled option it replaced. + * + * @since $next-version$ + * + * @param mixed $default The default value to return if the option does not exist in the database. + * @param string $option Option name. + * @param bool $passed_default Was get_option() passed a default value. + * + * @return mixed The default value to return if the option does not exist in the database. + */ + public static function default_option_waf_ip_block_list_enabled( $default, $option, $passed_default ) { + // Allow get_option() to override this default value + if ( $passed_default ) { + return $default; + } + + // @phan-suppress-next-line PhanDeprecatedClassConstant -- Needed for backwards compatibility. + return get_option( Waf_Rules_Manager::IP_LISTS_ENABLED_OPTION_NAME, false ); + } } diff --git a/projects/packages/waf/src/class-rest-controller.php b/projects/packages/waf/src/class-rest-controller.php index 30759fc2478ce..d0a873c86e7fe 100644 --- a/projects/packages/waf/src/class-rest-controller.php +++ b/projects/packages/waf/src/class-rest-controller.php @@ -107,7 +107,9 @@ public static function update_waf( $request ) { } // IP Lists Enabled + // @phan-suppress-next-line PhanDeprecatedClassConstant -- Needed for backwards compatibility. if ( isset( $request[ Waf_Rules_Manager::IP_LISTS_ENABLED_OPTION_NAME ] ) ) { + // @phan-suppress-next-line PhanDeprecatedClassConstant -- Needed for backwards compatibility. update_option( Waf_Rules_Manager::IP_LISTS_ENABLED_OPTION_NAME, (bool) $request->get_param( Waf_Rules_Manager::IP_LISTS_ENABLED_OPTION_NAME ) ); } @@ -115,11 +117,17 @@ public static function update_waf( $request ) { if ( isset( $request[ Waf_Rules_Manager::IP_BLOCK_LIST_OPTION_NAME ] ) ) { update_option( Waf_Rules_Manager::IP_BLOCK_LIST_OPTION_NAME, $request[ Waf_Rules_Manager::IP_BLOCK_LIST_OPTION_NAME ] ); } + if ( isset( $request[ Waf_Rules_Manager::IP_BLOCK_LIST_ENABLED_OPTION_NAME ] ) ) { + update_option( Waf_Rules_Manager::IP_BLOCK_LIST_ENABLED_OPTION_NAME, $request[ Waf_Rules_Manager::IP_BLOCK_LIST_ENABLED_OPTION_NAME ] ); + } // IP Allow List if ( isset( $request[ Waf_Rules_Manager::IP_ALLOW_LIST_OPTION_NAME ] ) ) { update_option( Waf_Rules_Manager::IP_ALLOW_LIST_OPTION_NAME, $request[ Waf_Rules_Manager::IP_ALLOW_LIST_OPTION_NAME ] ); } + if ( isset( $request[ Waf_Rules_Manager::IP_ALLOW_LIST_ENABLED_OPTION_NAME ] ) ) { + update_option( Waf_Rules_Manager::IP_ALLOW_LIST_ENABLED_OPTION_NAME, $request[ Waf_Rules_Manager::IP_ALLOW_LIST_ENABLED_OPTION_NAME ] ); + } // Share Data if ( isset( $request[ Waf_Runner::SHARE_DATA_OPTION_NAME ] ) ) { diff --git a/projects/packages/waf/src/class-waf-rules-manager.php b/projects/packages/waf/src/class-waf-rules-manager.php index 2c9f890179bf8..236d714325784 100644 --- a/projects/packages/waf/src/class-waf-rules-manager.php +++ b/projects/packages/waf/src/class-waf-rules-manager.php @@ -24,12 +24,20 @@ class Waf_Rules_Manager { // WAF Options const VERSION_OPTION_NAME = 'jetpack_waf_rules_version'; const AUTOMATIC_RULES_ENABLED_OPTION_NAME = 'jetpack_waf_automatic_rules'; - const IP_LISTS_ENABLED_OPTION_NAME = 'jetpack_waf_ip_list'; const IP_ALLOW_LIST_OPTION_NAME = 'jetpack_waf_ip_allow_list'; + const IP_ALLOW_LIST_ENABLED_OPTION_NAME = 'jetpack_waf_ip_allow_list_enabled'; const IP_BLOCK_LIST_OPTION_NAME = 'jetpack_waf_ip_block_list'; + const IP_BLOCK_LIST_ENABLED_OPTION_NAME = 'jetpack_waf_ip_block_list_enabled'; const RULE_LAST_UPDATED_OPTION_NAME = 'jetpack_waf_last_updated_timestamp'; const AUTOMATIC_RULES_LAST_UPDATED_OPTION_NAME = 'jetpack_waf_automatic_rules_last_updated_timestamp'; + /** + * IP Lists Enabled Option Name + * + * @deprecated $next-version$ Use Waf_Rules_Manager::IP_ALLOW_LIST_ENABLED_OPTION_NAME and Waf_Rules_Manager::IP_BLOCK_LIST_ENABLED_OPTION_NAME instead. + */ + const IP_LISTS_ENABLED_OPTION_NAME = 'jetpack_waf_ip_list'; + // Rule Files const RULES_ENTRYPOINT_FILE = '/rules/rules.php'; const AUTOMATIC_RULES_FILE = '/rules/automatic-rules.php'; @@ -45,11 +53,15 @@ public static function add_hooks() { // Re-activate the WAF any time an option is added or updated. add_action( 'add_option_' . self::AUTOMATIC_RULES_ENABLED_OPTION_NAME, array( static::class, 'reactivate_on_rules_option_change' ), 10, 0 ); add_action( 'update_option_' . self::AUTOMATIC_RULES_ENABLED_OPTION_NAME, array( static::class, 'reactivate_on_rules_option_change' ), 10, 0 ); + // @phan-suppress-next-line PhanDeprecatedClassConstant -- Needed for backwards compatibility. add_action( 'add_option_' . self::IP_LISTS_ENABLED_OPTION_NAME, array( static::class, 'reactivate_on_rules_option_change' ), 10, 0 ); + // @phan-suppress-next-line PhanDeprecatedClassConstant -- Needed for backwards compatibility. add_action( 'update_option_' . self::IP_LISTS_ENABLED_OPTION_NAME, array( static::class, 'reactivate_on_rules_option_change' ), 10, 0 ); add_action( 'add_option_' . self::IP_ALLOW_LIST_OPTION_NAME, array( static::class, 'reactivate_on_rules_option_change' ), 10, 0 ); + add_action( 'add_option_' . self::IP_ALLOW_LIST_ENABLED_OPTION_NAME, array( static::class, 'reactivate_on_rules_option_change' ), 10, 0 ); add_action( 'update_option_' . self::IP_ALLOW_LIST_OPTION_NAME, array( static::class, 'reactivate_on_rules_option_change' ), 10, 0 ); add_action( 'add_option_' . self::IP_BLOCK_LIST_OPTION_NAME, array( static::class, 'reactivate_on_rules_option_change' ), 10, 0 ); + add_action( 'add_option_' . self::IP_BLOCK_LIST_ENABLED_OPTION_NAME, array( static::class, 'reactivate_on_rules_option_change' ), 10, 0 ); add_action( 'update_option_' . self::IP_BLOCK_LIST_OPTION_NAME, array( static::class, 'reactivate_on_rules_option_change' ), 10, 0 ); // Register the cron job. add_action( 'jetpack_waf_rules_update_cron', array( static::class, 'update_rules_cron' ) ); @@ -213,9 +225,13 @@ public static function generate_rules() { } } - // Add manual rules - if ( get_option( self::IP_LISTS_ENABLED_OPTION_NAME ) ) { + // Add IP allow list + if ( get_option( self::IP_ALLOW_LIST_ENABLED_OPTION_NAME ) ) { $rules .= self::wrap_require( Waf_Runner::get_waf_file_path( self::IP_ALLOW_RULES_FILE ) ) . "\n"; + } + + // Add IP block list + if ( get_option( self::IP_BLOCK_LIST_ENABLED_OPTION_NAME ) ) { $rules .= self::wrap_require( Waf_Runner::get_waf_file_path( self::IP_BLOCK_RULES_FILE ), "return \$waf->block( 'block', -1, 'ip block list' );" ) . "\n"; } diff --git a/projects/packages/waf/src/class-waf-runner.php b/projects/packages/waf/src/class-waf-runner.php index 5f32cef0ac231..6e13203d6f7d8 100644 --- a/projects/packages/waf/src/class-waf-runner.php +++ b/projects/packages/waf/src/class-waf-runner.php @@ -161,15 +161,25 @@ public static function disable() { public static function get_config() { return array( Waf_Rules_Manager::AUTOMATIC_RULES_ENABLED_OPTION_NAME => get_option( Waf_Rules_Manager::AUTOMATIC_RULES_ENABLED_OPTION_NAME ), - Waf_Rules_Manager::IP_LISTS_ENABLED_OPTION_NAME => get_option( Waf_Rules_Manager::IP_LISTS_ENABLED_OPTION_NAME ), Waf_Rules_Manager::IP_ALLOW_LIST_OPTION_NAME => get_option( Waf_Rules_Manager::IP_ALLOW_LIST_OPTION_NAME ), + Waf_Rules_Manager::IP_ALLOW_LIST_ENABLED_OPTION_NAME => get_option( Waf_Rules_Manager::IP_ALLOW_LIST_ENABLED_OPTION_NAME ), Waf_Rules_Manager::IP_BLOCK_LIST_OPTION_NAME => get_option( Waf_Rules_Manager::IP_BLOCK_LIST_OPTION_NAME ), + Waf_Rules_Manager::IP_BLOCK_LIST_ENABLED_OPTION_NAME => get_option( Waf_Rules_Manager::IP_BLOCK_LIST_ENABLED_OPTION_NAME ), self::SHARE_DATA_OPTION_NAME => get_option( self::SHARE_DATA_OPTION_NAME ), self::SHARE_DEBUG_DATA_OPTION_NAME => get_option( self::SHARE_DEBUG_DATA_OPTION_NAME ), 'bootstrap_path' => self::get_bootstrap_file_path(), 'standalone_mode' => self::get_standalone_mode_status(), 'automatic_rules_available' => (bool) self::automatic_rules_available(), 'brute_force_protection' => (bool) Brute_Force_Protection::is_enabled(), + + /** + * Provide the deprecated IP lists options for backwards compatibility with older versions of the Jetpack and Protect plugins. + * i.e. If one plugin is updated and the other is not, the latest version of this package will be used by both plugins. + * + * @deprecated $next-version$ + */ + // @phan-suppress-next-line PhanDeprecatedClassConstant -- Needed for backwards compatibility. + Waf_Rules_Manager::IP_LISTS_ENABLED_OPTION_NAME => get_option( Waf_Rules_Manager::IP_LISTS_ENABLED_OPTION_NAME ), ); } diff --git a/projects/packages/waf/tests/php/integration/test-waf-compatibility.php b/projects/packages/waf/tests/php/integration/test-waf-compatibility.php index 0a1b7db054ac6..a8670eade18ab 100644 --- a/projects/packages/waf/tests/php/integration/test-waf-compatibility.php +++ b/projects/packages/waf/tests/php/integration/test-waf-compatibility.php @@ -189,4 +189,40 @@ public function testAutomaticRulesOptionInheritsFromModuleStatus() { // Check that the automatic rules option is enabled by default. $this->assertTrue( Waf_Runner::is_enabled() ); } + + /** + * Test the default options for the IP allow and block lists. + */ + public function testIpListsDefaultOptions() { + // Enable the WAF module. + Waf_Runner::enable(); + + // Validate default options on fresh installs. + $this->assertFalse( get_option( Waf_Rules_Manager::IP_ALLOW_LIST_ENABLED_OPTION_NAME ) ); + $this->assertFalse( get_option( Waf_Rules_Manager::IP_BLOCK_LIST_ENABLED_OPTION_NAME ) ); + + // Add content to the allow list. + update_option( Waf_Rules_Manager::IP_ALLOW_LIST_OPTION_NAME, '1.2.3.4' ); + + $this->assertTrue( get_option( Waf_Rules_Manager::IP_ALLOW_LIST_ENABLED_OPTION_NAME ) ); + $this->assertFalse( get_option( Waf_Rules_Manager::IP_BLOCK_LIST_ENABLED_OPTION_NAME ) ); + + // Toggle the old generic option from true to false. + // @phan-suppress-next-line PhanDeprecatedClassConstant -- Needed for backwards compatibility. + update_option( Waf_Rules_Manager::IP_LISTS_ENABLED_OPTION_NAME, true ); + // @phan-suppress-next-line PhanDeprecatedClassConstant -- Needed for backwards compatibility. + update_option( Waf_Rules_Manager::IP_LISTS_ENABLED_OPTION_NAME, false ); + + // Options default to false when the old generic option is set to false. + $this->assertFalse( get_option( Waf_Rules_Manager::IP_ALLOW_LIST_ENABLED_OPTION_NAME ) ); + $this->assertFalse( get_option( Waf_Rules_Manager::IP_BLOCK_LIST_ENABLED_OPTION_NAME ) ); + + // Set the old generic option to true. + // @phan-suppress-next-line PhanDeprecatedClassConstant -- Needed for backwards compatibility. + update_option( Waf_Rules_Manager::IP_LISTS_ENABLED_OPTION_NAME, true ); + + // Options default to true when the old generic option is set to true. + $this->assertTrue( get_option( Waf_Rules_Manager::IP_ALLOW_LIST_ENABLED_OPTION_NAME ) ); + $this->assertTrue( get_option( Waf_Rules_Manager::IP_BLOCK_LIST_ENABLED_OPTION_NAME ) ); + } } diff --git a/projects/plugins/jetpack/changelog/add-waf-ip-list-toggles b/projects/plugins/jetpack/changelog/add-waf-ip-list-toggles new file mode 100644 index 0000000000000..a1c1831fa1ef7 --- /dev/null +++ b/projects/plugins/jetpack/changelog/add-waf-ip-list-toggles @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated composer.lock. + + diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index 09c3e512744f6..629f9648c52a7 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -2832,7 +2832,7 @@ "dist": { "type": "path", "url": "../../packages/waf", - "reference": "7c30728a366806da71f9eb62fb015980ae79ebb2" + "reference": "8877a29b9be7e4ab5b3a13a9afdde2b65870cfe8" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2859,7 +2859,7 @@ "link-template": "https://github.com/Automattic/jetpack-waf/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.16.x-dev" + "dev-trunk": "0.17.x-dev" } }, "autoload": { diff --git a/projects/plugins/protect/changelog/add-waf-ip-list-toggles b/projects/plugins/protect/changelog/add-waf-ip-list-toggles new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/protect/changelog/add-waf-ip-list-toggles @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/protect/composer.lock b/projects/plugins/protect/composer.lock index 807cbab0627fc..fc11efc0a4616 100644 --- a/projects/plugins/protect/composer.lock +++ b/projects/plugins/protect/composer.lock @@ -1727,7 +1727,7 @@ "dist": { "type": "path", "url": "../../packages/waf", - "reference": "7c30728a366806da71f9eb62fb015980ae79ebb2" + "reference": "8877a29b9be7e4ab5b3a13a9afdde2b65870cfe8" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1754,7 +1754,7 @@ "link-template": "https://github.com/Automattic/jetpack-waf/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.16.x-dev" + "dev-trunk": "0.17.x-dev" } }, "autoload": { From a8d719faad0c31e4a074f3be3acd4269c88c1971 Mon Sep 17 00:00:00 2001 From: Igor Zinovyev Date: Mon, 15 Jul 2024 20:54:32 +0300 Subject: [PATCH 132/254] Backport Jetpack 13.7-a.4 weekly changes (#38336) * Changelog and readme.txt edits. * Init new cycle --- projects/js-packages/ai-client/CHANGELOG.md | 5 +++ ...te-jetpack-ai-client-remove-llama-artifact | 4 -- projects/js-packages/ai-client/package.json | 2 +- projects/js-packages/licensing/CHANGELOG.md | 4 ++ .../update-social-v1-recommendation-steps | 4 -- projects/js-packages/licensing/package.json | 2 +- .../publicize-components/CHANGELOG.md | 8 ++++ .../changelog/fix-social-frontent-validation | 4 -- ...te-remove-social-connection-feature-checks | 4 -- .../publicize-components/package.json | 2 +- .../classic-theme-helper/CHANGELOG.md | 5 +++ ...ocial-menu-to-classic-theme-helper-package | 4 -- .../classic-theme-helper/package.json | 2 +- .../classic-theme-helper/src/class-main.php | 2 +- projects/packages/forms/CHANGELOG.md | 5 +++ .../changelog/fix-form-onSplit-deprecation | 5 --- projects/packages/forms/package.json | 2 +- .../forms/src/class-jetpack-forms.php | 2 +- .../packages/jetpack-mu-wpcom/CHANGELOG.md | 33 ++++++++++++++++ ...lassic-theme-helper-package-initialization | 4 -- .../add-google-analytics-to-mu-wpcom | 4 -- .../etk-block-inserter-modifications | 4 -- .../changelog/etk-documentation-links | 4 -- .../etk-wpcom-block-description-links | 4 -- ...constant-changes-for-help-center-languages | 4 -- .../changelog/fix-hide-hc-wc-admin | 4 -- .../changelog/mu-wpcom-a8c-posts-list | 4 -- .../changelog/mu-wpcom-custom-line-height | 4 -- .../mu-wpcom-eventcoutdown-timeline-blocks | 4 -- .../changelog/mu-wpcom-jetpack-global-styles | 4 -- .../changelog/mu-wpcom-mailerlite | 4 -- .../changelog/mu-wpcom-whats-new | 4 -- .../remove-wpcom-events-and-news-widget | 4 -- .../simplify-help-center-translations | 4 -- ...m-wpadmin-items-from-disconnected-users-v2 | 4 -- .../changelog/wpcom-admin-bar-menu | 9 ----- .../changelog/wpcom-admin-bar-profile | 4 -- .../packages/jetpack-mu-wpcom/package.json | 2 +- .../src/class-jetpack-mu-wpcom.php | 2 +- projects/packages/masterbar/CHANGELOG.md | 5 +++ .../fix-hide-mailboxes-link-on-p2-sites | 4 -- projects/packages/masterbar/package.json | 2 +- .../packages/masterbar/src/class-main.php | 2 +- projects/packages/my-jetpack/CHANGELOG.md | 12 ++++++ .../add-mj-protect-card-last-scan-time | 4 -- .../changelog/add-mj-protect-last-scan-time | 4 -- .../add-my-protect-card-scan-threats | 4 -- .../fix-learn-more-url-for-disconnected-stats | 4 -- projects/packages/my-jetpack/package.json | 2 +- .../my-jetpack/src/class-initializer.php | 2 +- projects/packages/protect-models/CHANGELOG.md | 3 ++ .../protect-models/changelog/initial-version | 4 -- projects/packages/protect-models/package.json | 2 +- .../src/class-protect-models.php | 2 +- projects/packages/protect-status/CHANGELOG.md | 6 +++ .../add-jetpack-protect-status-package | 4 -- .../protect-status/changelog/initial-version | 4 -- projects/packages/protect-status/package.json | 2 +- .../protect-status/src/class-status.php | 2 +- projects/packages/publicize/CHANGELOG.md | 8 ++++ .../changelog/add-fediverse-tag-social | 4 -- ...te-remove-social-connection-feature-checks | 4 -- projects/packages/publicize/package.json | 2 +- projects/packages/sync/CHANGELOG.md | 8 ++++ .../changelog/fix-sync-hpos-checksum-support | 4 -- ...pdate-sync-hpos-add-wc-order-status-prefix | 4 -- .../sync/src/class-package-version.php | 2 +- .../src/replicastore/class-table-checksum.php | 4 +- projects/plugins/jetpack/CHANGELOG.md | 38 +++++++++++++++++++ .../add-mj-protect-card-last-scan-time | 5 --- .../add-mj-protect-card-last-scan-time#2 | 5 --- .../add-mj-protect-card-last-scan-time#3 | 5 --- .../changelog/add-proofread-features-toggle | 4 -- .../changelog/add-proofread-highlights-toggle | 4 -- .../changelog/add-proofread-long-sentences | 4 -- .../changelog/add-proofread-popover-content | 4 -- .../changelog/add-proofread-weasel-words | 4 -- .../changelog/add-redirect-admin-pages | 4 -- ...ocial-menu-to-classic-theme-helper-package | 4 -- .../feat-jetpack-event-countdown-block | 4 -- .../changelog/feat-jetpack-timeline-block | 4 -- .../changelog/fix-at-comment-post-redirect | 4 -- .../changelog/fix-defaultProps-usage-react-19 | 4 -- .../fix-email-should-excerpt-default-value | 4 -- ...jetpack-donations-block-missing-array-keys | 4 -- ...tpack-donations-block-missing-array-keys#2 | 4 -- .../changelog/fix-newsletter-popup-tabs | 4 -- .../changelog/fix-sync-hpos-checksum-support | 5 --- .../jetpack/changelog/init-release-cycle | 2 +- .../mu-wpcom-eventcoutdown-timeline-blocks | 4 -- .../changelog/remove-calypoify-module-code | 4 -- .../changelog/remove-calypoify-module-code#2 | 5 --- .../remove-wpcom-block-editor-module | 4 -- .../changelog/tweak-load-wc-analytics-core | 4 -- .../update-ai-proofread-sidebar-layout | 4 -- .../jetpack/changelog/update-breve-highlight | 4 -- .../changelog/update-breve-highlight-hover | 4 -- .../changelog/update-jetpack-ai-breve-content | 4 -- ...ck-ai-featured-image-auto-start-generation | 4 -- ...ate-jetpack-ai-logo-extension-beta-feature | 4 -- .../changelog/update-remove-comic-cpt-include | 4 -- .../changelog/update-remove-random-redirect | 4 -- .../update-social-v1-recommendation-steps | 4 -- .../update-subscribe-modal-behaviour | 4 -- projects/plugins/jetpack/composer.json | 2 +- projects/plugins/jetpack/jetpack.php | 4 +- projects/plugins/jetpack/package.json | 2 +- projects/plugins/jetpack/readme.txt | 15 +++++--- projects/plugins/mu-wpcom-plugin/CHANGELOG.md | 4 ++ .../add-google-analytics-to-mu-wpcom | 5 --- .../changelog/fix-sync-hpos-checksum-support | 5 --- ...m-wpadmin-items-from-disconnected-users-v2 | 4 -- .../plugins/mu-wpcom-plugin/composer.json | 2 +- .../mu-wpcom-plugin/mu-wpcom-plugin.php | 2 +- projects/plugins/mu-wpcom-plugin/package.json | 2 +- projects/plugins/wpcomsh/CHANGELOG.md | 8 ++++ .../changelog/1468-update-hpos-wpcomsh-wpcli | 4 -- .../add-google-analytics-to-mu-wpcom | 4 -- .../changelog/fix-sync-hpos-checksum-support | 5 --- .../simplify-help-center-translations | 4 -- ...m-wpadmin-items-from-disconnected-users-v2 | 4 -- .../changelog/update-wc-calypso-bridge-2.5.3 | 4 -- projects/plugins/wpcomsh/composer.json | 2 +- projects/plugins/wpcomsh/package.json | 2 +- projects/plugins/wpcomsh/wpcomsh.php | 4 +- 125 files changed, 195 insertions(+), 368 deletions(-) delete mode 100644 projects/js-packages/ai-client/changelog/update-jetpack-ai-client-remove-llama-artifact delete mode 100644 projects/js-packages/licensing/changelog/update-social-v1-recommendation-steps delete mode 100644 projects/js-packages/publicize-components/changelog/fix-social-frontent-validation delete mode 100644 projects/js-packages/publicize-components/changelog/update-remove-social-connection-feature-checks delete mode 100644 projects/packages/classic-theme-helper/changelog/add-social-menu-to-classic-theme-helper-package delete mode 100644 projects/packages/forms/changelog/fix-form-onSplit-deprecation delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/add-classic-theme-helper-package-initialization delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/add-google-analytics-to-mu-wpcom delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/etk-block-inserter-modifications delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/etk-documentation-links delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/etk-wpcom-block-description-links delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/fix-constant-changes-for-help-center-languages delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/fix-hide-hc-wc-admin delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-a8c-posts-list delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-custom-line-height delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-eventcoutdown-timeline-blocks delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-jetpack-global-styles delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-mailerlite delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-whats-new delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/remove-wpcom-events-and-news-widget delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/simplify-help-center-translations delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/try-hide-wpcom-wpadmin-items-from-disconnected-users-v2 delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-menu delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-profile delete mode 100644 projects/packages/masterbar/changelog/fix-hide-mailboxes-link-on-p2-sites delete mode 100644 projects/packages/my-jetpack/changelog/add-mj-protect-card-last-scan-time delete mode 100644 projects/packages/my-jetpack/changelog/add-mj-protect-last-scan-time delete mode 100644 projects/packages/my-jetpack/changelog/add-my-protect-card-scan-threats delete mode 100644 projects/packages/my-jetpack/changelog/fix-learn-more-url-for-disconnected-stats delete mode 100644 projects/packages/protect-models/changelog/initial-version delete mode 100644 projects/packages/protect-status/changelog/add-jetpack-protect-status-package delete mode 100644 projects/packages/protect-status/changelog/initial-version delete mode 100644 projects/packages/publicize/changelog/add-fediverse-tag-social delete mode 100644 projects/packages/publicize/changelog/update-remove-social-connection-feature-checks delete mode 100644 projects/packages/sync/changelog/fix-sync-hpos-checksum-support delete mode 100644 projects/packages/sync/changelog/update-sync-hpos-add-wc-order-status-prefix delete mode 100644 projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time delete mode 100644 projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#2 delete mode 100644 projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#3 delete mode 100644 projects/plugins/jetpack/changelog/add-proofread-features-toggle delete mode 100644 projects/plugins/jetpack/changelog/add-proofread-highlights-toggle delete mode 100644 projects/plugins/jetpack/changelog/add-proofread-long-sentences delete mode 100644 projects/plugins/jetpack/changelog/add-proofread-popover-content delete mode 100644 projects/plugins/jetpack/changelog/add-proofread-weasel-words delete mode 100644 projects/plugins/jetpack/changelog/add-redirect-admin-pages delete mode 100644 projects/plugins/jetpack/changelog/add-social-menu-to-classic-theme-helper-package delete mode 100644 projects/plugins/jetpack/changelog/feat-jetpack-event-countdown-block delete mode 100644 projects/plugins/jetpack/changelog/feat-jetpack-timeline-block delete mode 100644 projects/plugins/jetpack/changelog/fix-at-comment-post-redirect delete mode 100644 projects/plugins/jetpack/changelog/fix-defaultProps-usage-react-19 delete mode 100644 projects/plugins/jetpack/changelog/fix-email-should-excerpt-default-value delete mode 100644 projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys delete mode 100644 projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys#2 delete mode 100644 projects/plugins/jetpack/changelog/fix-newsletter-popup-tabs delete mode 100644 projects/plugins/jetpack/changelog/fix-sync-hpos-checksum-support delete mode 100644 projects/plugins/jetpack/changelog/mu-wpcom-eventcoutdown-timeline-blocks delete mode 100644 projects/plugins/jetpack/changelog/remove-calypoify-module-code delete mode 100644 projects/plugins/jetpack/changelog/remove-calypoify-module-code#2 delete mode 100644 projects/plugins/jetpack/changelog/remove-wpcom-block-editor-module delete mode 100644 projects/plugins/jetpack/changelog/tweak-load-wc-analytics-core delete mode 100644 projects/plugins/jetpack/changelog/update-ai-proofread-sidebar-layout delete mode 100644 projects/plugins/jetpack/changelog/update-breve-highlight delete mode 100644 projects/plugins/jetpack/changelog/update-breve-highlight-hover delete mode 100644 projects/plugins/jetpack/changelog/update-jetpack-ai-breve-content delete mode 100644 projects/plugins/jetpack/changelog/update-jetpack-ai-featured-image-auto-start-generation delete mode 100644 projects/plugins/jetpack/changelog/update-jetpack-ai-logo-extension-beta-feature delete mode 100644 projects/plugins/jetpack/changelog/update-remove-comic-cpt-include delete mode 100644 projects/plugins/jetpack/changelog/update-remove-random-redirect delete mode 100644 projects/plugins/jetpack/changelog/update-social-v1-recommendation-steps delete mode 100644 projects/plugins/jetpack/changelog/update-subscribe-modal-behaviour delete mode 100644 projects/plugins/mu-wpcom-plugin/changelog/add-google-analytics-to-mu-wpcom delete mode 100644 projects/plugins/mu-wpcom-plugin/changelog/fix-sync-hpos-checksum-support delete mode 100644 projects/plugins/mu-wpcom-plugin/changelog/try-hide-wpcom-wpadmin-items-from-disconnected-users-v2 delete mode 100644 projects/plugins/wpcomsh/changelog/1468-update-hpos-wpcomsh-wpcli delete mode 100644 projects/plugins/wpcomsh/changelog/add-google-analytics-to-mu-wpcom delete mode 100644 projects/plugins/wpcomsh/changelog/fix-sync-hpos-checksum-support delete mode 100644 projects/plugins/wpcomsh/changelog/simplify-help-center-translations delete mode 100644 projects/plugins/wpcomsh/changelog/try-hide-wpcom-wpadmin-items-from-disconnected-users-v2 delete mode 100644 projects/plugins/wpcomsh/changelog/update-wc-calypso-bridge-2.5.3 diff --git a/projects/js-packages/ai-client/CHANGELOG.md b/projects/js-packages/ai-client/CHANGELOG.md index 4349dfce9a062..0db28ea388666 100644 --- a/projects/js-packages/ai-client/CHANGELOG.md +++ b/projects/js-packages/ai-client/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.14.6] - 2024-07-15 +### Added +- AI Client: Filter suggestions starting with llama artifacts [#38208] + ## [0.14.5] - 2024-07-08 ### Changed - Updated package dependencies. [#38132] @@ -347,6 +351,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated package dependencies. [#31659] - Updated package dependencies. [#31785] +[0.14.6]: https://github.com/Automattic/jetpack-ai-client/compare/v0.14.5...v0.14.6 [0.14.5]: https://github.com/Automattic/jetpack-ai-client/compare/v0.14.4...v0.14.5 [0.14.4]: https://github.com/Automattic/jetpack-ai-client/compare/v0.14.3...v0.14.4 [0.14.3]: https://github.com/Automattic/jetpack-ai-client/compare/v0.14.2...v0.14.3 diff --git a/projects/js-packages/ai-client/changelog/update-jetpack-ai-client-remove-llama-artifact b/projects/js-packages/ai-client/changelog/update-jetpack-ai-client-remove-llama-artifact deleted file mode 100644 index 5ec12c9c01ae4..0000000000000 --- a/projects/js-packages/ai-client/changelog/update-jetpack-ai-client-remove-llama-artifact +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: added - -AI Client: Filter suggestions starting with llama artifacts diff --git a/projects/js-packages/ai-client/package.json b/projects/js-packages/ai-client/package.json index ce676135a1efc..f590d520dd38f 100644 --- a/projects/js-packages/ai-client/package.json +++ b/projects/js-packages/ai-client/package.json @@ -1,7 +1,7 @@ { "private": false, "name": "@automattic/jetpack-ai-client", - "version": "0.14.6-alpha", + "version": "0.14.6", "description": "A JS client for consuming Jetpack AI services", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/ai-client/#readme", "bugs": { diff --git a/projects/js-packages/licensing/CHANGELOG.md b/projects/js-packages/licensing/CHANGELOG.md index 7640848ce8c89..5f8f9cf098b31 100644 --- a/projects/js-packages/licensing/CHANGELOG.md +++ b/projects/js-packages/licensing/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.12.19 - 2024-07-15 +### Changed +- Social Recommendations: Added for V1 plan [#38219] + ## 0.12.18 - 2024-07-03 ### Changed - Updated package dependencies. [#38132] diff --git a/projects/js-packages/licensing/changelog/update-social-v1-recommendation-steps b/projects/js-packages/licensing/changelog/update-social-v1-recommendation-steps deleted file mode 100644 index afb53cfea3c22..0000000000000 --- a/projects/js-packages/licensing/changelog/update-social-v1-recommendation-steps +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Social Recommendations: Added for V1 plan diff --git a/projects/js-packages/licensing/package.json b/projects/js-packages/licensing/package.json index 6ca8e0d2d484e..46e58a970fa6a 100644 --- a/projects/js-packages/licensing/package.json +++ b/projects/js-packages/licensing/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-licensing", - "version": "0.12.19-alpha", + "version": "0.12.19", "description": "Jetpack licensing flow", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/licensing/#readme", "bugs": { diff --git a/projects/js-packages/publicize-components/CHANGELOG.md b/projects/js-packages/publicize-components/CHANGELOG.md index 11b4c9918ece1..15f2a4af74718 100644 --- a/projects/js-packages/publicize-components/CHANGELOG.md +++ b/projects/js-packages/publicize-components/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.56.1] - 2024-07-15 +### Changed +- Social: Removed unnecessary feature checks for social connections [#38216] + +### Fixed +- Fixed an issue with frontend media validation [#38234] + ## [0.56.0] - 2024-07-08 ### Added - Updated the connections cofirmation logic to preselect the reconnecting account by default on confirmation screen [#38193] @@ -776,6 +783,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Updated package dependencies. [#24470] +[0.56.1]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.56.0...v0.56.1 [0.56.0]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.55.1...v0.56.0 [0.55.1]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.55.0...v0.55.1 [0.55.0]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.54.6...v0.55.0 diff --git a/projects/js-packages/publicize-components/changelog/fix-social-frontent-validation b/projects/js-packages/publicize-components/changelog/fix-social-frontent-validation deleted file mode 100644 index 1bf93fbfdec60..0000000000000 --- a/projects/js-packages/publicize-components/changelog/fix-social-frontent-validation +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Fixed an issue with frontend media validation diff --git a/projects/js-packages/publicize-components/changelog/update-remove-social-connection-feature-checks b/projects/js-packages/publicize-components/changelog/update-remove-social-connection-feature-checks deleted file mode 100644 index 52e5c87b3b699..0000000000000 --- a/projects/js-packages/publicize-components/changelog/update-remove-social-connection-feature-checks +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Social: Removed unnecessary feature checks for social connections diff --git a/projects/js-packages/publicize-components/package.json b/projects/js-packages/publicize-components/package.json index 3be11b207cda1..d60c477da9f03 100644 --- a/projects/js-packages/publicize-components/package.json +++ b/projects/js-packages/publicize-components/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize-components", - "version": "0.56.1-alpha", + "version": "0.56.1", "description": "A library of JS components required by the Publicize editor plugin", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/publicize-components/#readme", "bugs": { diff --git a/projects/packages/classic-theme-helper/CHANGELOG.md b/projects/packages/classic-theme-helper/CHANGELOG.md index a973b45cdcced..8f2cc1d4882cf 100644 --- a/projects/packages/classic-theme-helper/CHANGELOG.md +++ b/projects/packages/classic-theme-helper/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.1] - 2024-07-15 +### Added +- Theme Tools: Adding Social Menu to Classic Theme Helper package [#38243] + ## [0.4.0] - 2024-07-08 ### Changed - Classic Theme Helper - Featured Content: Moved check for plugins page to init since setup is used now externally [#38215] @@ -42,6 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Add wordpress folder on gitignore. [#37177] +[0.4.1]: https://github.com/Automattic/jetpack-classic-theme-helper/compare/v0.4.0...v0.4.1 [0.4.0]: https://github.com/Automattic/jetpack-classic-theme-helper/compare/v0.3.1...v0.4.0 [0.3.1]: https://github.com/Automattic/jetpack-classic-theme-helper/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/Automattic/jetpack-classic-theme-helper/compare/v0.2.1...v0.3.0 diff --git a/projects/packages/classic-theme-helper/changelog/add-social-menu-to-classic-theme-helper-package b/projects/packages/classic-theme-helper/changelog/add-social-menu-to-classic-theme-helper-package deleted file mode 100644 index 9c018ceec030b..0000000000000 --- a/projects/packages/classic-theme-helper/changelog/add-social-menu-to-classic-theme-helper-package +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: added - -Theme Tools: Adding Social Menu to Classic Theme Helper package diff --git a/projects/packages/classic-theme-helper/package.json b/projects/packages/classic-theme-helper/package.json index e0d78bd18d0f2..39530ad178378 100644 --- a/projects/packages/classic-theme-helper/package.json +++ b/projects/packages/classic-theme-helper/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-classic-theme-helper", - "version": "0.4.1-alpha", + "version": "0.4.1", "description": "Features used with classic themes", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/classic-theme-helper/#readme", "bugs": { diff --git a/projects/packages/classic-theme-helper/src/class-main.php b/projects/packages/classic-theme-helper/src/class-main.php index c03dea06b286c..0820c0ae861e4 100644 --- a/projects/packages/classic-theme-helper/src/class-main.php +++ b/projects/packages/classic-theme-helper/src/class-main.php @@ -14,7 +14,7 @@ */ class Main { - const PACKAGE_VERSION = '0.4.1-alpha'; + const PACKAGE_VERSION = '0.4.1'; /** * Modules to include. diff --git a/projects/packages/forms/CHANGELOG.md b/projects/packages/forms/CHANGELOG.md index 8f44154a6e466..9b39158f4e99a 100644 --- a/projects/packages/forms/CHANGELOG.md +++ b/projects/packages/forms/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.32.4] - 2024-07-15 +### Changed +- Internal updates. + ## [0.32.3] - 2024-07-08 ### Changed - Updated package dependencies. [#38132] @@ -602,6 +606,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added a new jetpack/forms package [#28409] - Added a public load_contact_form method for initializing the contact form module. [#28416] +[0.32.4]: https://github.com/automattic/jetpack-forms/compare/v0.32.3...v0.32.4 [0.32.3]: https://github.com/automattic/jetpack-forms/compare/v0.32.2...v0.32.3 [0.32.2]: https://github.com/automattic/jetpack-forms/compare/v0.32.1...v0.32.2 [0.32.1]: https://github.com/automattic/jetpack-forms/compare/v0.32.0...v0.32.1 diff --git a/projects/packages/forms/changelog/fix-form-onSplit-deprecation b/projects/packages/forms/changelog/fix-form-onSplit-deprecation deleted file mode 100644 index 75ede852badee..0000000000000 --- a/projects/packages/forms/changelog/fix-form-onSplit-deprecation +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Option field: remove onSplit prop in favor of splitting feature - - diff --git a/projects/packages/forms/package.json b/projects/packages/forms/package.json index f5c91266e5014..60f0aa9f14a7d 100644 --- a/projects/packages/forms/package.json +++ b/projects/packages/forms/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-forms", - "version": "0.32.4-alpha", + "version": "0.32.4", "description": "Jetpack Forms", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/forms/#readme", "bugs": { diff --git a/projects/packages/forms/src/class-jetpack-forms.php b/projects/packages/forms/src/class-jetpack-forms.php index 6c9da8faea21a..3c8ae28b8e232 100644 --- a/projects/packages/forms/src/class-jetpack-forms.php +++ b/projects/packages/forms/src/class-jetpack-forms.php @@ -15,7 +15,7 @@ */ class Jetpack_Forms { - const PACKAGE_VERSION = '0.32.4-alpha'; + const PACKAGE_VERSION = '0.32.4'; /** * Load the contact form module. diff --git a/projects/packages/jetpack-mu-wpcom/CHANGELOG.md b/projects/packages/jetpack-mu-wpcom/CHANGELOG.md index e99b817f860b5..63e9131c39f06 100644 --- a/projects/packages/jetpack-mu-wpcom/CHANGELOG.md +++ b/projects/packages/jetpack-mu-wpcom/CHANGELOG.md @@ -5,6 +5,38 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [5.44.0] - 2024-07-15 +### Added +- Add Profile -> My Account menu to admin bar. [#38294] +- Adds checks to remove wpcom items and links in wp-admin for users who are not connected to wpcom. [#38241] +- Bring jetpack-global-styles from ETK. [#38209] +- Classic Theme Helper: Adding in Responsive Video class initialization from the Jetpack Mu WPcom package. [#38218] +- Load the Google Analytics package. [#37622] +- MU WPCOM: Enable the custom-line-height feature by default. [#38317] +- MU WPCOM: Move countdown and timeline blocks from jetpack to jetpack-mu-wpcom. [#38298] +- MU WPCOM: Port the a8c-posts-list block from ETK. [#38279] +- MU WPCOM: Port Whats New from ETK. [#38229] +- Port block-inserter-modifications from ETK. [#38277] +- Port MailerLite Widget. [#38293] +- Port wpcom-block-description-links from ETK. [#38254] +- Port wpcom-documentation-links feature from ETK. [#38249] + +### Changed +- jetpack-mu-wpcom - Help Center: Consume translations directly from widgets.wp.com. [#38300] +- Updates the WordPress.com admin bar as follows: + + 1. Repurposes the WordPress logo as a link to /sites. + 2. Adds Reader menu. + 3. Hides the updates icon. + 4. Hides the comments icon. [#38233] + +### Removed +- Dashboard widgets: Remove WordPress Events and News feed widget. [#38242] + +### Fixed +- Help Center: Save Last-Modified date in downloaded language files instead of the current date. [#38284] +- Hide help-center for wc-admin home page. [#38253] + ## [5.43.0] - 2024-07-08 ### Added - Added Help Center (migration from ETK) [#38093] @@ -965,6 +997,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Testing initial package release. +[5.44.0]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v5.43.0...v5.44.0 [5.43.0]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v5.42.1...v5.43.0 [5.42.1]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v5.42.0...v5.42.1 [5.42.0]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v5.41.0...v5.42.0 diff --git a/projects/packages/jetpack-mu-wpcom/changelog/add-classic-theme-helper-package-initialization b/projects/packages/jetpack-mu-wpcom/changelog/add-classic-theme-helper-package-initialization deleted file mode 100644 index 8d462fff77e4c..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/add-classic-theme-helper-package-initialization +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: added - -Classic Theme Helper: Adding in Responsive Video class initialization from the Jetpack Mu WPcom package diff --git a/projects/packages/jetpack-mu-wpcom/changelog/add-google-analytics-to-mu-wpcom b/projects/packages/jetpack-mu-wpcom/changelog/add-google-analytics-to-mu-wpcom deleted file mode 100644 index 40c6ae0470f7a..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/add-google-analytics-to-mu-wpcom +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Load the Google Analytics package. diff --git a/projects/packages/jetpack-mu-wpcom/changelog/etk-block-inserter-modifications b/projects/packages/jetpack-mu-wpcom/changelog/etk-block-inserter-modifications deleted file mode 100644 index 491ed5618677f..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/etk-block-inserter-modifications +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Port block-inserter-modifications from ETK diff --git a/projects/packages/jetpack-mu-wpcom/changelog/etk-documentation-links b/projects/packages/jetpack-mu-wpcom/changelog/etk-documentation-links deleted file mode 100644 index 959f12d2b55b3..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/etk-documentation-links +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Port wpcom-documentation-links feature from ETK diff --git a/projects/packages/jetpack-mu-wpcom/changelog/etk-wpcom-block-description-links b/projects/packages/jetpack-mu-wpcom/changelog/etk-wpcom-block-description-links deleted file mode 100644 index eaa6ecacaa45a..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/etk-wpcom-block-description-links +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Port wpcom-block-description-links from ETK diff --git a/projects/packages/jetpack-mu-wpcom/changelog/fix-constant-changes-for-help-center-languages b/projects/packages/jetpack-mu-wpcom/changelog/fix-constant-changes-for-help-center-languages deleted file mode 100644 index 492d12b13dae5..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/fix-constant-changes-for-help-center-languages +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Help Center: Save Last-Modified date in downloaded language files instead of the current date. diff --git a/projects/packages/jetpack-mu-wpcom/changelog/fix-hide-hc-wc-admin b/projects/packages/jetpack-mu-wpcom/changelog/fix-hide-hc-wc-admin deleted file mode 100644 index 2367fa37c97e4..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/fix-hide-hc-wc-admin +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Hide help-center for wc-admin home page diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-a8c-posts-list b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-a8c-posts-list deleted file mode 100644 index 0d5d17c6b268f..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-a8c-posts-list +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -MU WPCOM: Port the a8c-posts-list block from ETK diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-custom-line-height b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-custom-line-height deleted file mode 100644 index cdf56cb51b419..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-custom-line-height +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -MU WPCOM: Enable the custom-line-height feature by default diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-eventcoutdown-timeline-blocks b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-eventcoutdown-timeline-blocks deleted file mode 100644 index 3f263c8449373..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-eventcoutdown-timeline-blocks +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -MU WPCOM: Move countdown and timeline blocks from jetpack to jetpack-mu-wpcom diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-jetpack-global-styles b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-jetpack-global-styles deleted file mode 100644 index 1bc6d6b46bf63..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-jetpack-global-styles +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Bring jetpack-global-styles from ETK diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-mailerlite b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-mailerlite deleted file mode 100644 index 090b42bb2ac74..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-mailerlite +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Port MailerLite Widget diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-whats-new b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-whats-new deleted file mode 100644 index 7544cb96aa98b..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-whats-new +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -MU WPCOM: Port Whats New from ETK diff --git a/projects/packages/jetpack-mu-wpcom/changelog/remove-wpcom-events-and-news-widget b/projects/packages/jetpack-mu-wpcom/changelog/remove-wpcom-events-and-news-widget deleted file mode 100644 index eae394f9a94d1..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/remove-wpcom-events-and-news-widget +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: removed - -Dashboard widgets: Remove WordPress Events and News feed widget diff --git a/projects/packages/jetpack-mu-wpcom/changelog/simplify-help-center-translations b/projects/packages/jetpack-mu-wpcom/changelog/simplify-help-center-translations deleted file mode 100644 index 730faf8c021cf..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/simplify-help-center-translations +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -jetpack-mu-wpcom - Help Center: Consume translations directly from widgets.wp.com diff --git a/projects/packages/jetpack-mu-wpcom/changelog/try-hide-wpcom-wpadmin-items-from-disconnected-users-v2 b/projects/packages/jetpack-mu-wpcom/changelog/try-hide-wpcom-wpadmin-items-from-disconnected-users-v2 deleted file mode 100644 index 139fbc24b1564..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/try-hide-wpcom-wpadmin-items-from-disconnected-users-v2 +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Adds checks to remove wpcom items and links in wp-admin for users who are not connected to wpcom. diff --git a/projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-menu b/projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-menu deleted file mode 100644 index 8238f563b02db..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-menu +++ /dev/null @@ -1,9 +0,0 @@ -Significance: minor -Type: changed - -Updates the WordPress.com admin bar as follows: - -1. Repurposes the WordPress logo as a link to /sites. -2. Adds Reader menu. -3. Hides the updates icon. -4. Hides the comments icon. diff --git a/projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-profile b/projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-profile deleted file mode 100644 index ebcd2adc5f98a..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/wpcom-admin-bar-profile +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Add Profile -> My Account menu to admin bar diff --git a/projects/packages/jetpack-mu-wpcom/package.json b/projects/packages/jetpack-mu-wpcom/package.json index 7792461099c1e..cfa67e4c35494 100644 --- a/projects/packages/jetpack-mu-wpcom/package.json +++ b/projects/packages/jetpack-mu-wpcom/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-mu-wpcom", - "version": "5.44.0-alpha", + "version": "5.44.0", "description": "Enhances your site with features powered by WordPress.com", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/jetpack-mu-wpcom/#readme", "bugs": { diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index b3d0b34f13cbe..5b85f9b919d3d 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -13,7 +13,7 @@ * Jetpack_Mu_Wpcom main class. */ class Jetpack_Mu_Wpcom { - const PACKAGE_VERSION = '5.44.0-alpha'; + const PACKAGE_VERSION = '5.44.0'; const PKG_DIR = __DIR__ . '/../'; const BASE_DIR = __DIR__ . '/'; const BASE_FILE = __FILE__; diff --git a/projects/packages/masterbar/CHANGELOG.md b/projects/packages/masterbar/CHANGELOG.md index 5ff40edff3110..ac97ac7c1453d 100644 --- a/projects/packages/masterbar/CHANGELOG.md +++ b/projects/packages/masterbar/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.1] - 2024-07-15 +### Fixed +- Hide "My Mailboxes" link on P2 sites [#38232] + ## [0.3.0] - 2024-07-08 ### Changed - As we've launched untangling & nav redesign, the wpcom_is_nav_redesign_enabled() function name is not relevant anymore and can be confusing for future developers, so we replace it with the equivalent get_option call. [#38197] @@ -58,6 +62,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated package dependencies. [#37669] - Updated package dependencies. [#37706] +[0.3.1]: https://github.com/Automattic/jetpack-masterbar/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/Automattic/jetpack-masterbar/compare/v0.2.5...v0.3.0 [0.2.5]: https://github.com/Automattic/jetpack-masterbar/compare/v0.2.4...v0.2.5 [0.2.4]: https://github.com/Automattic/jetpack-masterbar/compare/v0.2.3...v0.2.4 diff --git a/projects/packages/masterbar/changelog/fix-hide-mailboxes-link-on-p2-sites b/projects/packages/masterbar/changelog/fix-hide-mailboxes-link-on-p2-sites deleted file mode 100644 index dcf4db5dd5001..0000000000000 --- a/projects/packages/masterbar/changelog/fix-hide-mailboxes-link-on-p2-sites +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Hide "My Mailboxes" link on P2 sites diff --git a/projects/packages/masterbar/package.json b/projects/packages/masterbar/package.json index 6271534394b29..3ad06a70ef3c1 100644 --- a/projects/packages/masterbar/package.json +++ b/projects/packages/masterbar/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-masterbar", - "version": "0.3.1-alpha", + "version": "0.3.1", "description": "The WordPress.com Toolbar feature replaces the default admin bar and offers quick links to the Reader, all your sites, your WordPress.com profile, and notifications.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/masterbar/#readme", "bugs": { diff --git a/projects/packages/masterbar/src/class-main.php b/projects/packages/masterbar/src/class-main.php index a73c27c624486..078111fcb5d93 100644 --- a/projects/packages/masterbar/src/class-main.php +++ b/projects/packages/masterbar/src/class-main.php @@ -14,7 +14,7 @@ */ class Main { - const PACKAGE_VERSION = '0.3.1-alpha'; + const PACKAGE_VERSION = '0.3.1'; /** * Initializer. diff --git a/projects/packages/my-jetpack/CHANGELOG.md b/projects/packages/my-jetpack/CHANGELOG.md index 25ab7ecfaff42..71035955bda5d 100644 --- a/projects/packages/my-jetpack/CHANGELOG.md +++ b/projects/packages/my-jetpack/CHANGELOG.md @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.28.0] - 2024-07-15 +### Added +- Add scan/threat info to the Protect card in My Jetpack. [#38165] + +### Changed +- Protect card: Add the Last scan time (with tooltip) based on product state. [#38091] +- Updated package dependencies. [#38091] + +### Fixed +- Fix Learn More link destination when the site was never connected. [#38225] + ## [4.27.2] - 2024-07-10 ### Fixed - Social: Fixed plan slug [#38222] @@ -1560,6 +1571,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Created package +[4.28.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.27.2...4.28.0 [4.27.2]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.27.1...4.27.2 [4.27.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.27.0...4.27.1 [4.27.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.26.0...4.27.0 diff --git a/projects/packages/my-jetpack/changelog/add-mj-protect-card-last-scan-time b/projects/packages/my-jetpack/changelog/add-mj-protect-card-last-scan-time deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/packages/my-jetpack/changelog/add-mj-protect-card-last-scan-time +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/packages/my-jetpack/changelog/add-mj-protect-last-scan-time b/projects/packages/my-jetpack/changelog/add-mj-protect-last-scan-time deleted file mode 100644 index f745a0f47608f..0000000000000 --- a/projects/packages/my-jetpack/changelog/add-mj-protect-last-scan-time +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: changed - -Protect card: Add the Last scan time (with tooltip) based on product state. diff --git a/projects/packages/my-jetpack/changelog/add-my-protect-card-scan-threats b/projects/packages/my-jetpack/changelog/add-my-protect-card-scan-threats deleted file mode 100644 index d8d47d70e31dc..0000000000000 --- a/projects/packages/my-jetpack/changelog/add-my-protect-card-scan-threats +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: added - -Add scan/threat info to the Protect card in My Jetpack. diff --git a/projects/packages/my-jetpack/changelog/fix-learn-more-url-for-disconnected-stats b/projects/packages/my-jetpack/changelog/fix-learn-more-url-for-disconnected-stats deleted file mode 100644 index 3102ae8ae5013..0000000000000 --- a/projects/packages/my-jetpack/changelog/fix-learn-more-url-for-disconnected-stats +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Fix Learn More link destination when the site was never connected. diff --git a/projects/packages/my-jetpack/package.json b/projects/packages/my-jetpack/package.json index 811929b9e2c44..4cf45821c01d6 100644 --- a/projects/packages/my-jetpack/package.json +++ b/projects/packages/my-jetpack/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-my-jetpack", - "version": "4.28.0-alpha", + "version": "4.28.0", "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/my-jetpack/#readme", "bugs": { diff --git a/projects/packages/my-jetpack/src/class-initializer.php b/projects/packages/my-jetpack/src/class-initializer.php index b5c166f17e39f..1f447d35d9448 100644 --- a/projects/packages/my-jetpack/src/class-initializer.php +++ b/projects/packages/my-jetpack/src/class-initializer.php @@ -39,7 +39,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '4.28.0-alpha'; + const PACKAGE_VERSION = '4.28.0'; /** * HTML container ID for the IDC screen on My Jetpack page. diff --git a/projects/packages/protect-models/CHANGELOG.md b/projects/packages/protect-models/CHANGELOG.md index 721294abd00ad..89772538272dc 100644 --- a/projects/packages/protect-models/CHANGELOG.md +++ b/projects/packages/protect-models/CHANGELOG.md @@ -5,3 +5,6 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.1.0 - 2024-07-15 +### Added +- Initial version. [#37864] diff --git a/projects/packages/protect-models/changelog/initial-version b/projects/packages/protect-models/changelog/initial-version deleted file mode 100644 index fb1837c901e51..0000000000000 --- a/projects/packages/protect-models/changelog/initial-version +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: added - -Initial version. diff --git a/projects/packages/protect-models/package.json b/projects/packages/protect-models/package.json index faf7c7b438a6b..e7a22ea04c65f 100644 --- a/projects/packages/protect-models/package.json +++ b/projects/packages/protect-models/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-protect-models", - "version": "0.1.0-alpha", + "version": "0.1.0", "description": "This package contains the models used in Protect. ", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/protect-models/#readme", "bugs": { diff --git a/projects/packages/protect-models/src/class-protect-models.php b/projects/packages/protect-models/src/class-protect-models.php index 7f74ccc945599..46171901bc5d5 100644 --- a/projects/packages/protect-models/src/class-protect-models.php +++ b/projects/packages/protect-models/src/class-protect-models.php @@ -12,5 +12,5 @@ */ class Protect_Models { - const PACKAGE_VERSION = '0.1.0-alpha'; + const PACKAGE_VERSION = '0.1.0'; } diff --git a/projects/packages/protect-status/CHANGELOG.md b/projects/packages/protect-status/CHANGELOG.md index 721294abd00ad..4661fa0754f1a 100644 --- a/projects/packages/protect-status/CHANGELOG.md +++ b/projects/packages/protect-status/CHANGELOG.md @@ -5,3 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.1.0 - 2024-07-15 +### Added +- Initial version. [#37894] + +### Changed +- Updated package dependencies. [#37894] diff --git a/projects/packages/protect-status/changelog/add-jetpack-protect-status-package b/projects/packages/protect-status/changelog/add-jetpack-protect-status-package deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/packages/protect-status/changelog/add-jetpack-protect-status-package +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/packages/protect-status/changelog/initial-version b/projects/packages/protect-status/changelog/initial-version deleted file mode 100644 index fb1837c901e51..0000000000000 --- a/projects/packages/protect-status/changelog/initial-version +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: added - -Initial version. diff --git a/projects/packages/protect-status/package.json b/projects/packages/protect-status/package.json index 6c60b456fa040..4c456bc875aea 100644 --- a/projects/packages/protect-status/package.json +++ b/projects/packages/protect-status/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-protect-status", - "version": "0.1.0-alpha", + "version": "0.1.0", "description": "This package contains the Protect Status API functionality to retrieve a site's scan status (WordPress, Themes, and Plugins threats).", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/protect-status/#readme", "bugs": { diff --git a/projects/packages/protect-status/src/class-status.php b/projects/packages/protect-status/src/class-status.php index 1b0556d9d6375..7759e8ea5813a 100644 --- a/projects/packages/protect-status/src/class-status.php +++ b/projects/packages/protect-status/src/class-status.php @@ -15,7 +15,7 @@ */ class Status { - const PACKAGE_VERSION = '0.1.0-alpha'; + const PACKAGE_VERSION = '0.1.0'; /** * Name of the option where status is stored * diff --git a/projects/packages/publicize/CHANGELOG.md b/projects/packages/publicize/CHANGELOG.md index 6fbe4af408232..f2c83afe441f4 100644 --- a/projects/packages/publicize/CHANGELOG.md +++ b/projects/packages/publicize/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.47.3] - 2024-07-15 +### Added +- Mastodon: display a Fediverse Creator tag when the post author has connected their account to a Mastodon account. [#38198] + +### Changed +- Social: Removed unnecessary feature checks for social connections [#38216] + ## [0.47.2] - 2024-07-08 ### Fixed - Social | Fixed the permissions for update and disconnection connections endpoints [#38187] @@ -618,6 +625,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated package dependencies. - Update package.json metadata. +[0.47.3]: https://github.com/Automattic/jetpack-publicize/compare/v0.47.2...v0.47.3 [0.47.2]: https://github.com/Automattic/jetpack-publicize/compare/v0.47.1...v0.47.2 [0.47.1]: https://github.com/Automattic/jetpack-publicize/compare/v0.47.0...v0.47.1 [0.47.0]: https://github.com/Automattic/jetpack-publicize/compare/v0.46.3...v0.47.0 diff --git a/projects/packages/publicize/changelog/add-fediverse-tag-social b/projects/packages/publicize/changelog/add-fediverse-tag-social deleted file mode 100644 index d7e2865964e4e..0000000000000 --- a/projects/packages/publicize/changelog/add-fediverse-tag-social +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: added - -Mastodon: display a Fediverse Creator tag when the post author has connected their account to a Mastodon account. diff --git a/projects/packages/publicize/changelog/update-remove-social-connection-feature-checks b/projects/packages/publicize/changelog/update-remove-social-connection-feature-checks deleted file mode 100644 index 52e5c87b3b699..0000000000000 --- a/projects/packages/publicize/changelog/update-remove-social-connection-feature-checks +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Social: Removed unnecessary feature checks for social connections diff --git a/projects/packages/publicize/package.json b/projects/packages/publicize/package.json index 1330f40ed2ff9..c13995466bd85 100644 --- a/projects/packages/publicize/package.json +++ b/projects/packages/publicize/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize", - "version": "0.47.3-alpha", + "version": "0.47.3", "description": "Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/publicize/#readme", "bugs": { diff --git a/projects/packages/sync/CHANGELOG.md b/projects/packages/sync/CHANGELOG.md index 2e160d9f085b8..20123090bff6e 100644 --- a/projects/packages/sync/CHANGELOG.md +++ b/projects/packages/sync/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.3.0] - 2024-07-15 +### Added +- Jetpack Sync: Add support for HPOS checksums [#38320] + +### Changed +- Jetpack Sync: Ensure HPOS order status is prefixed with 'wc-' before sending it to WPCOM [#38258] + ## [3.2.1] - 2024-07-10 ### Fixed - Jetpack Sync HPOS: Ensure get_objects_by_id will return all relevant orders [#38251] @@ -1204,6 +1211,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Packages: Move sync to a classmapped package +[3.3.0]: https://github.com/Automattic/jetpack-sync/compare/v3.2.1...v3.3.0 [3.2.1]: https://github.com/Automattic/jetpack-sync/compare/v3.2.0...v3.2.1 [3.2.0]: https://github.com/Automattic/jetpack-sync/compare/v3.1.4...v3.2.0 [3.1.4]: https://github.com/Automattic/jetpack-sync/compare/v3.1.3...v3.1.4 diff --git a/projects/packages/sync/changelog/fix-sync-hpos-checksum-support b/projects/packages/sync/changelog/fix-sync-hpos-checksum-support deleted file mode 100644 index 41cfce8e07c8f..0000000000000 --- a/projects/packages/sync/changelog/fix-sync-hpos-checksum-support +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Jetpack Sync: Add support for HPOS checksums diff --git a/projects/packages/sync/changelog/update-sync-hpos-add-wc-order-status-prefix b/projects/packages/sync/changelog/update-sync-hpos-add-wc-order-status-prefix deleted file mode 100644 index 887b1c1c11ce1..0000000000000 --- a/projects/packages/sync/changelog/update-sync-hpos-add-wc-order-status-prefix +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Jetpack Sync: Ensure HPOS order status is prefixed with 'wc-' before sending it to WPCOM diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index 59075e260a0a4..04ad9d2fbcd45 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.3.0-alpha'; + const PACKAGE_VERSION = '3.3.0'; const PACKAGE_SLUG = 'sync'; diff --git a/projects/packages/sync/src/replicastore/class-table-checksum.php b/projects/packages/sync/src/replicastore/class-table-checksum.php index 1dee548a539ed..2095b970469cb 100644 --- a/projects/packages/sync/src/replicastore/class-table-checksum.php +++ b/projects/packages/sync/src/replicastore/class-table-checksum.php @@ -886,7 +886,7 @@ protected function enable_woocommerce_tables() { * * @see Automattic\Jetpack\SyncActions::initialize_woocommerce * - * @since $$next-version$$ + * @since 3.3.0 * * @return bool */ @@ -895,7 +895,7 @@ public static function enable_woocommerce_hpos_tables() { * On WordPress.com, we can't directly check if the site has support for WooCommerce HPOS tables. * Having the option to override the functionality here helps with syncing WooCommerce HPOS tables. * - * @since $$next-version$$ + * @since 3.3.0 * * @param bool If we should we force-enable WooCommerce HPOS tables support. */ diff --git a/projects/plugins/jetpack/CHANGELOG.md b/projects/plugins/jetpack/CHANGELOG.md index 10bce876acaaa..d64b4a0093dc2 100644 --- a/projects/plugins/jetpack/CHANGELOG.md +++ b/projects/plugins/jetpack/CHANGELOG.md @@ -2,6 +2,44 @@ ### This is a list detailing changes for all Jetpack releases. +## 13.7-a.3 - 2024-07-15 +### Enhancements +- Blocks: Add the EventCoutdown block. [#38250] +- Blocks: Add the Timeline block. [#38255] +- Newsletter: Improve the modal overlay. [#38266] +- Social: Added recommendation steps for the Social plan. [#38219] +- Subscriptions: Implemented a more dynamic approach to displaying the modal. [#38079] + +### Improved compatibility +- Blocks: Changed the use of default parameters in the Map block for React 19 compatibility. [#38274] + +### Bug fixes +- Donations Block: Fix undefined array key warnings with old/malformed blocks. [#38281] + +### Other changes +- Admin: Redirect Jetpack pages. [#38148] +- AI Assistant: Add ambiguous words to proofread features list. [#38292] +- AI Assistant: Add long sentences feature to proofread. [#38314] +- AI Assistant: Add Popover content for AI Proofread. [#38290] +- AI Assistant: Fix blocks content definition. [#38270] +- AI Assistant: Integrate AI Proofread toggle with code. [#38280] +- AI Breve: Update highlight. [#38189] +- AI Proofread: Toggle specific feature. [#38286] +- AI Proofread: Update hover events. [#38261] +- AI Proofread: Update sidebar layout. [#38289] +- Blocks: Honor the `$symbol` arg when passed an unknown currency. [#38281] +- Calypsoify: Removing functionality from Jetpack. [#38259] +- Custom Post Types: Remove Comic post type. [#38309] +- Jetpack AI: Add beta flag to control logo generator extension. [#38322] +- Jetpack AI Image: Trigger featured image auto generation when there is content on the post. [#38262] +- General: Fix redirect for comments pending approval. [#38301] +- MU WPCOM: Move countdown and timeline blocks from jetpack to jetpack-mu-wpcom. [#38298] +- Newsletter Settings: Fix default value for Full text vs Excerpt. [#38256] +- Random Redirect: Remove module. [#38310] +- Theme tools: Add social menu to Classic Theme Helper package. [#38243] +- WPCOM Block Editor: Removing functionality from Jetpack. [#38299] +- WooCommerce Analytics: Initialize the module only if is not initialized in WooCommerce core. [#38236] + ## 13.7-a.1 - 2024-07-08 ### Enhancements - AI Assistant: The general purpose image generator is now available to all users. [#38203] diff --git a/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time b/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time deleted file mode 100644 index a1c1831fa1ef7..0000000000000 --- a/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: other -Comment: Updated composer.lock. - - diff --git a/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#2 b/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#2 deleted file mode 100644 index a1c1831fa1ef7..0000000000000 --- a/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#2 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: other -Comment: Updated composer.lock. - - diff --git a/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#3 b/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#3 deleted file mode 100644 index a1c1831fa1ef7..0000000000000 --- a/projects/plugins/jetpack/changelog/add-mj-protect-card-last-scan-time#3 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: other -Comment: Updated composer.lock. - - diff --git a/projects/plugins/jetpack/changelog/add-proofread-features-toggle b/projects/plugins/jetpack/changelog/add-proofread-features-toggle deleted file mode 100644 index ede7dd1244b34..0000000000000 --- a/projects/plugins/jetpack/changelog/add-proofread-features-toggle +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: other - -Toggle specific feature on AI Proofread diff --git a/projects/plugins/jetpack/changelog/add-proofread-highlights-toggle b/projects/plugins/jetpack/changelog/add-proofread-highlights-toggle deleted file mode 100644 index 5e572021e3a1b..0000000000000 --- a/projects/plugins/jetpack/changelog/add-proofread-highlights-toggle +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: other - -Integrate AI Proofread toggle with code diff --git a/projects/plugins/jetpack/changelog/add-proofread-long-sentences b/projects/plugins/jetpack/changelog/add-proofread-long-sentences deleted file mode 100644 index fedef0ba4179c..0000000000000 --- a/projects/plugins/jetpack/changelog/add-proofread-long-sentences +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -AI Assistant: Add long sentences feature to proofread diff --git a/projects/plugins/jetpack/changelog/add-proofread-popover-content b/projects/plugins/jetpack/changelog/add-proofread-popover-content deleted file mode 100644 index c236a35d679b4..0000000000000 --- a/projects/plugins/jetpack/changelog/add-proofread-popover-content +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: other - -Add Popover content for AI Proofread diff --git a/projects/plugins/jetpack/changelog/add-proofread-weasel-words b/projects/plugins/jetpack/changelog/add-proofread-weasel-words deleted file mode 100644 index 2e6eb6c61641d..0000000000000 --- a/projects/plugins/jetpack/changelog/add-proofread-weasel-words +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -AI Assistant: Add ambiguous words to proofread features list diff --git a/projects/plugins/jetpack/changelog/add-redirect-admin-pages b/projects/plugins/jetpack/changelog/add-redirect-admin-pages deleted file mode 100644 index 655b95cf88aad..0000000000000 --- a/projects/plugins/jetpack/changelog/add-redirect-admin-pages +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -Admin: redirect jetpack pages diff --git a/projects/plugins/jetpack/changelog/add-social-menu-to-classic-theme-helper-package b/projects/plugins/jetpack/changelog/add-social-menu-to-classic-theme-helper-package deleted file mode 100644 index 83b75a9ebbd51..0000000000000 --- a/projects/plugins/jetpack/changelog/add-social-menu-to-classic-theme-helper-package +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -Theme tools: Add social menu to Classic Theme Helper package diff --git a/projects/plugins/jetpack/changelog/feat-jetpack-event-countdown-block b/projects/plugins/jetpack/changelog/feat-jetpack-event-countdown-block deleted file mode 100644 index a4765f5d44c95..0000000000000 --- a/projects/plugins/jetpack/changelog/feat-jetpack-event-countdown-block +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: enhancement - -Jetpack Blocks: Migrate the EventCoutdown block from ETK diff --git a/projects/plugins/jetpack/changelog/feat-jetpack-timeline-block b/projects/plugins/jetpack/changelog/feat-jetpack-timeline-block deleted file mode 100644 index 97ed845261d03..0000000000000 --- a/projects/plugins/jetpack/changelog/feat-jetpack-timeline-block +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: enhancement - -Jetpack Blocks: Migrate the Timeline block from ETK diff --git a/projects/plugins/jetpack/changelog/fix-at-comment-post-redirect b/projects/plugins/jetpack/changelog/fix-at-comment-post-redirect deleted file mode 100644 index 7f4f39be53d3b..0000000000000 --- a/projects/plugins/jetpack/changelog/fix-at-comment-post-redirect +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -Fix redirect for comments pending approval diff --git a/projects/plugins/jetpack/changelog/fix-defaultProps-usage-react-19 b/projects/plugins/jetpack/changelog/fix-defaultProps-usage-react-19 deleted file mode 100644 index 9dcb54b67f591..0000000000000 --- a/projects/plugins/jetpack/changelog/fix-defaultProps-usage-react-19 +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: compat - -Map block: Changed defaultProp usage to make use of default parameters, for React 19 compatibility. diff --git a/projects/plugins/jetpack/changelog/fix-email-should-excerpt-default-value b/projects/plugins/jetpack/changelog/fix-email-should-excerpt-default-value deleted file mode 100644 index 63697f885ee9d..0000000000000 --- a/projects/plugins/jetpack/changelog/fix-email-should-excerpt-default-value +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -Newsletter Settings: Fix default value for Full text vs Excerpt diff --git a/projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys b/projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys deleted file mode 100644 index 2c3a8137e905b..0000000000000 --- a/projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: bugfix - -Donations Block: Fix undefined array key warnings with old/malformed blocks. diff --git a/projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys#2 b/projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys#2 deleted file mode 100644 index 3e78be02cc6ce..0000000000000 --- a/projects/plugins/jetpack/changelog/fix-jetpack-donations-block-missing-array-keys#2 +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -Jetpack_Currencies: Honor the `$symbol` arg when passed an unknown currency. diff --git a/projects/plugins/jetpack/changelog/fix-newsletter-popup-tabs b/projects/plugins/jetpack/changelog/fix-newsletter-popup-tabs deleted file mode 100644 index 6e47a104531e9..0000000000000 --- a/projects/plugins/jetpack/changelog/fix-newsletter-popup-tabs +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: enhancement - -Newsletter: Improvements the modal overlay diff --git a/projects/plugins/jetpack/changelog/fix-sync-hpos-checksum-support b/projects/plugins/jetpack/changelog/fix-sync-hpos-checksum-support deleted file mode 100644 index a1c1831fa1ef7..0000000000000 --- a/projects/plugins/jetpack/changelog/fix-sync-hpos-checksum-support +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: other -Comment: Updated composer.lock. - - diff --git a/projects/plugins/jetpack/changelog/init-release-cycle b/projects/plugins/jetpack/changelog/init-release-cycle index 68db8761e4c78..1da40119faef2 100644 --- a/projects/plugins/jetpack/changelog/init-release-cycle +++ b/projects/plugins/jetpack/changelog/init-release-cycle @@ -1,5 +1,5 @@ Significance: patch Type: other -Comment: Init 13.7-a.2 +Comment: Init 13.7-a.4 diff --git a/projects/plugins/jetpack/changelog/mu-wpcom-eventcoutdown-timeline-blocks b/projects/plugins/jetpack/changelog/mu-wpcom-eventcoutdown-timeline-blocks deleted file mode 100644 index bd49499fd0098..0000000000000 --- a/projects/plugins/jetpack/changelog/mu-wpcom-eventcoutdown-timeline-blocks +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: enhancement - -MU WPCOM: Move countdown and timeline blocks from jetpack to jetpack-mu-wpcom diff --git a/projects/plugins/jetpack/changelog/remove-calypoify-module-code b/projects/plugins/jetpack/changelog/remove-calypoify-module-code deleted file mode 100644 index 7ab8d0c6d2dc6..0000000000000 --- a/projects/plugins/jetpack/changelog/remove-calypoify-module-code +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: compat - -Calypsoify: Removing functionality from Jetpack diff --git a/projects/plugins/jetpack/changelog/remove-calypoify-module-code#2 b/projects/plugins/jetpack/changelog/remove-calypoify-module-code#2 deleted file mode 100644 index a1c1831fa1ef7..0000000000000 --- a/projects/plugins/jetpack/changelog/remove-calypoify-module-code#2 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: other -Comment: Updated composer.lock. - - diff --git a/projects/plugins/jetpack/changelog/remove-wpcom-block-editor-module b/projects/plugins/jetpack/changelog/remove-wpcom-block-editor-module deleted file mode 100644 index f368d56178e5f..0000000000000 --- a/projects/plugins/jetpack/changelog/remove-wpcom-block-editor-module +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: compat - -WPCOM Block Editor: Removing functionality from Jetpack diff --git a/projects/plugins/jetpack/changelog/tweak-load-wc-analytics-core b/projects/plugins/jetpack/changelog/tweak-load-wc-analytics-core deleted file mode 100644 index ee9ed3e53f69a..0000000000000 --- a/projects/plugins/jetpack/changelog/tweak-load-wc-analytics-core +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -WooCommerce Analytics: Initialize the module only if is not initialized in WooCommerce core. diff --git a/projects/plugins/jetpack/changelog/update-ai-proofread-sidebar-layout b/projects/plugins/jetpack/changelog/update-ai-proofread-sidebar-layout deleted file mode 100644 index bb6b0630ee1fd..0000000000000 --- a/projects/plugins/jetpack/changelog/update-ai-proofread-sidebar-layout +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: other - -Update sidebar layout on Proofread diff --git a/projects/plugins/jetpack/changelog/update-breve-highlight b/projects/plugins/jetpack/changelog/update-breve-highlight deleted file mode 100644 index 2436d150229ee..0000000000000 --- a/projects/plugins/jetpack/changelog/update-breve-highlight +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: other - -Update highlight on AI Breve diff --git a/projects/plugins/jetpack/changelog/update-breve-highlight-hover b/projects/plugins/jetpack/changelog/update-breve-highlight-hover deleted file mode 100644 index 511a53cf89bcb..0000000000000 --- a/projects/plugins/jetpack/changelog/update-breve-highlight-hover +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: other - -Update AI Proofread hover events diff --git a/projects/plugins/jetpack/changelog/update-jetpack-ai-breve-content b/projects/plugins/jetpack/changelog/update-jetpack-ai-breve-content deleted file mode 100644 index eddefa84879bc..0000000000000 --- a/projects/plugins/jetpack/changelog/update-jetpack-ai-breve-content +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -AI Assistant: Fix blocks content definition diff --git a/projects/plugins/jetpack/changelog/update-jetpack-ai-featured-image-auto-start-generation b/projects/plugins/jetpack/changelog/update-jetpack-ai-featured-image-auto-start-generation deleted file mode 100644 index b7e895f54193e..0000000000000 --- a/projects/plugins/jetpack/changelog/update-jetpack-ai-featured-image-auto-start-generation +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: other - -Jetpack AI Image: trigger featured image auto generation when there is content on the post. diff --git a/projects/plugins/jetpack/changelog/update-jetpack-ai-logo-extension-beta-feature b/projects/plugins/jetpack/changelog/update-jetpack-ai-logo-extension-beta-feature deleted file mode 100644 index 5c5dfeb5787bc..0000000000000 --- a/projects/plugins/jetpack/changelog/update-jetpack-ai-logo-extension-beta-feature +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: other - -Jetpack AI: add beta flag to control logo generator extension. diff --git a/projects/plugins/jetpack/changelog/update-remove-comic-cpt-include b/projects/plugins/jetpack/changelog/update-remove-comic-cpt-include deleted file mode 100644 index 5bbf0f9fbf616..0000000000000 --- a/projects/plugins/jetpack/changelog/update-remove-comic-cpt-include +++ /dev/null @@ -1,4 +0,0 @@ -Significance: major -Type: other - -Custom Post Types: remove Comic post type diff --git a/projects/plugins/jetpack/changelog/update-remove-random-redirect b/projects/plugins/jetpack/changelog/update-remove-random-redirect deleted file mode 100644 index cb2373a067f23..0000000000000 --- a/projects/plugins/jetpack/changelog/update-remove-random-redirect +++ /dev/null @@ -1,4 +0,0 @@ -Significance: major -Type: other - -Random Redirect: remove module diff --git a/projects/plugins/jetpack/changelog/update-social-v1-recommendation-steps b/projects/plugins/jetpack/changelog/update-social-v1-recommendation-steps deleted file mode 100644 index 9dcc203a3ce3f..0000000000000 --- a/projects/plugins/jetpack/changelog/update-social-v1-recommendation-steps +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: enhancement - -Added recommendation steps for the Social v1 plan diff --git a/projects/plugins/jetpack/changelog/update-subscribe-modal-behaviour b/projects/plugins/jetpack/changelog/update-subscribe-modal-behaviour deleted file mode 100644 index bf64fb0e25106..0000000000000 --- a/projects/plugins/jetpack/changelog/update-subscribe-modal-behaviour +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: enhancement - -Implemented a more dynamic approach to displaying the subscription modal diff --git a/projects/plugins/jetpack/composer.json b/projects/plugins/jetpack/composer.json index b75a9f25baa91..9fda6247913ae 100644 --- a/projects/plugins/jetpack/composer.json +++ b/projects/plugins/jetpack/composer.json @@ -103,7 +103,7 @@ "platform": { "ext-intl": "0.0.0" }, - "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_7_a_2", + "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_7_a_4", "allow-plugins": { "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true diff --git a/projects/plugins/jetpack/jetpack.php b/projects/plugins/jetpack/jetpack.php index ac158e3198810..5a11604962cc7 100644 --- a/projects/plugins/jetpack/jetpack.php +++ b/projects/plugins/jetpack/jetpack.php @@ -4,7 +4,7 @@ * Plugin URI: https://jetpack.com * Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things. * Author: Automattic - * Version: 13.7-a.2 + * Version: 13.7-a.4 * Author URI: https://jetpack.com * License: GPL2+ * Text Domain: jetpack @@ -34,7 +34,7 @@ define( 'JETPACK__MINIMUM_WP_VERSION', '6.4' ); define( 'JETPACK__MINIMUM_PHP_VERSION', '7.0' ); -define( 'JETPACK__VERSION', '13.7-a.2' ); +define( 'JETPACK__VERSION', '13.7-a.4' ); /** * Constant used to fetch the connection owner token diff --git a/projects/plugins/jetpack/package.json b/projects/plugins/jetpack/package.json index 6e36c4931a746..fc848ce7bc1f3 100644 --- a/projects/plugins/jetpack/package.json +++ b/projects/plugins/jetpack/package.json @@ -1,6 +1,6 @@ { "name": "Jetpack", - "version": "13.7.0-a.2", + "version": "13.7.0-a.4", "private": true, "description": "[Jetpack](https://jetpack.com/) is a WordPress plugin that supercharges your self-hosted WordPress site with the awesome cloud power of [WordPress.com](https://wordpress.com).", "homepage": "https://jetpack.com", diff --git a/projects/plugins/jetpack/readme.txt b/projects/plugins/jetpack/readme.txt index 36fa5dcf31166..25ad5a9e63190 100644 --- a/projects/plugins/jetpack/readme.txt +++ b/projects/plugins/jetpack/readme.txt @@ -326,14 +326,19 @@ Jetpack Backup can do a full website migration to a new host, migrate theme file == Changelog == -### 13.7-a.1 - 2024-07-08 +### 13.7-a.3 - 2024-07-15 #### Enhancements -- AI Assistant: The general purpose image generator is now available to all users. -- Subscriptions: Add command palette commands for quickly changing post access. -- Subscriptions: Improve the Subscribe block loading animation. +- Blocks: Add the EventCoutdown block. +- Blocks: Add the Timeline block. +- Newsletter: Improve the modal overlay. +- Social: Added recommendation steps for the Social plan. +- Subscriptions: Implemented a more dynamic approach to displaying the modal. + +#### Improved compatibility +- Blocks: Changed the use of default parameters in the Map block for React 19 compatibility. #### Bug fixes -- Like block: Fix warning displayed when trying to load the Like block on unsupported pages. +- Donations Block: Fix undefined array key warnings with old/malformed blocks. -------- diff --git a/projects/plugins/mu-wpcom-plugin/CHANGELOG.md b/projects/plugins/mu-wpcom-plugin/CHANGELOG.md index e5aaf8af22b40..87c8976006ace 100644 --- a/projects/plugins/mu-wpcom-plugin/CHANGELOG.md +++ b/projects/plugins/mu-wpcom-plugin/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 2.4.0 - 2024-07-15 +### Added +- Composer lock update. [#38241] + ## 2.3.3 - 2024-07-08 ### Changed - Updated package dependencies. [#38228] diff --git a/projects/plugins/mu-wpcom-plugin/changelog/add-google-analytics-to-mu-wpcom b/projects/plugins/mu-wpcom-plugin/changelog/add-google-analytics-to-mu-wpcom deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/mu-wpcom-plugin/changelog/add-google-analytics-to-mu-wpcom +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/mu-wpcom-plugin/changelog/fix-sync-hpos-checksum-support b/projects/plugins/mu-wpcom-plugin/changelog/fix-sync-hpos-checksum-support deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/mu-wpcom-plugin/changelog/fix-sync-hpos-checksum-support +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/mu-wpcom-plugin/changelog/try-hide-wpcom-wpadmin-items-from-disconnected-users-v2 b/projects/plugins/mu-wpcom-plugin/changelog/try-hide-wpcom-wpadmin-items-from-disconnected-users-v2 deleted file mode 100644 index 15580dfa092cf..0000000000000 --- a/projects/plugins/mu-wpcom-plugin/changelog/try-hide-wpcom-wpadmin-items-from-disconnected-users-v2 +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Composer lock update. diff --git a/projects/plugins/mu-wpcom-plugin/composer.json b/projects/plugins/mu-wpcom-plugin/composer.json index 82c945937e641..48ff87c855783 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.json +++ b/projects/plugins/mu-wpcom-plugin/composer.json @@ -46,6 +46,6 @@ ] }, "config": { - "autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_4_0_alpha" + "autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_4_0" } } diff --git a/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php b/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php index b18fb38d85961..515bc177f228a 100644 --- a/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php +++ b/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php @@ -3,7 +3,7 @@ * * Plugin Name: WordPress.com Features * Description: Test plugin for the jetpack-mu-wpcom package - * Version: 2.4.0-alpha + * Version: 2.4.0 * Author: Automattic * License: GPLv2 or later * Text Domain: jetpack-mu-wpcom-plugin diff --git a/projects/plugins/mu-wpcom-plugin/package.json b/projects/plugins/mu-wpcom-plugin/package.json index 3e431f18a402b..dc6b06699d2d5 100644 --- a/projects/plugins/mu-wpcom-plugin/package.json +++ b/projects/plugins/mu-wpcom-plugin/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-mu-wpcom-plugin", - "version": "2.4.0-alpha", + "version": "2.4.0", "description": "Test plugin for the jetpack-mu-wpcom package", "homepage": "https://jetpack.com", "bugs": { diff --git a/projects/plugins/wpcomsh/CHANGELOG.md b/projects/plugins/wpcomsh/CHANGELOG.md index f6f05f774d1db..4e62415431a07 100644 --- a/projects/plugins/wpcomsh/CHANGELOG.md +++ b/projects/plugins/wpcomsh/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 3.28.0 - 2024-07-15 +### Added +- Added a check to hide the plugins banner for non-wpcom connected users. [#38241] +- WOA Post Transfer: Ensure that HPOS is enabled for WooCommerce sites. [#38119] + +### Changed +- WooCommerce Calypso Bridge: Update version to 2.5.3 [#38302] + ## 3.27.3 - 2024-07-08 ### Added - Add post transfer woo express deactivate plugins, post process cache flush, and post clone set staging environment [#38183] diff --git a/projects/plugins/wpcomsh/changelog/1468-update-hpos-wpcomsh-wpcli b/projects/plugins/wpcomsh/changelog/1468-update-hpos-wpcomsh-wpcli deleted file mode 100644 index 44dbb59c946a4..0000000000000 --- a/projects/plugins/wpcomsh/changelog/1468-update-hpos-wpcomsh-wpcli +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -WOA Post Transfer: Ensure that HPOS is enabled for WooCommerce sites. diff --git a/projects/plugins/wpcomsh/changelog/add-google-analytics-to-mu-wpcom b/projects/plugins/wpcomsh/changelog/add-google-analytics-to-mu-wpcom deleted file mode 100644 index 3415d4df7dd84..0000000000000 --- a/projects/plugins/wpcomsh/changelog/add-google-analytics-to-mu-wpcom +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - diff --git a/projects/plugins/wpcomsh/changelog/fix-sync-hpos-checksum-support b/projects/plugins/wpcomsh/changelog/fix-sync-hpos-checksum-support deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/wpcomsh/changelog/fix-sync-hpos-checksum-support +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/wpcomsh/changelog/simplify-help-center-translations b/projects/plugins/wpcomsh/changelog/simplify-help-center-translations deleted file mode 100644 index 05ffe09f19e66..0000000000000 --- a/projects/plugins/wpcomsh/changelog/simplify-help-center-translations +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - - diff --git a/projects/plugins/wpcomsh/changelog/try-hide-wpcom-wpadmin-items-from-disconnected-users-v2 b/projects/plugins/wpcomsh/changelog/try-hide-wpcom-wpadmin-items-from-disconnected-users-v2 deleted file mode 100644 index 65371a6b06192..0000000000000 --- a/projects/plugins/wpcomsh/changelog/try-hide-wpcom-wpadmin-items-from-disconnected-users-v2 +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Added a check to hide the plugins banner for non-wpcom connected users. diff --git a/projects/plugins/wpcomsh/changelog/update-wc-calypso-bridge-2.5.3 b/projects/plugins/wpcomsh/changelog/update-wc-calypso-bridge-2.5.3 deleted file mode 100644 index 176d1bd9d419a..0000000000000 --- a/projects/plugins/wpcomsh/changelog/update-wc-calypso-bridge-2.5.3 +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -WooCommerce Calypso Bridge: Update version to 2.5.3 diff --git a/projects/plugins/wpcomsh/composer.json b/projects/plugins/wpcomsh/composer.json index 179b55022b27e..a5e3564ae3f60 100644 --- a/projects/plugins/wpcomsh/composer.json +++ b/projects/plugins/wpcomsh/composer.json @@ -130,7 +130,7 @@ "composer/installers": true, "roots/wordpress-core-installer": true }, - "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_28_0_alpha" + "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_28_0" }, "extra": { "mirror-repo": "Automattic/wpcom-site-helper", diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index 732fcf9e89431..c2e24ad529cfb 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -3,7 +3,7 @@ "name": "@automattic/jetpack-wpcomsh", "description": "A helper for connecting WordPress.com sites to external host infrastructure.", "homepage": "https://jetpack.com", - "version": "3.28.0-alpha", + "version": "3.28.0", "bugs": { "url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh" }, diff --git a/projects/plugins/wpcomsh/wpcomsh.php b/projects/plugins/wpcomsh/wpcomsh.php index ef63d292f1129..f034b69ae9d08 100644 --- a/projects/plugins/wpcomsh/wpcomsh.php +++ b/projects/plugins/wpcomsh/wpcomsh.php @@ -2,14 +2,14 @@ /** * Plugin Name: WordPress.com Site Helper * Description: A helper for connecting WordPress.com sites to external host infrastructure. - * Version: 3.28.0-alpha + * Version: 3.28.0 * Author: Automattic * Author URI: http://automattic.com/ * * @package wpcomsh */ -define( 'WPCOMSH_VERSION', '3.28.0-alpha' ); +define( 'WPCOMSH_VERSION', '3.28.0' ); // If true, Typekit fonts will be available in addition to Google fonts add_filter( 'jetpack_fonts_enable_typekit', '__return_true' ); From f1da7bd5d1c0388489a40157732fab85b3d870a6 Mon Sep 17 00:00:00 2001 From: Kev Date: Mon, 15 Jul 2024 14:43:36 -0400 Subject: [PATCH 133/254] Delete Comic Custom Post Type assets (#38307) * Remove Comic Custom Post Type * changelog * Remove comics folder from build config --- .../jetpack/changelog/update-remove-comic-cpt | 4 + .../custom-post-types/comics/admin.css | 7 - .../custom-post-types/comics/comics.css | 69 --------- .../custom-post-types/comics/comics.js | 131 ------------------ .../comics/rtl/comics-rtl.css | 32 ----- .../jetpack/tools/webpack.config.css.js | 1 - 6 files changed, 4 insertions(+), 240 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/update-remove-comic-cpt delete mode 100644 projects/plugins/jetpack/modules/custom-post-types/comics/admin.css delete mode 100644 projects/plugins/jetpack/modules/custom-post-types/comics/comics.css delete mode 100644 projects/plugins/jetpack/modules/custom-post-types/comics/comics.js delete mode 100644 projects/plugins/jetpack/modules/custom-post-types/comics/rtl/comics-rtl.css diff --git a/projects/plugins/jetpack/changelog/update-remove-comic-cpt b/projects/plugins/jetpack/changelog/update-remove-comic-cpt new file mode 100644 index 0000000000000..5bbf0f9fbf616 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-remove-comic-cpt @@ -0,0 +1,4 @@ +Significance: major +Type: other + +Custom Post Types: remove Comic post type diff --git a/projects/plugins/jetpack/modules/custom-post-types/comics/admin.css b/projects/plugins/jetpack/modules/custom-post-types/comics/admin.css deleted file mode 100644 index e347ac3cbff47..0000000000000 --- a/projects/plugins/jetpack/modules/custom-post-types/comics/admin.css +++ /dev/null @@ -1,7 +0,0 @@ -#adminmenu #menu-posts-jetpack-comic .menu-icon-post div.wp-menu-image:before { - content: '\f125'; -} - -.edit-php .column-preview-jetpack-comic { - width: 150px; -} diff --git a/projects/plugins/jetpack/modules/custom-post-types/comics/comics.css b/projects/plugins/jetpack/modules/custom-post-types/comics/comics.css deleted file mode 100644 index 3f3a53906dc62..0000000000000 --- a/projects/plugins/jetpack/modules/custom-post-types/comics/comics.css +++ /dev/null @@ -1,69 +0,0 @@ -#jetpack-comic-drop-zone .dragging, #jetpack-comic-drop-zone .uploading { - margin-top: 200px; - display: none; -} - -/* Display the appropriate loading message for each upload state. */ -body.dragging #jetpack-comic-drop-zone .dragging, body.uploading #jetpack-comic-drop-zone .uploading { - display: block; -} - -body.uploading #jetpack-comic-drop-zone .uploading .spinner, -body.uploading #jetpack-comic-drop-zone .uploading .spinner:after { - border-radius: 50%; - width: 60px; - height: 60px; -} -body.uploading #jetpack-comic-drop-zone .uploading .spinner { - display: block; - margin: 15px auto; - font-size: 10px; - position: relative; - text-indent: -9999em; - border-top: 1.1em solid rgba(255, 255, 255, 0.2); - border-right: 1.1em solid rgba(255, 255, 255, 0.2); - border-bottom: 1.1em solid rgba(255, 255, 255, 0.2); - border-left: 1.1em solid #ffffff; - -webkit-transform: translateZ(0); - -ms-transform: translateZ(0); - transform: translateZ(0); - -webkit-animation: load8 1.1s infinite linear; - animation: load8 1.1s infinite linear; -} - -@-webkit-keyframes load8 { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} -@keyframes load8 { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -/* Add the drop zone overlay. */ -body.dragging #jetpack-comic-drop-zone, body.uploading #jetpack-comic-drop-zone { - background: rgba( 0, 86, 132, 0.9 ); - border: 1px dashed #fff; - color: #fff; - display: block; - font-size: 30px; - position: fixed; - top: 10px; - left: 10px; - right: 10px; - bottom: 10px; - text-align: center; - z-index: 99999; -} diff --git a/projects/plugins/jetpack/modules/custom-post-types/comics/comics.js b/projects/plugins/jetpack/modules/custom-post-types/comics/comics.js deleted file mode 100644 index bcf5c787884cc..0000000000000 --- a/projects/plugins/jetpack/modules/custom-post-types/comics/comics.js +++ /dev/null @@ -1,131 +0,0 @@ -/* global Jetpack_Comics_Options */ - -jQuery( function ( $ ) { - /** - * Enable front-end uploading of images for Comics users. - */ - var Jetpack_Comics = { - init: function () { - $( document ).on( - 'dragover.jetpack-comics', - 'body, #jetpack-comic-drop-zone', - this.onDragOver - ); - $( document ).on( - 'dragleave.jetpack-comics', - 'body, #jetpack-comic-drop-zone', - this.onDragLeave - ); - $( document ).on( 'drop.jetpack-comics', 'body, #jetpack-comic-drop-zone', this.onDrop ); - - $( 'body' ).append( - $( '

    ' ) - ); - $( '#jetpack-comic-drop-zone' ) - .find( '.dragging' ) - .text( Jetpack_Comics_Options.labels.dragging ) - .end() - .find( '.uploading' ) - .text( Jetpack_Comics_Options.labels.uploading ) - .prepend( $( '' ) ); - - if ( ! ( 'FileReader' in window && 'File' in window ) ) { - $( '#jetpack-comic-drop-zone .dragging' ).text( Jetpack_Comics_Options.labels.unsupported ); - $( document ) - .off( 'drop.jetpack-comics' ) - .on( 'drop.jetpack-comics', 'body, #jetpack-comic-drop-zone', this.onDragLeave ); - } - }, - - /** - * Only upload image files. - */ - filterImageFiles: function ( files ) { - var validFiles = []; - - for ( var i = 0, _len = files.length; i < _len; i++ ) { - if ( files[ i ].type.match( /^image\//i ) ) { - validFiles.push( files[ i ] ); - } - } - - return validFiles; - }, - - dragTimeout: null, - - onDragOver: function ( event ) { - event.preventDefault(); - - clearTimeout( Jetpack_Comics.dragTimeout ); - - $( 'body' ).addClass( 'dragging' ); - }, - - onDragLeave: function (/*event*/) { - clearTimeout( Jetpack_Comics.dragTimeout ); - - // In Chrome, the screen flickers because we're moving the drop zone in front of 'body' - // so the dragover/dragleave events happen frequently. - Jetpack_Comics.dragTimeout = setTimeout( function () { - $( 'body' ).removeClass( 'dragging' ); - }, 100 ); - }, - - onDrop: function ( event ) { - event.preventDefault(); - event.stopPropagation(); - - // recent chrome bug requires this, see stackoverflow thread: http://bit.ly/13BU7b5 - event.originalEvent.stopPropagation(); - event.originalEvent.preventDefault(); - - var files = Jetpack_Comics.filterImageFiles( event.originalEvent.dataTransfer.files ); - - $( 'body' ).removeClass( 'dragging' ); - - if ( files.length === 0 ) { - alert( Jetpack_Comics_Options.labels.invalidUpload ); - return; - } - - $( 'body' ).addClass( 'uploading' ); - - var formData = new FormData(); - - for ( var i = 0, fl = files.length; i < fl; i++ ) { - formData.append( 'image_' + i, files[ i ] ); // won't work as image[] - } - - $.ajax( { - url: Jetpack_Comics_Options.writeURL + '&nonce=' + Jetpack_Comics_Options.nonce, - data: formData, - processData: false, - contentType: false, - type: 'POST', - dataType: 'json', - xhrFields: { - withCredentials: true, - }, - } ) - .done( function ( data ) { - $( '#jetpack-comic-drop-zone .uploading' ).text( - Jetpack_Comics_Options.labels.processing - ); - - if ( 'url' in data ) { - document.location.href = data.url; - } else if ( 'error' in data ) { - alert( data.error ); - - $( 'body' ).removeClass( 'uploading' ); - } - } ) - .fail( function (/*req*/) { - alert( Jetpack_Comics_Options.labels.error ); - } ); - }, - }; - - Jetpack_Comics.init(); -} ); diff --git a/projects/plugins/jetpack/modules/custom-post-types/comics/rtl/comics-rtl.css b/projects/plugins/jetpack/modules/custom-post-types/comics/rtl/comics-rtl.css deleted file mode 100644 index 773fd99d8b094..0000000000000 --- a/projects/plugins/jetpack/modules/custom-post-types/comics/rtl/comics-rtl.css +++ /dev/null @@ -1,32 +0,0 @@ -/* This file was automatically generated on Jul 09 2013 05:18:56 */ - -#jetpack-comic-drop-zone .dragging, #jetpack-comic-drop-zone .uploading { - margin-top: 200px; - display: none; -} - -/* Display the appropriate loading message for each upload state. */ -body.dragging #jetpack-comic-drop-zone .dragging, body.uploading #jetpack-comic-drop-zone .uploading { - display: block; -} - -body.uploading #jetpack-comic-drop-zone .uploading .spinner { - display: inline-block; - width: 60px; -} - -/* Add the drop zone overlay. */ -body.dragging #jetpack-comic-drop-zone, body.uploading #jetpack-comic-drop-zone { - background: rgba( 0, 86, 132, 0.9 ); - border: 1px dashed #fff; - color: #fff; - display: block; - font-size: 30px; - position: fixed; - top: 10px; - right: 10px; - left: 10px; - bottom: 10px; - text-align: center; - z-index: 99999; -} \ No newline at end of file diff --git a/projects/plugins/jetpack/tools/webpack.config.css.js b/projects/plugins/jetpack/tools/webpack.config.css.js index c97e17e3a5ae8..0bbc6ef43de8b 100644 --- a/projects/plugins/jetpack/tools/webpack.config.css.js +++ b/projects/plugins/jetpack/tools/webpack.config.css.js @@ -161,7 +161,6 @@ const weirdRtlNominEntries = {}; // Admin CSS files to insert into weirdRtlNominEntries and weirdRtlEntries. for ( const name of [ - 'modules/custom-post-types/comics/comics', 'modules/shortcodes/css/recipes', 'modules/shortcodes/css/recipes-print', 'modules/shortcodes/css/slideshow-shortcode', From 7dd18be81f4d28805c87694d28b272b8586a997a Mon Sep 17 00:00:00 2001 From: Nate Weller Date: Mon, 15 Jul 2024 13:12:56 -0600 Subject: [PATCH 134/254] WAF: Remove unnecessary mode check before updating rule files (#38326) --- .../waf/changelog/remove-waf-update-rules-mode-check | 5 +++++ projects/packages/waf/src/class-waf-initializer.php | 5 ----- projects/packages/waf/src/class-waf-rules-manager.php | 9 --------- projects/packages/waf/src/class-waf-runner.php | 5 ----- 4 files changed, 5 insertions(+), 19 deletions(-) create mode 100644 projects/packages/waf/changelog/remove-waf-update-rules-mode-check diff --git a/projects/packages/waf/changelog/remove-waf-update-rules-mode-check b/projects/packages/waf/changelog/remove-waf-update-rules-mode-check new file mode 100644 index 0000000000000..db8dc9f2f146e --- /dev/null +++ b/projects/packages/waf/changelog/remove-waf-update-rules-mode-check @@ -0,0 +1,5 @@ +Significance: patch +Type: removed +Comment: Removed unnecessary check from the method that updates the WAF rule files. + + diff --git a/projects/packages/waf/src/class-waf-initializer.php b/projects/packages/waf/src/class-waf-initializer.php index ac0044811b832..c2720f83ca7cf 100644 --- a/projects/packages/waf/src/class-waf-initializer.php +++ b/projects/packages/waf/src/class-waf-initializer.php @@ -181,11 +181,6 @@ public static function check_for_updates() { Waf_Compatibility::run_compatibility_migrations(); - Waf_Constants::define_mode(); - if ( ! Waf_Runner::is_allowed_mode( JETPACK_WAF_MODE ) ) { - return new WP_Error( 'waf_mode_invalid', 'Invalid firewall mode.' ); - } - try { Waf_Rules_Manager::generate_ip_rules(); Waf_Rules_Manager::generate_rules(); diff --git a/projects/packages/waf/src/class-waf-rules-manager.php b/projects/packages/waf/src/class-waf-rules-manager.php index 236d714325784..bada7d0f4ed3f 100644 --- a/projects/packages/waf/src/class-waf-rules-manager.php +++ b/projects/packages/waf/src/class-waf-rules-manager.php @@ -86,11 +86,6 @@ public static function schedule_rules_cron() { * @return bool|WP_Error True if rules update is successful, WP_Error on failure. */ public static function update_rules_cron() { - Waf_Constants::define_mode(); - if ( ! Waf_Runner::is_allowed_mode( JETPACK_WAF_MODE ) ) { - return new WP_Error( 'waf_invalid_mode', 'Invalid firewall mode.' ); - } - try { self::generate_automatic_rules(); self::generate_ip_rules(); @@ -127,10 +122,6 @@ public static function reactivate_on_rules_option_change() { * @return void */ public static function update_rules_if_changed() { - Waf_Constants::define_mode(); - if ( ! Waf_Runner::is_allowed_mode( JETPACK_WAF_MODE ) ) { - throw new Waf_Exception( 'Invalid firewall mode.' ); - } $version = get_option( self::VERSION_OPTION_NAME ); if ( self::RULES_VERSION !== $version ) { self::generate_automatic_rules(); diff --git a/projects/packages/waf/src/class-waf-runner.php b/projects/packages/waf/src/class-waf-runner.php index 6e13203d6f7d8..3577de39a6ea1 100644 --- a/projects/packages/waf/src/class-waf-runner.php +++ b/projects/packages/waf/src/class-waf-runner.php @@ -313,11 +313,6 @@ public static function initialize_filesystem() { * @return void */ public static function activate() { - Waf_Constants::define_mode(); - if ( ! self::is_allowed_mode( JETPACK_WAF_MODE ) ) { - throw new Waf_Exception( 'Invalid firewall mode.' ); - } - $version = get_option( Waf_Rules_Manager::VERSION_OPTION_NAME ); if ( ! $version ) { add_option( Waf_Rules_Manager::VERSION_OPTION_NAME, Waf_Rules_Manager::RULES_VERSION ); From e0ec75999fe35ab550e537fee45837fa50d4945d Mon Sep 17 00:00:00 2001 From: Ian Ramos <5714212+IanRamosC@users.noreply.github.com> Date: Mon, 15 Jul 2024 16:37:17 -0300 Subject: [PATCH 135/254] Remove Stats copy from connection screen (#38328) * Remove references to Stats from free features * changelog * Fix project versions --- .../changelog/remove-stats-from-connection-interstitial | 4 ++++ .../connect-screen/basic/stories/index.stories.jsx | 1 - projects/js-packages/connection/package.json | 2 +- .../product-detail-card/stories/broken/mock-data.js | 1 - .../changelog/remove-stats-from-connection-interstitial | 4 ++++ projects/packages/my-jetpack/composer.json | 2 +- projects/packages/my-jetpack/package.json | 2 +- projects/packages/my-jetpack/src/class-initializer.php | 2 +- projects/packages/my-jetpack/src/products/class-extras.php | 1 - .../update-remove-stats-from-connection-interstitial | 5 +++++ projects/plugins/backup/composer.lock | 4 ++-- .../update-remove-stats-from-connection-interstitial | 5 +++++ projects/plugins/boost/composer.lock | 4 ++-- projects/plugins/jetpack/_inc/client/main.jsx | 1 - .../changelog/remove-stats-from-connection-interstitial | 4 ++++ .../update-remove-stats-from-connection-interstitial | 5 +++++ projects/plugins/jetpack/composer.lock | 4 ++-- .../update-remove-stats-from-connection-interstitial | 5 +++++ projects/plugins/migration/composer.lock | 4 ++-- .../update-remove-stats-from-connection-interstitial | 5 +++++ projects/plugins/protect/composer.lock | 4 ++-- .../update-remove-stats-from-connection-interstitial | 5 +++++ projects/plugins/search/composer.lock | 4 ++-- .../update-remove-stats-from-connection-interstitial | 5 +++++ projects/plugins/social/composer.lock | 4 ++-- .../update-remove-stats-from-connection-interstitial | 5 +++++ projects/plugins/starter-plugin/composer.lock | 4 ++-- .../update-remove-stats-from-connection-interstitial | 5 +++++ projects/plugins/videopress/composer.lock | 4 ++-- 29 files changed, 79 insertions(+), 26 deletions(-) create mode 100644 projects/js-packages/connection/changelog/remove-stats-from-connection-interstitial create mode 100644 projects/packages/my-jetpack/changelog/remove-stats-from-connection-interstitial create mode 100644 projects/plugins/backup/changelog/update-remove-stats-from-connection-interstitial create mode 100644 projects/plugins/boost/changelog/update-remove-stats-from-connection-interstitial create mode 100644 projects/plugins/jetpack/changelog/remove-stats-from-connection-interstitial create mode 100644 projects/plugins/jetpack/changelog/update-remove-stats-from-connection-interstitial create mode 100644 projects/plugins/migration/changelog/update-remove-stats-from-connection-interstitial create mode 100644 projects/plugins/protect/changelog/update-remove-stats-from-connection-interstitial create mode 100644 projects/plugins/search/changelog/update-remove-stats-from-connection-interstitial create mode 100644 projects/plugins/social/changelog/update-remove-stats-from-connection-interstitial create mode 100644 projects/plugins/starter-plugin/changelog/update-remove-stats-from-connection-interstitial create mode 100644 projects/plugins/videopress/changelog/update-remove-stats-from-connection-interstitial diff --git a/projects/js-packages/connection/changelog/remove-stats-from-connection-interstitial b/projects/js-packages/connection/changelog/remove-stats-from-connection-interstitial new file mode 100644 index 0000000000000..56ab9e31c4046 --- /dev/null +++ b/projects/js-packages/connection/changelog/remove-stats-from-connection-interstitial @@ -0,0 +1,4 @@ +Significance: minor +Type: changed + +Connection Screen: remove mention of Stats from the list of available free features. diff --git a/projects/js-packages/connection/components/connect-screen/basic/stories/index.stories.jsx b/projects/js-packages/connection/components/connect-screen/basic/stories/index.stories.jsx index fbd8991d62d9e..e8e0e63529f13 100644 --- a/projects/js-packages/connection/components/connect-screen/basic/stories/index.stories.jsx +++ b/projects/js-packages/connection/components/connect-screen/basic/stories/index.stories.jsx @@ -14,7 +14,6 @@ const Template = props => (

    Secure and speed up your site for free with Jetpack's powerful WordPress tools

      -
    • Measure your impact with beautiful stats
    • Speed up your site with optimized images
    • Protect your site against bot attacks
    • Get notifications if your site goes offline
    • diff --git a/projects/js-packages/connection/package.json b/projects/js-packages/connection/package.json index 37b0e211878cf..358e2a6807399 100644 --- a/projects/js-packages/connection/package.json +++ b/projects/js-packages/connection/package.json @@ -1,6 +1,6 @@ { "name": "@automattic/jetpack-connection", - "version": "0.33.19", + "version": "0.34.0-alpha", "description": "Jetpack Connection Component", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/connection/#readme", "bugs": { diff --git a/projects/packages/my-jetpack/_inc/components/product-detail-card/stories/broken/mock-data.js b/projects/packages/my-jetpack/_inc/components/product-detail-card/stories/broken/mock-data.js index d6876e362a9da..edae14ec2126b 100644 --- a/projects/packages/my-jetpack/_inc/components/product-detail-card/stories/broken/mock-data.js +++ b/projects/packages/my-jetpack/_inc/components/product-detail-card/stories/broken/mock-data.js @@ -90,7 +90,6 @@ export const extrasProductData = { "Secure and speed up your site for free with Jetpack's powerful WordPress tools.", status: 'active', features: [ - 'Measure your impact with beautiful stats', 'Speed up your site with optimized images', 'Protect your site against bot attacks', 'Get notifications if your site goes offline', diff --git a/projects/packages/my-jetpack/changelog/remove-stats-from-connection-interstitial b/projects/packages/my-jetpack/changelog/remove-stats-from-connection-interstitial new file mode 100644 index 0000000000000..56ab9e31c4046 --- /dev/null +++ b/projects/packages/my-jetpack/changelog/remove-stats-from-connection-interstitial @@ -0,0 +1,4 @@ +Significance: minor +Type: changed + +Connection Screen: remove mention of Stats from the list of available free features. diff --git a/projects/packages/my-jetpack/composer.json b/projects/packages/my-jetpack/composer.json index 6103e25a81dd4..6424500c64e83 100644 --- a/projects/packages/my-jetpack/composer.json +++ b/projects/packages/my-jetpack/composer.json @@ -81,7 +81,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.28.x-dev" + "dev-trunk": "4.29.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" diff --git a/projects/packages/my-jetpack/package.json b/projects/packages/my-jetpack/package.json index 4cf45821c01d6..90cbc42d35ee0 100644 --- a/projects/packages/my-jetpack/package.json +++ b/projects/packages/my-jetpack/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-my-jetpack", - "version": "4.28.0", + "version": "4.29.0-alpha", "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/my-jetpack/#readme", "bugs": { diff --git a/projects/packages/my-jetpack/src/class-initializer.php b/projects/packages/my-jetpack/src/class-initializer.php index 1f447d35d9448..34bdb6dbcc6cc 100644 --- a/projects/packages/my-jetpack/src/class-initializer.php +++ b/projects/packages/my-jetpack/src/class-initializer.php @@ -39,7 +39,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '4.28.0'; + const PACKAGE_VERSION = '4.29.0-alpha'; /** * HTML container ID for the IDC screen on My Jetpack page. diff --git a/projects/packages/my-jetpack/src/products/class-extras.php b/projects/packages/my-jetpack/src/products/class-extras.php index 2dec5713780fa..51f02232ef5d0 100644 --- a/projects/packages/my-jetpack/src/products/class-extras.php +++ b/projects/packages/my-jetpack/src/products/class-extras.php @@ -81,7 +81,6 @@ public static function get_long_description() { */ public static function get_features() { return array( - __( 'Measure your impact with beautiful stats', 'jetpack-my-jetpack' ), __( 'Speed up your site with optimized images', 'jetpack-my-jetpack' ), __( 'Protect your site against bot attacks', 'jetpack-my-jetpack' ), __( 'Get notifications if your site goes offline', 'jetpack-my-jetpack' ), diff --git a/projects/plugins/backup/changelog/update-remove-stats-from-connection-interstitial b/projects/plugins/backup/changelog/update-remove-stats-from-connection-interstitial new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/backup/changelog/update-remove-stats-from-connection-interstitial @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/backup/composer.lock b/projects/plugins/backup/composer.lock index dd87da2c311a3..03d4306b3be11 100644 --- a/projects/plugins/backup/composer.lock +++ b/projects/plugins/backup/composer.lock @@ -1088,7 +1088,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" + "reference": "f8d772f6c04b05b1fed240ab09cb9723b677db33" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1125,7 +1125,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.28.x-dev" + "dev-trunk": "4.29.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" diff --git a/projects/plugins/boost/changelog/update-remove-stats-from-connection-interstitial b/projects/plugins/boost/changelog/update-remove-stats-from-connection-interstitial new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/boost/changelog/update-remove-stats-from-connection-interstitial @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/boost/composer.lock b/projects/plugins/boost/composer.lock index 203432b927169..87fe3eaa646df 100644 --- a/projects/plugins/boost/composer.lock +++ b/projects/plugins/boost/composer.lock @@ -1007,7 +1007,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" + "reference": "f8d772f6c04b05b1fed240ab09cb9723b677db33" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1044,7 +1044,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.28.x-dev" + "dev-trunk": "4.29.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" diff --git a/projects/plugins/jetpack/_inc/client/main.jsx b/projects/plugins/jetpack/_inc/client/main.jsx index a9cfdf1278fa6..2f38880c19e80 100644 --- a/projects/plugins/jetpack/_inc/client/main.jsx +++ b/projects/plugins/jetpack/_inc/client/main.jsx @@ -485,7 +485,6 @@ class Main extends React.Component { See: https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */ }
        -
      • { __( 'Measure your impact with Jetpack Stats', 'jetpack' ) }
      • { __( 'Speed up your site with optimized images', 'jetpack' ) }
      • { __( 'Protect your site against bot attacks', 'jetpack' ) }
      • { __( 'Get notifications if your site goes offline', 'jetpack' ) }
      • diff --git a/projects/plugins/jetpack/changelog/remove-stats-from-connection-interstitial b/projects/plugins/jetpack/changelog/remove-stats-from-connection-interstitial new file mode 100644 index 0000000000000..5d454aa8bfa59 --- /dev/null +++ b/projects/plugins/jetpack/changelog/remove-stats-from-connection-interstitial @@ -0,0 +1,4 @@ +Significance: minor +Type: other + +Connection Screen: remove mention of Stats from the list of available free features diff --git a/projects/plugins/jetpack/changelog/update-remove-stats-from-connection-interstitial b/projects/plugins/jetpack/changelog/update-remove-stats-from-connection-interstitial new file mode 100644 index 0000000000000..a1c1831fa1ef7 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-remove-stats-from-connection-interstitial @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated composer.lock. + + diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index 629f9648c52a7..fbe7bb73118fe 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -1740,7 +1740,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" + "reference": "f8d772f6c04b05b1fed240ab09cb9723b677db33" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1777,7 +1777,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.28.x-dev" + "dev-trunk": "4.29.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" diff --git a/projects/plugins/migration/changelog/update-remove-stats-from-connection-interstitial b/projects/plugins/migration/changelog/update-remove-stats-from-connection-interstitial new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/migration/changelog/update-remove-stats-from-connection-interstitial @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/migration/composer.lock b/projects/plugins/migration/composer.lock index f49fb720551e1..9b952922781cd 100644 --- a/projects/plugins/migration/composer.lock +++ b/projects/plugins/migration/composer.lock @@ -1088,7 +1088,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" + "reference": "f8d772f6c04b05b1fed240ab09cb9723b677db33" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1125,7 +1125,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.28.x-dev" + "dev-trunk": "4.29.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" diff --git a/projects/plugins/protect/changelog/update-remove-stats-from-connection-interstitial b/projects/plugins/protect/changelog/update-remove-stats-from-connection-interstitial new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/protect/changelog/update-remove-stats-from-connection-interstitial @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/protect/composer.lock b/projects/plugins/protect/composer.lock index fc11efc0a4616..035b7a09f2beb 100644 --- a/projects/plugins/protect/composer.lock +++ b/projects/plugins/protect/composer.lock @@ -1001,7 +1001,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" + "reference": "f8d772f6c04b05b1fed240ab09cb9723b677db33" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1038,7 +1038,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.28.x-dev" + "dev-trunk": "4.29.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" diff --git a/projects/plugins/search/changelog/update-remove-stats-from-connection-interstitial b/projects/plugins/search/changelog/update-remove-stats-from-connection-interstitial new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/search/changelog/update-remove-stats-from-connection-interstitial @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/search/composer.lock b/projects/plugins/search/composer.lock index c64f18960e52f..bb9f59f346122 100644 --- a/projects/plugins/search/composer.lock +++ b/projects/plugins/search/composer.lock @@ -944,7 +944,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" + "reference": "f8d772f6c04b05b1fed240ab09cb9723b677db33" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -981,7 +981,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.28.x-dev" + "dev-trunk": "4.29.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" diff --git a/projects/plugins/social/changelog/update-remove-stats-from-connection-interstitial b/projects/plugins/social/changelog/update-remove-stats-from-connection-interstitial new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/social/changelog/update-remove-stats-from-connection-interstitial @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/social/composer.lock b/projects/plugins/social/composer.lock index 869bb64c4d76f..4614b6dfd86df 100644 --- a/projects/plugins/social/composer.lock +++ b/projects/plugins/social/composer.lock @@ -944,7 +944,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" + "reference": "f8d772f6c04b05b1fed240ab09cb9723b677db33" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -981,7 +981,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.28.x-dev" + "dev-trunk": "4.29.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" diff --git a/projects/plugins/starter-plugin/changelog/update-remove-stats-from-connection-interstitial b/projects/plugins/starter-plugin/changelog/update-remove-stats-from-connection-interstitial new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/starter-plugin/changelog/update-remove-stats-from-connection-interstitial @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/starter-plugin/composer.lock b/projects/plugins/starter-plugin/composer.lock index ee83bc08f981a..bb7b665c2fcae 100644 --- a/projects/plugins/starter-plugin/composer.lock +++ b/projects/plugins/starter-plugin/composer.lock @@ -944,7 +944,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" + "reference": "f8d772f6c04b05b1fed240ab09cb9723b677db33" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -981,7 +981,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.28.x-dev" + "dev-trunk": "4.29.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" diff --git a/projects/plugins/videopress/changelog/update-remove-stats-from-connection-interstitial b/projects/plugins/videopress/changelog/update-remove-stats-from-connection-interstitial new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/videopress/changelog/update-remove-stats-from-connection-interstitial @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/videopress/composer.lock b/projects/plugins/videopress/composer.lock index 0238fdcda0048..d05ebac7afa23 100644 --- a/projects/plugins/videopress/composer.lock +++ b/projects/plugins/videopress/composer.lock @@ -944,7 +944,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "30a6edcd2d389f004c01baa26957a959889fe19e" + "reference": "f8d772f6c04b05b1fed240ab09cb9723b677db33" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -981,7 +981,7 @@ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}" }, "branch-alias": { - "dev-trunk": "4.28.x-dev" + "dev-trunk": "4.29.x-dev" }, "version-constants": { "::PACKAGE_VERSION": "src/class-initializer.php" From ef1f3183d8f2588d938ebbd66d2056682ca3935f Mon Sep 17 00:00:00 2001 From: Matthew Reishus Date: Tue, 16 Jul 2024 02:57:08 -0500 Subject: [PATCH 136/254] jetpack_get_google_fonts_data: Add optional pre_ filter to shortcircuit fetching google fonts data (#38343) * jetpack_get_google_fonts_data: Add pre-filter * changelog * Update docblock details to help automated codex page generation --------- Co-authored-by: Jeremy Herve --- .../changelog/update-google-fonts-prefilter | 4 ++++ .../google-fonts/current/load-google-fonts.php | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 projects/plugins/jetpack/changelog/update-google-fonts-prefilter diff --git a/projects/plugins/jetpack/changelog/update-google-fonts-prefilter b/projects/plugins/jetpack/changelog/update-google-fonts-prefilter new file mode 100644 index 0000000000000..4a01316667593 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-google-fonts-prefilter @@ -0,0 +1,4 @@ +Significance: minor +Type: other + +jetpack_get_google_fonts_data: Added an optional filter to short circuit fetching google font data diff --git a/projects/plugins/jetpack/modules/google-fonts/current/load-google-fonts.php b/projects/plugins/jetpack/modules/google-fonts/current/load-google-fonts.php index 1eef0f75e0d85..3676e8636469c 100644 --- a/projects/plugins/jetpack/modules/google-fonts/current/load-google-fonts.php +++ b/projects/plugins/jetpack/modules/google-fonts/current/load-google-fonts.php @@ -18,6 +18,24 @@ * @return object[] The collection data of the Google Fonts. */ function jetpack_get_google_fonts_data() { + /** + * Filters the Google Fonts data before the default retrieval process. + * + * This filter allows short-circuiting the default Google Fonts data retrieval process. + * Returning a non-null value from this filter will bypass the default retrieval + * and return the filtered value instead. + * + * @module google-fonts + * + * @since $$next-version$$ + * + * @param null|array $pre The pre-filtered Google Fonts data, default null. + */ + $pre = apply_filters( 'pre_jetpack_get_google_fonts_data', null ); + if ( null !== $pre ) { + return $pre; + } + $default_google_fonts_api_url = 'https://fonts.gstatic.com'; $jetpack_google_fonts_collection_url = 'https://s0.wp.com/i/font-collections/jetpack-google-fonts.json'; $cache_key = 'jetpack_google_fonts_' . md5( $jetpack_google_fonts_collection_url ); From 376356a070e1de025669e96fe881a9dea9d47e91 Mon Sep 17 00:00:00 2001 From: arthur791004 Date: Tue, 16 Jul 2024 17:29:57 +0900 Subject: [PATCH 137/254] MU WPCOM: Support localizeUrl (#38318) * MU WPCOM: Support localizeUrl * changelog * Bump @automattic/i18n-utils to 1.2.3 and simplify the build * Help Center: Support the alternate data of the post on atomic sites * Clean up * Address feedback * Fix versions --- pnpm-lock.yaml | 39 +++++++++++ .../changelog/mu-wpcom-localize-url | 4 ++ .../packages/jetpack-mu-wpcom/composer.json | 2 +- .../packages/jetpack-mu-wpcom/package.json | 3 +- .../src/class-jetpack-mu-wpcom.php | 2 +- .../jetpack-mu-wpcom/src/common/index.php | 10 +++ .../help-center/class-help-center.php | 14 +--- .../class-wp-rest-help-center-fetch-post.php | 51 ++++++++++++++- .../features/tags-education/tags-education.js | 3 +- .../wpcom-block-description-links/index.tsx | 4 +- .../src/inline-support-link.tsx | 3 +- .../wpcom-documentation-links.ts | 65 ++++++++++++++----- .../jetpack-mu-wpcom/webpack.config.js | 5 +- .../changelog/mu-wpcom-localize-url | 5 ++ .../plugins/mu-wpcom-plugin/composer.json | 2 +- .../plugins/mu-wpcom-plugin/composer.lock | 4 +- .../mu-wpcom-plugin/mu-wpcom-plugin.php | 2 +- projects/plugins/mu-wpcom-plugin/package.json | 2 +- .../wpcomsh/changelog/mu-wpcom-localize-url | 5 ++ projects/plugins/wpcomsh/composer.json | 2 +- projects/plugins/wpcomsh/composer.lock | 4 +- projects/plugins/wpcomsh/package.json | 2 +- projects/plugins/wpcomsh/wpcomsh.php | 4 +- 23 files changed, 187 insertions(+), 50 deletions(-) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-localize-url create mode 100644 projects/plugins/mu-wpcom-plugin/changelog/mu-wpcom-localize-url create mode 100644 projects/plugins/wpcomsh/changelog/mu-wpcom-localize-url diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 31a8e780d1f55..51ffa2b2d383e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2102,6 +2102,9 @@ importers: projects/packages/jetpack-mu-wpcom: dependencies: + '@automattic/i18n-utils': + specifier: 1.2.3 + version: 1.2.3 '@automattic/jetpack-base-styles': specifier: workspace:* version: link:../../js-packages/base-styles @@ -4849,6 +4852,12 @@ packages: '@automattic/calypso-color-schemes@3.1.3': resolution: {integrity: sha512-nzs36yfxUOcsD3HvB72IHgdUfIzTRnT7QmF78CBXEREawTEs0uDyELdx/rAOtW/PauxRYRGQ4zeK5c67FWqLxw==} + '@automattic/calypso-config@1.2.0': + resolution: {integrity: sha512-7NE5oVOEyQ4KRz1VNnPIHgW+mcwxnkcs/+Cymba7OA7SYKARiTg3ETGlZGX19S0F7gjYZMq+IeLHeAZSrNjz/Q==} + + '@automattic/calypso-url@1.1.0': + resolution: {integrity: sha512-oA6pzfrp538gq5JEjE0ARDjvR8Efhw+jrK15TJPjAq5Q+vhPSJhH8sYKEsMAoYZV3d5nnyUcmI5Evge+yq4zeg==} + '@automattic/color-studio@2.6.0': resolution: {integrity: sha512-2LzB6bbQw1vayZxZy5Y+DnCYU7x8tPu+rZhNkWD7V8QZTSJMJO65XKZhYaCByC+C5OegXyGyZzcqEOHHdj5iiQ==} @@ -4861,6 +4870,12 @@ packages: '@automattic/format-currency@1.0.1': resolution: {integrity: sha512-RY2eiUlDiqNSHiJzz2YmH/mw4IjAUO5hkxbwcVGHJkBZowdq/WcSG2yhXc8N9cV9N1fTO/ryCuJvGnpHUe+mAg==} + '@automattic/i18n-utils@1.2.3': + resolution: {integrity: sha512-zvZlazUoEasLATrta3ljfxu2uaZWgHRNKWf56KKBlrPiIxNQvx9D7YyN2MhiV27e/PuAhB0gI4ghqp3gzurKmA==} + + '@automattic/languages@1.0.0': + resolution: {integrity: sha512-froTyDbTmLitHkvY9WLCpFdjUo6moOLkDKw63J2fLiB2gBApy2thkBV+LRx4Z0kIF5iXVkQF4yYOPYkT9Sr13Q==} + '@automattic/popup-monitor@1.0.2': resolution: {integrity: sha512-Y4LMfdkV8iDmezu/7Ov/18JaFJ0QAy5vCntiP0S5AhLt4R/kjLtBt4ifNXNbdKTthGxlL17+LJ1bNtHBVCzPwg==} @@ -14600,6 +14615,14 @@ snapshots: '@automattic/calypso-color-schemes@3.1.3': {} + '@automattic/calypso-config@1.2.0': {} + + '@automattic/calypso-url@1.1.0': + dependencies: + photon: 4.0.0 + transitivePeerDependencies: + - supports-color + '@automattic/color-studio@2.6.0': {} '@automattic/explat-client-react-helpers@0.1.0': @@ -14616,6 +14639,22 @@ snapshots: dependencies: tslib: 2.5.0 + '@automattic/i18n-utils@1.2.3': + dependencies: + '@automattic/calypso-config': 1.2.0 + '@automattic/calypso-url': 1.1.0 + '@automattic/languages': 1.0.0 + '@wordpress/compose': 7.2.0(react@18.3.1) + '@wordpress/i18n': 5.2.0 + react: 18.3.1 + tslib: 2.5.0 + transitivePeerDependencies: + - supports-color + + '@automattic/languages@1.0.0': + dependencies: + tslib: 2.5.0 + '@automattic/popup-monitor@1.0.2': dependencies: events: 3.3.0 diff --git a/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-localize-url b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-localize-url new file mode 100644 index 0000000000000..6c5f685474f91 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/mu-wpcom-localize-url @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +MU WPCOM: Support localizeUrl diff --git a/projects/packages/jetpack-mu-wpcom/composer.json b/projects/packages/jetpack-mu-wpcom/composer.json index b8ef93ae05d88..76f1bd70eb3bd 100644 --- a/projects/packages/jetpack-mu-wpcom/composer.json +++ b/projects/packages/jetpack-mu-wpcom/composer.json @@ -62,7 +62,7 @@ }, "autotagger": true, "branch-alias": { - "dev-trunk": "5.44.x-dev" + "dev-trunk": "5.45.x-dev" }, "textdomain": "jetpack-mu-wpcom", "version-constants": { diff --git a/projects/packages/jetpack-mu-wpcom/package.json b/projects/packages/jetpack-mu-wpcom/package.json index cfa67e4c35494..4694f87129ae2 100644 --- a/projects/packages/jetpack-mu-wpcom/package.json +++ b/projects/packages/jetpack-mu-wpcom/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-mu-wpcom", - "version": "5.44.0", + "version": "5.45.0-alpha", "description": "Enhances your site with features powered by WordPress.com", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/jetpack-mu-wpcom/#readme", "bugs": { @@ -45,6 +45,7 @@ "webpack-cli": "4.9.1" }, "dependencies": { + "@automattic/i18n-utils": "1.2.3", "@automattic/jetpack-base-styles": "workspace:*", "@automattic/jetpack-shared-extension-utils": "workspace:*", "@automattic/typography": "1.0.0", diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 5b85f9b919d3d..72900e2db60b1 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -13,7 +13,7 @@ * Jetpack_Mu_Wpcom main class. */ class Jetpack_Mu_Wpcom { - const PACKAGE_VERSION = '5.44.0'; + const PACKAGE_VERSION = '5.45.0-alpha'; const PKG_DIR = __DIR__ . '/../'; const BASE_DIR = __DIR__ . '/'; const BASE_FILE = __FILE__; diff --git a/projects/packages/jetpack-mu-wpcom/src/common/index.php b/projects/packages/jetpack-mu-wpcom/src/common/index.php index 2d0c3f2d22323..b6426ec981474 100644 --- a/projects/packages/jetpack-mu-wpcom/src/common/index.php +++ b/projects/packages/jetpack-mu-wpcom/src/common/index.php @@ -29,3 +29,13 @@ function get_iso_639_locale( $language ) { return $language; } + +/** + * Returns ISO 639 conforming locale string of the current user. + * + * @return string ISO 639 locale string e.g. "en" + */ +function determine_iso_639_locale() { + $locale = get_user_locale(); + return get_iso_639_locale( $locale ); +} diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php index 681491b9a20fe..f200a647b266f 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-help-center.php @@ -111,7 +111,7 @@ function () { // Load translations directly from widgets.wp.com. wp_enqueue_script( 'help-center-translations', - 'https://widgets.wp.com/help-center/languages/' . self::determine_iso_639_locale() . '-v1.js', + 'https://widgets.wp.com/help-center/languages/' . Common\determine_iso_639_locale() . '-v1.js', array( 'wp-i18n' ), $version, true @@ -169,7 +169,7 @@ function () { 'email' => $user_email, ), 'site' => $this->get_current_site(), - 'locale' => self::determine_iso_639_locale(), + 'locale' => Common\determine_iso_639_locale(), ) ), 'before' @@ -177,16 +177,6 @@ function () { } } - /** - * Determine the ISO 639 locale. - */ - public static function determine_iso_639_locale() { - $locale = get_user_locale(); - if ( ! $locale ) { - $locale = Common\get_iso_639_locale( get_locale() ); - } - return Common\get_iso_639_locale( $locale ); - } /** * Get current site details. */ diff --git a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-fetch-post.php b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-fetch-post.php index f2e66c8a25c47..bf25cbae87c92 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-fetch-post.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/help-center/class-wp-rest-help-center-fetch-post.php @@ -8,6 +8,7 @@ namespace A8C\FSE; use Automattic\Jetpack\Connection\Client; +use Automattic\Jetpack\Jetpack_Mu_Wpcom\Common; /** * Class WP_REST_Help_Center_Fetch_Post. @@ -87,11 +88,13 @@ public function get_blog_post_articles( \WP_REST_Request $request ) { * @param \WP_REST_Request $request The request sent to the API. */ public function get_post( \WP_REST_Request $request ) { - $blog_id = $request['blog_id']; - $post_id = $request['post_id']; + $alternate_data = $this->get_post_alternate_data( $request['blog_id'], $request['post_id'] ); + if ( is_wp_error( $alternate_data ) ) { + return $alternate_data; + } $body = Client::wpcom_json_api_request_as_user( - '/help/article/' . $blog_id . '/' . $post_id + '/help/article/' . $alternate_data['blog_id'] . '/' . $alternate_data['post_id'] ); if ( is_wp_error( $body ) ) { return $body; @@ -100,4 +103,46 @@ public function get_post( \WP_REST_Request $request ) { return rest_ensure_response( $response ); } + + /** + * Get the alternate data of the post according to the locale. + * + * @param int $blog_id The blog ID. + * @param int $post_id The post ID. + * + * @return array The alternate data. + */ + public function get_post_alternate_data( $blog_id, $post_id ) { + $locale = Common\determine_iso_639_locale(); + $default_alternate_data = array( + 'post_id' => $post_id, + 'blog_id' => $blog_id, + ); + if ( $locale === 'en' ) { + return $default_alternate_data; + } + + $body = Client::wpcom_json_api_request_as_user( + "/support/alternates/$blog_id/posts/$post_id", + '1.1', + array(), + null, + 'rest' + ); + + if ( is_wp_error( $body ) ) { + return $body; + } + + $response = json_decode( wp_remote_retrieve_body( $body ), true ); + if ( ! array_key_exists( $locale, $response ) ) { + return $default_alternate_data; + } + + $alternate_data = $response[ $locale ]; + return array( + 'blog_id' => $alternate_data['blog_id'], + 'post_id' => $alternate_data['page_id'], + ); + } } diff --git a/projects/packages/jetpack-mu-wpcom/src/features/tags-education/tags-education.js b/projects/packages/jetpack-mu-wpcom/src/features/tags-education/tags-education.js index 37166613e5557..c1ad2f4ec095a 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/tags-education/tags-education.js +++ b/projects/packages/jetpack-mu-wpcom/src/features/tags-education/tags-education.js @@ -1,3 +1,4 @@ +import { localizeUrl } from '@automattic/i18n-utils'; import { useAnalytics } from '@automattic/jetpack-shared-extension-utils'; import { ExternalLink } from '@wordpress/components'; import { createHigherOrderComponent } from '@wordpress/compose'; @@ -15,7 +16,7 @@ const addTagsEducationLink = createHigherOrderComponent( PostTaxonomyType => { <> { tracks.recordEvent( 'jetpack_mu_wpcom_tags_education_link_click' ); } } diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/index.tsx b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/index.tsx index 37f7ad3e3e7ed..74bfaf5b5fed9 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/index.tsx +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/index.tsx @@ -1,3 +1,4 @@ +import { localizeUrl } from '@automattic/i18n-utils'; import { createInterpolateElement } from '@wordpress/element'; import { addFilter } from '@wordpress/hooks'; import { JSXElementConstructor, ReactElement } from 'react'; @@ -14,9 +15,10 @@ const createLocalizedDescriptionWithLearnMore = ( url: string, postId: number ) => { + const localizedUrl = localizeUrl( url ); return createInterpolateElement( '', { InlineSupportLink: ( - + { description } ), diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/src/inline-support-link.tsx b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/src/inline-support-link.tsx index d85e88e23bf57..99afd6355ce95 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/src/inline-support-link.tsx +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-block-description-links/src/inline-support-link.tsx @@ -1,3 +1,4 @@ +import { localizeUrl } from '@automattic/i18n-utils'; import { useAnalytics } from '@automattic/jetpack-shared-extension-utils'; import { Button, ExternalLink } from '@wordpress/components'; import { useDispatch } from '@wordpress/data'; @@ -47,7 +48,7 @@ export default function DescriptionSupportLink( {
      ); diff --git a/projects/packages/my-jetpack/_inc/components/connection-screen/github.svg b/projects/packages/my-jetpack/_inc/components/connection-screen/github.svg new file mode 100644 index 0000000000000..e7ae694ec4465 --- /dev/null +++ b/projects/packages/my-jetpack/_inc/components/connection-screen/github.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/packages/my-jetpack/_inc/components/connection-screen/styles.module.scss b/projects/packages/my-jetpack/_inc/components/connection-screen/styles.module.scss index b1486cead3889..1e61baa01fd2d 100644 --- a/projects/packages/my-jetpack/_inc/components/connection-screen/styles.module.scss +++ b/projects/packages/my-jetpack/_inc/components/connection-screen/styles.module.scss @@ -12,13 +12,14 @@ .account-description { color: var(--jp-gray-50); font-size: 13px; - margin-bottom: 16px; + margin-bottom: 8px; width: 60%; } .account-images { display: flex; align-items: center; + gap: 8px; li { background: none !important; @@ -28,7 +29,6 @@ } .wordpress { - margin-right: 8px; max-width: 110px; } @@ -37,10 +37,13 @@ } .apple { - margin-left: 8px; height: 18px; } +.github { + width: 16px; +} + .all-features { display: inline-flex; align-items: center; diff --git a/projects/packages/my-jetpack/changelog/update-my-jetpack-connection-social-icons b/projects/packages/my-jetpack/changelog/update-my-jetpack-connection-social-icons new file mode 100644 index 0000000000000..fea154f8daaa0 --- /dev/null +++ b/projects/packages/my-jetpack/changelog/update-my-jetpack-connection-social-icons @@ -0,0 +1,4 @@ +Significance: minor +Type: changed + +My Jetpack: update social icons in the connection screen. From bbf4a58ae2a25c1fad57f90e5cda8d99db621114 Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Wed, 17 Jul 2024 12:25:08 -0400 Subject: [PATCH 156/254] General: update WP version requirements to WordPress 6.5 (#38382) Now that WordPress 6.6 is out, we can start requiring WordPress 6.5. --- .github/files/setup-wordpress-env.sh | 2 +- .phpcs.config.xml | 2 +- composer.json | 4 ++-- composer.lock | 2 +- .../automattic-for-agencies-client.php | 2 +- .../changelog/update-minimum-wp-to-6.5 | 4 ++++ projects/plugins/automattic-for-agencies-client/composer.json | 2 +- projects/plugins/automattic-for-agencies-client/readme.txt | 2 +- projects/plugins/backup/changelog/update-minimum-wp-to-6.5 | 4 ++++ projects/plugins/backup/readme.txt | 2 +- .../changelog/update-minimum-wp-to-6.5 | 4 ++++ projects/plugins/classic-theme-helper-plugin/readme.txt | 2 +- projects/plugins/inspect/changelog/update-minimum-wp-to-6.5 | 4 ++++ projects/plugins/inspect/readme.txt | 2 +- projects/plugins/jetpack/changelog/update-minimum-wp-to-6.5 | 4 ++++ projects/plugins/jetpack/jetpack.php | 4 ++-- projects/plugins/jetpack/readme.txt | 2 +- projects/plugins/migration/changelog/update-minimum-wp-to-6.5 | 4 ++++ projects/plugins/migration/composer.json | 2 +- projects/plugins/migration/readme.txt | 2 +- projects/plugins/migration/wpcom-migration.php | 2 +- projects/plugins/protect/changelog/update-minimum-wp-to-6.5 | 4 ++++ projects/plugins/protect/composer.json | 2 +- projects/plugins/protect/jetpack-protect.php | 4 ++-- projects/plugins/protect/readme.txt | 2 +- projects/plugins/search/changelog/update-minimum-wp-to-6.5 | 4 ++++ projects/plugins/search/composer.json | 2 +- projects/plugins/search/jetpack-search.php | 4 ++-- projects/plugins/search/readme.txt | 2 +- projects/plugins/social/changelog/update-minimum-wp-to-6.5 | 4 ++++ projects/plugins/social/composer.json | 2 +- projects/plugins/social/jetpack-social.php | 2 +- projects/plugins/social/readme.txt | 2 +- .../plugins/starter-plugin/changelog/update-minimum-wp-to-6.5 | 4 ++++ projects/plugins/starter-plugin/readme.txt | 2 +- .../plugins/super-cache/changelog/update-minimum-wp-to-6.5 | 4 ++++ projects/plugins/super-cache/composer.json | 2 +- projects/plugins/super-cache/package.json | 2 +- projects/plugins/super-cache/readme.txt | 2 +- projects/plugins/super-cache/wp-cache.php | 2 +- .../plugins/videopress/changelog/update-minimum-wp-to-6.5 | 4 ++++ projects/plugins/videopress/readme.txt | 2 +- projects/plugins/wpcomsh/changelog/update-minimum-wp-to-6.5 | 4 ++++ projects/plugins/wpcomsh/composer.json | 2 +- projects/plugins/wpcomsh/package.json | 2 +- projects/plugins/wpcomsh/readme.txt | 2 +- projects/plugins/wpcomsh/wpcomsh.php | 4 ++-- tools/cli/commands/generate.js | 2 +- 48 files changed, 92 insertions(+), 40 deletions(-) create mode 100644 projects/plugins/automattic-for-agencies-client/changelog/update-minimum-wp-to-6.5 create mode 100644 projects/plugins/backup/changelog/update-minimum-wp-to-6.5 create mode 100644 projects/plugins/classic-theme-helper-plugin/changelog/update-minimum-wp-to-6.5 create mode 100644 projects/plugins/inspect/changelog/update-minimum-wp-to-6.5 create mode 100644 projects/plugins/jetpack/changelog/update-minimum-wp-to-6.5 create mode 100644 projects/plugins/migration/changelog/update-minimum-wp-to-6.5 create mode 100644 projects/plugins/protect/changelog/update-minimum-wp-to-6.5 create mode 100644 projects/plugins/search/changelog/update-minimum-wp-to-6.5 create mode 100644 projects/plugins/social/changelog/update-minimum-wp-to-6.5 create mode 100644 projects/plugins/starter-plugin/changelog/update-minimum-wp-to-6.5 create mode 100644 projects/plugins/super-cache/changelog/update-minimum-wp-to-6.5 create mode 100644 projects/plugins/videopress/changelog/update-minimum-wp-to-6.5 create mode 100644 projects/plugins/wpcomsh/changelog/update-minimum-wp-to-6.5 diff --git a/.github/files/setup-wordpress-env.sh b/.github/files/setup-wordpress-env.sh index be37da51e0766..35becb1d01c87 100755 --- a/.github/files/setup-wordpress-env.sh +++ b/.github/files/setup-wordpress-env.sh @@ -40,7 +40,7 @@ case "$WP_BRANCH" in previous) # We hard-code the version here because there's a time near WP releases where # we've dropped the old 'previous' but WP hasn't actually released the new 'latest' - WORDPRESS_TAG=6.4 + WORDPRESS_TAG=6.5 ;; *) echo "Unrecognized value for WP_BRANCH: $WP_BRANCH" >&2 diff --git a/.phpcs.config.xml b/.phpcs.config.xml index 6bece0c9bb99a..4bb9600a8e194 100644 --- a/.phpcs.config.xml +++ b/.phpcs.config.xml @@ -2,7 +2,7 @@ - + diff --git a/composer.json b/composer.json index 53a26f45bc8e9..ba10cc928cda0 100644 --- a/composer.json +++ b/composer.json @@ -15,8 +15,8 @@ "phan/phan": "^5.4", "php-parallel-lint/php-parallel-lint": "^1.4.0", "php-stubs/woocommerce-stubs": ">=8.7", - "php-stubs/wordpress-stubs": ">=6.4", - "php-stubs/wordpress-tests-stubs": ">=6.4", + "php-stubs/wordpress-stubs": ">=6.5", + "php-stubs/wordpress-tests-stubs": ">=6.5", "php-stubs/wp-cli-stubs": "^2.10", "sirbrillig/phpcs-changed": "2.11.4", "squizlabs/php_codesniffer": "^3.6.2" diff --git a/composer.lock b/composer.lock index b72397e17eb5a..6f85e2bf700df 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "34f2d8ac9e65725df2a124991d9ac059", + "content-hash": "700fde8d8373ed5610bfc08d87e10fc2", "packages": [], "packages-dev": [ { diff --git a/projects/plugins/automattic-for-agencies-client/automattic-for-agencies-client.php b/projects/plugins/automattic-for-agencies-client/automattic-for-agencies-client.php index d9e3f3dd0c6aa..cf0ab2c28873a 100644 --- a/projects/plugins/automattic-for-agencies-client/automattic-for-agencies-client.php +++ b/projects/plugins/automattic-for-agencies-client/automattic-for-agencies-client.php @@ -4,7 +4,7 @@ * Plugin Name: Automattic for Agencies Client * Plugin URI: https://wordpress.org/plugins/automattic-for-agencies-client * Description: Securely connect your clients’ sites to the Automattic for Agencies Sites Dashboard. Manage your sites from one place and see what needs attention. - * Version: 0.2.2-alpha + * Version: 0.3.0-alpha * Author: Automattic * Author URI: https://automattic.com/for-agencies/ * License: GPLv2 or later diff --git a/projects/plugins/automattic-for-agencies-client/changelog/update-minimum-wp-to-6.5 b/projects/plugins/automattic-for-agencies-client/changelog/update-minimum-wp-to-6.5 new file mode 100644 index 0000000000000..324db53ba465c --- /dev/null +++ b/projects/plugins/automattic-for-agencies-client/changelog/update-minimum-wp-to-6.5 @@ -0,0 +1,4 @@ +Significance: major +Type: removed + +General: update WordPress version requirements to WordPress 6.5. diff --git a/projects/plugins/automattic-for-agencies-client/composer.json b/projects/plugins/automattic-for-agencies-client/composer.json index 10420baba9aa9..abb041c37cb28 100644 --- a/projects/plugins/automattic-for-agencies-client/composer.json +++ b/projects/plugins/automattic-for-agencies-client/composer.json @@ -73,6 +73,6 @@ "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true }, - "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_automattic_for_agencies_clientⓥ0_2_2_alpha" + "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_automattic_for_agencies_clientⓥ0_3_0_alpha" } } diff --git a/projects/plugins/automattic-for-agencies-client/readme.txt b/projects/plugins/automattic-for-agencies-client/readme.txt index 763f6b48b22a3..4fa7bc1f2a1ba 100644 --- a/projects/plugins/automattic-for-agencies-client/readme.txt +++ b/projects/plugins/automattic-for-agencies-client/readme.txt @@ -1,7 +1,7 @@ === Automattic For Agencies Client === Contributors: automattic, jeherve, njweller, rcanepa Tags: agency, dashboard, management, sites, monitoring -Requires at least: 6.4 +Requires at least: 6.5 Requires PHP: 7.0 Tested up to: 6.6 Stable tag: 0.2.1 diff --git a/projects/plugins/backup/changelog/update-minimum-wp-to-6.5 b/projects/plugins/backup/changelog/update-minimum-wp-to-6.5 new file mode 100644 index 0000000000000..324db53ba465c --- /dev/null +++ b/projects/plugins/backup/changelog/update-minimum-wp-to-6.5 @@ -0,0 +1,4 @@ +Significance: major +Type: removed + +General: update WordPress version requirements to WordPress 6.5. diff --git a/projects/plugins/backup/readme.txt b/projects/plugins/backup/readme.txt index a9d61c93c17ff..1de2031c29fcf 100644 --- a/projects/plugins/backup/readme.txt +++ b/projects/plugins/backup/readme.txt @@ -1,7 +1,7 @@ === Jetpack VaultPress Backup === Contributors: automattic, bjorsch, fgiannar, initsogar, jeherve, jwebbdev, kraftbj, macbre, pypt, samiff, sermitr, williamvianas Tags: jetpack, backup, restore -Requires at least: 6.4 +Requires at least: 6.5 Requires PHP: 7.0 Tested up to: 6.6 Stable tag: 2.2 diff --git a/projects/plugins/classic-theme-helper-plugin/changelog/update-minimum-wp-to-6.5 b/projects/plugins/classic-theme-helper-plugin/changelog/update-minimum-wp-to-6.5 new file mode 100644 index 0000000000000..324db53ba465c --- /dev/null +++ b/projects/plugins/classic-theme-helper-plugin/changelog/update-minimum-wp-to-6.5 @@ -0,0 +1,4 @@ +Significance: major +Type: removed + +General: update WordPress version requirements to WordPress 6.5. diff --git a/projects/plugins/classic-theme-helper-plugin/readme.txt b/projects/plugins/classic-theme-helper-plugin/readme.txt index 394d501b4ce99..d4c1568fc21a6 100644 --- a/projects/plugins/classic-theme-helper-plugin/readme.txt +++ b/projects/plugins/classic-theme-helper-plugin/readme.txt @@ -1,7 +1,7 @@ === Jetpack Classic Theme Helper Plugin === Contributors: automattic, Tags: jetpack, stuff -Requires at least: 6.4 +Requires at least: 6.5 Requires PHP: 7.0 Tested up to: 6.6 Stable tag: 0.1.0-alpha diff --git a/projects/plugins/inspect/changelog/update-minimum-wp-to-6.5 b/projects/plugins/inspect/changelog/update-minimum-wp-to-6.5 new file mode 100644 index 0000000000000..324db53ba465c --- /dev/null +++ b/projects/plugins/inspect/changelog/update-minimum-wp-to-6.5 @@ -0,0 +1,4 @@ +Significance: major +Type: removed + +General: update WordPress version requirements to WordPress 6.5. diff --git a/projects/plugins/inspect/readme.txt b/projects/plugins/inspect/readme.txt index 29fa2c38e5c53..8047dad7d5d0f 100644 --- a/projects/plugins/inspect/readme.txt +++ b/projects/plugins/inspect/readme.txt @@ -1,7 +1,7 @@ === Jetpack inspect === Contributors: automattic, Tags: jetpack, stuff -Requires at least: 6.4 +Requires at least: 6.5 Requires PHP: 7.0 Tested up to: 6.6 Stable tag: 1.0.0-alpha diff --git a/projects/plugins/jetpack/changelog/update-minimum-wp-to-6.5 b/projects/plugins/jetpack/changelog/update-minimum-wp-to-6.5 new file mode 100644 index 0000000000000..f1ab707c6e1b6 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-minimum-wp-to-6.5 @@ -0,0 +1,4 @@ +Significance: major +Type: compat + +General: update WordPress version requirements to WordPress 6.5. diff --git a/projects/plugins/jetpack/jetpack.php b/projects/plugins/jetpack/jetpack.php index 5a11604962cc7..6521a2dc233e1 100644 --- a/projects/plugins/jetpack/jetpack.php +++ b/projects/plugins/jetpack/jetpack.php @@ -8,7 +8,7 @@ * Author URI: https://jetpack.com * License: GPL2+ * Text Domain: jetpack - * Requires at least: 6.4 + * Requires at least: 6.5 * Requires PHP: 7.0 * * @package automattic/jetpack @@ -32,7 +32,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -define( 'JETPACK__MINIMUM_WP_VERSION', '6.4' ); +define( 'JETPACK__MINIMUM_WP_VERSION', '6.5' ); define( 'JETPACK__MINIMUM_PHP_VERSION', '7.0' ); define( 'JETPACK__VERSION', '13.7-a.4' ); diff --git a/projects/plugins/jetpack/readme.txt b/projects/plugins/jetpack/readme.txt index 25ad5a9e63190..9ac2a40555939 100644 --- a/projects/plugins/jetpack/readme.txt +++ b/projects/plugins/jetpack/readme.txt @@ -2,7 +2,7 @@ Contributors: automattic, adamkheckler, adrianmoldovanwp, aduth, akirk, allendav, alternatekev, andy, annamcphee, annezazu, apeatling, arcangelini, arsihasi, azaozz, barry, batmoo, beaulebens, bindlegirl, biskobe, bjorsch, blobaugh, brbrr, brileyhooper, cainm, cena, cfinke, cgastrell, chaselivingston, chellycat, clickysteve, csonnek, danielbachhuber, daniloercoli, davoraltman, delawski, designsimply, dkmyta, dllh, drawmyface, dsmart, jwidavid, dzver, ebinnion, egregor, eliorivero, enej, eoigal, erania-pinnera, ethitter, fgiannar, gcorne, georgestephanis, gibrown, goldsounds, hew, hugobaeta, hypertextranch, iammattthomas, iandunn, joen, jblz, jeffgolenski, jeherve, jenhooks, jenia, jessefriedman, jgs, jkudish, jmdodd, joanrho, johnjamesjacoby, jshreve, kbrownkd, keoshi, koke, kraftbj, lancewillett, leogermani, lhkowalski, lschuyler, macmanx, martinremy, matt, mattwiebe, matveb, maverick3x6, mcsf, mdawaffe, mdbitz, MichaelArestad, migueluy, miguelxavierpenha, mikeyarce, mkaz, nancythanki, nickmomrik, njweller, nunyvega, obenland, oskosk, pento, professor44, rachelsquirrel, rdcoll, renatoagds, retrofox, richardmtl, richardmuscat, robertbpugh, roccotripaldi, ryancowles, samhotchkiss, samiff, scarstocea, scottsweb, sdixon194, sdquirk, sermitr, simison, stephdau, thehenridev, tmoorewp, tyxla, Viper007Bond, westi, williamvianas, wpkaren, yoavf, zinigor Tags: Security, backup, malware, scan, performance Stable tag: 13.6 -Requires at least: 6.4 +Requires at least: 6.5 Requires PHP: 7.0 Tested up to: 6.6 License: GPLv2 or later diff --git a/projects/plugins/migration/changelog/update-minimum-wp-to-6.5 b/projects/plugins/migration/changelog/update-minimum-wp-to-6.5 new file mode 100644 index 0000000000000..324db53ba465c --- /dev/null +++ b/projects/plugins/migration/changelog/update-minimum-wp-to-6.5 @@ -0,0 +1,4 @@ +Significance: major +Type: removed + +General: update WordPress version requirements to WordPress 6.5. diff --git a/projects/plugins/migration/composer.json b/projects/plugins/migration/composer.json index a5b24b32f001c..d695bb9ca25cb 100644 --- a/projects/plugins/migration/composer.json +++ b/projects/plugins/migration/composer.json @@ -71,6 +71,6 @@ "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true }, - "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_migrationⓥ2_1_0_alpha" + "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_migrationⓥ3_0_0_alpha" } } diff --git a/projects/plugins/migration/readme.txt b/projects/plugins/migration/readme.txt index cde969072eedf..e841038dff934 100644 --- a/projects/plugins/migration/readme.txt +++ b/projects/plugins/migration/readme.txt @@ -1,7 +1,7 @@ === Move to WordPress.com === Contributors: automattic Tags: migrate, migration, backup, restore, transfer, move, copy, wordpress.com, automattic, import, importer, hosting -Requires at least: 6.4 +Requires at least: 6.5 Requires PHP: 7.0 Tested up to: 6.6 Stable tag: 2.0.0 diff --git a/projects/plugins/migration/wpcom-migration.php b/projects/plugins/migration/wpcom-migration.php index 7a244c0056286..ab4f2bb834c71 100644 --- a/projects/plugins/migration/wpcom-migration.php +++ b/projects/plugins/migration/wpcom-migration.php @@ -4,7 +4,7 @@ * Plugin Name: Move to WordPress.com * Plugin URI: https://wordpress.org/plugins/wpcom-migration * Description: A WordPress plugin that helps users to migrate their sites to WordPress.com. - * Version: 2.1.0-alpha + * Version: 3.0.0-alpha * Author: Automattic * Author URI: https://wordpress.com/ * License: GPLv2 or later diff --git a/projects/plugins/protect/changelog/update-minimum-wp-to-6.5 b/projects/plugins/protect/changelog/update-minimum-wp-to-6.5 new file mode 100644 index 0000000000000..324db53ba465c --- /dev/null +++ b/projects/plugins/protect/changelog/update-minimum-wp-to-6.5 @@ -0,0 +1,4 @@ +Significance: major +Type: removed + +General: update WordPress version requirements to WordPress 6.5. diff --git a/projects/plugins/protect/composer.json b/projects/plugins/protect/composer.json index f3a64da934382..a3a6c2ca3c858 100644 --- a/projects/plugins/protect/composer.json +++ b/projects/plugins/protect/composer.json @@ -79,6 +79,6 @@ "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true }, - "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_protectⓥ2_3_0_alpha" + "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_protectⓥ3_0_0_alpha" } } diff --git a/projects/plugins/protect/jetpack-protect.php b/projects/plugins/protect/jetpack-protect.php index 8aa77ab768ee9..88c13b3b6ab9c 100644 --- a/projects/plugins/protect/jetpack-protect.php +++ b/projects/plugins/protect/jetpack-protect.php @@ -3,7 +3,7 @@ * Plugin Name: Jetpack Protect * Plugin URI: https://wordpress.org/plugins/jetpack-protect * Description: Security tools that keep your site safe and sound, from posts to plugins. - * Version: 2.3.0-alpha + * Version: 3.0.0-alpha * Author: Automattic - Jetpack Security team * Author URI: https://jetpack.com/protect/ * License: GPLv2 or later @@ -32,7 +32,7 @@ exit; } -define( 'JETPACK_PROTECT_VERSION', '2.3.0-alpha' ); +define( 'JETPACK_PROTECT_VERSION', '3.0.0-alpha' ); define( 'JETPACK_PROTECT_DIR', plugin_dir_path( __FILE__ ) ); define( 'JETPACK_PROTECT_ROOT_FILE', __FILE__ ); define( 'JETPACK_PROTECT_ROOT_FILE_RELATIVE_PATH', plugin_basename( __FILE__ ) ); diff --git a/projects/plugins/protect/readme.txt b/projects/plugins/protect/readme.txt index f266a263537e7..37d9b618d1669 100644 --- a/projects/plugins/protect/readme.txt +++ b/projects/plugins/protect/readme.txt @@ -1,7 +1,7 @@ === Jetpack Protect === Contributors: automattic, retrofox, leogermani, renatoagds, bjorsch, ebinnion, fgiannar, zinigor, miguelxavierpenha, dsmart, jeherve, manzoorwanijk, njweller, oskosk, samiff, siddarthan, wpkaren, arsihasi, kraftbj, kev, sermitr, kangzj, pabline, dkmyta Tags: jetpack, protect, security, malware, scan -Requires at least: 6.4 +Requires at least: 6.5 Requires PHP: 7.0 Tested up to: 6.6 Stable tag: 1.4.1 diff --git a/projects/plugins/search/changelog/update-minimum-wp-to-6.5 b/projects/plugins/search/changelog/update-minimum-wp-to-6.5 new file mode 100644 index 0000000000000..324db53ba465c --- /dev/null +++ b/projects/plugins/search/changelog/update-minimum-wp-to-6.5 @@ -0,0 +1,4 @@ +Significance: major +Type: removed + +General: update WordPress version requirements to WordPress 6.5. diff --git a/projects/plugins/search/composer.json b/projects/plugins/search/composer.json index 2fb4955da37ea..853ac6f267fbd 100644 --- a/projects/plugins/search/composer.json +++ b/projects/plugins/search/composer.json @@ -62,7 +62,7 @@ }, "config": { "sort-packages": true, - "autoloader-suffix": "b462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ2_1_1_alpha", + "autoloader-suffix": "b462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ3_0_0_alpha", "allow-plugins": { "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true, diff --git a/projects/plugins/search/jetpack-search.php b/projects/plugins/search/jetpack-search.php index 519bf58b24961..77115034e0bce 100644 --- a/projects/plugins/search/jetpack-search.php +++ b/projects/plugins/search/jetpack-search.php @@ -4,7 +4,7 @@ * Plugin Name: Jetpack Search * Plugin URI: https://jetpack.com/search/ * Description: Easily add cloud-powered instant search and filters to your website or WooCommerce store with advanced algorithms that boost your search results based on traffic to your site. - * Version: 2.1.1-alpha + * Version: 3.0.0-alpha * Author: Automattic - Jetpack Search team * Author URI: https://jetpack.com/ * License: GPLv2 or later @@ -26,7 +26,7 @@ define( 'JETPACK_SEARCH_PLUGIN__FILE', __FILE__ ); define( 'JETPACK_SEARCH_PLUGIN__FILE_RELATIVE_PATH', plugin_basename( __FILE__ ) ); define( 'JETPACK_SEARCH_PLUGIN__SLUG', 'jetpack-search' ); -define( 'JETPACK_SEARCH_PLUGIN__VERSION', '2.1.1-alpha' ); +define( 'JETPACK_SEARCH_PLUGIN__VERSION', '3.0.0-alpha' ); defined( 'JETPACK_CLIENT__AUTH_LOCATION' ) || define( 'JETPACK_CLIENT__AUTH_LOCATION', 'header' ); diff --git a/projects/plugins/search/readme.txt b/projects/plugins/search/readme.txt index a91019e4d7d03..f82869d9fb87a 100644 --- a/projects/plugins/search/readme.txt +++ b/projects/plugins/search/readme.txt @@ -1,7 +1,7 @@ === Jetpack Search === Contributors: automattic, annamcphee, bluefuton, kangzj, jsnmoon, robfelty, gibrown, trakos, dognose24, a8ck3n Tags: search, filter, woocommerce search, ajax search, product search, free cloud-based search -Requires at least: 6.4 +Requires at least: 6.5 Requires PHP: 7.0 Tested up to: 6.6 Stable tag: 1.4.0 diff --git a/projects/plugins/social/changelog/update-minimum-wp-to-6.5 b/projects/plugins/social/changelog/update-minimum-wp-to-6.5 new file mode 100644 index 0000000000000..324db53ba465c --- /dev/null +++ b/projects/plugins/social/changelog/update-minimum-wp-to-6.5 @@ -0,0 +1,4 @@ +Significance: major +Type: removed + +General: update WordPress version requirements to WordPress 6.5. diff --git a/projects/plugins/social/composer.json b/projects/plugins/social/composer.json index c79f8fcbe7954..a6fede8af54da 100644 --- a/projects/plugins/social/composer.json +++ b/projects/plugins/social/composer.json @@ -84,6 +84,6 @@ "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true }, - "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_socialⓥ4_5_3_alpha" + "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_socialⓥ5_0_0_alpha" } } diff --git a/projects/plugins/social/jetpack-social.php b/projects/plugins/social/jetpack-social.php index f3bd3a204b52a..47bfb4fe1d3f5 100644 --- a/projects/plugins/social/jetpack-social.php +++ b/projects/plugins/social/jetpack-social.php @@ -4,7 +4,7 @@ * Plugin Name: Jetpack Social * Plugin URI: https://wordpress.org/plugins/jetpack-social * Description: Share your site’s posts on several social media networks automatically when you publish a new post. - * Version: 4.5.3-alpha + * Version: 5.0.0-alpha * Author: Automattic - Jetpack Social team * Author URI: https://jetpack.com/social/ * License: GPLv2 or later diff --git a/projects/plugins/social/readme.txt b/projects/plugins/social/readme.txt index 686444cbb48eb..a7d2c02f520cd 100644 --- a/projects/plugins/social/readme.txt +++ b/projects/plugins/social/readme.txt @@ -1,7 +1,7 @@ === Jetpack Social === Contributors: automattic, pabline, siddarthan, gmjuhasz, manzoorwanijk Tags: social media automation, social media scheduling, auto share, social sharing, social media marketing -Requires at least: 6.4 +Requires at least: 6.5 Requires PHP: 7.0 Tested up to: 6.6 Stable tag: 4.5.1 diff --git a/projects/plugins/starter-plugin/changelog/update-minimum-wp-to-6.5 b/projects/plugins/starter-plugin/changelog/update-minimum-wp-to-6.5 new file mode 100644 index 0000000000000..324db53ba465c --- /dev/null +++ b/projects/plugins/starter-plugin/changelog/update-minimum-wp-to-6.5 @@ -0,0 +1,4 @@ +Significance: major +Type: removed + +General: update WordPress version requirements to WordPress 6.5. diff --git a/projects/plugins/starter-plugin/readme.txt b/projects/plugins/starter-plugin/readme.txt index bc80919d48520..d7247adfd9b82 100644 --- a/projects/plugins/starter-plugin/readme.txt +++ b/projects/plugins/starter-plugin/readme.txt @@ -1,7 +1,7 @@ === Jetpack Starter Plugin === Contributors: automattic, Tags: jetpack, stuff -Requires at least: 6.4 +Requires at least: 6.5 Requires PHP: 7.0 Tested up to: 6.6 Stable tag: 0.1.0-alpha diff --git a/projects/plugins/super-cache/changelog/update-minimum-wp-to-6.5 b/projects/plugins/super-cache/changelog/update-minimum-wp-to-6.5 new file mode 100644 index 0000000000000..324db53ba465c --- /dev/null +++ b/projects/plugins/super-cache/changelog/update-minimum-wp-to-6.5 @@ -0,0 +1,4 @@ +Significance: major +Type: removed + +General: update WordPress version requirements to WordPress 6.5. diff --git a/projects/plugins/super-cache/composer.json b/projects/plugins/super-cache/composer.json index c104d51b02989..e11388a9a7205 100644 --- a/projects/plugins/super-cache/composer.json +++ b/projects/plugins/super-cache/composer.json @@ -51,6 +51,6 @@ "wp-svn-autopublish": true }, "config": { - "autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_3" + "autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ2_0_0_alpha" } } diff --git a/projects/plugins/super-cache/package.json b/projects/plugins/super-cache/package.json index 8c99c5d343ace..e0bcd6ccc7621 100644 --- a/projects/plugins/super-cache/package.json +++ b/projects/plugins/super-cache/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-super-cache", - "version": "1.12.3", + "version": "2.0.0-alpha", "description": "A very fast caching engine for WordPress that produces static html files.", "homepage": "https://jetpack.com", "bugs": { diff --git a/projects/plugins/super-cache/readme.txt b/projects/plugins/super-cache/readme.txt index f59311c9884f4..3e98dcd91c9ee 100644 --- a/projects/plugins/super-cache/readme.txt +++ b/projects/plugins/super-cache/readme.txt @@ -1,7 +1,7 @@ === WP Super Cache === Contributors: donncha, automattic, adnan007, dilirity, mikemayhem3030, pyronaur, thingalon Tags: performance, caching, wp-cache, wp-super-cache, cache -Requires at least: 6.4 +Requires at least: 6.5 Requires PHP: 7.0 Tested up to: 6.6 Stable tag: 1.12.3 diff --git a/projects/plugins/super-cache/wp-cache.php b/projects/plugins/super-cache/wp-cache.php index 91c8f7ffcd51c..55762222c5f01 100644 --- a/projects/plugins/super-cache/wp-cache.php +++ b/projects/plugins/super-cache/wp-cache.php @@ -3,7 +3,7 @@ * Plugin Name: WP Super Cache * Plugin URI: https://wordpress.org/plugins/wp-super-cache/ * Description: Very fast caching plugin for WordPress. - * Version: 1.12.3 + * Version: 2.0.0-alpha * Author: Automattic * Author URI: https://automattic.com/ * License: GPL2+ diff --git a/projects/plugins/videopress/changelog/update-minimum-wp-to-6.5 b/projects/plugins/videopress/changelog/update-minimum-wp-to-6.5 new file mode 100644 index 0000000000000..324db53ba465c --- /dev/null +++ b/projects/plugins/videopress/changelog/update-minimum-wp-to-6.5 @@ -0,0 +1,4 @@ +Significance: major +Type: removed + +General: update WordPress version requirements to WordPress 6.5. diff --git a/projects/plugins/videopress/readme.txt b/projects/plugins/videopress/readme.txt index 8ec5d80ff6918..4c33e4cac38f0 100644 --- a/projects/plugins/videopress/readme.txt +++ b/projects/plugins/videopress/readme.txt @@ -2,7 +2,7 @@ Contributors: automattic, retrofox, oskosk, thehenridev, renatoagds, lhkowalski, nunyvega, leogermani, cgastrell Tags: video, video-hosting, video-player, cdn, video-streaming -Requires at least: 6.4 +Requires at least: 6.5 Tested up to: 6.6 Stable tag: 1.5 Requires PHP: 7.0 diff --git a/projects/plugins/wpcomsh/changelog/update-minimum-wp-to-6.5 b/projects/plugins/wpcomsh/changelog/update-minimum-wp-to-6.5 new file mode 100644 index 0000000000000..324db53ba465c --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/update-minimum-wp-to-6.5 @@ -0,0 +1,4 @@ +Significance: major +Type: removed + +General: update WordPress version requirements to WordPress 6.5. diff --git a/projects/plugins/wpcomsh/composer.json b/projects/plugins/wpcomsh/composer.json index bb6cfde43b78a..8cfe487885c07 100644 --- a/projects/plugins/wpcomsh/composer.json +++ b/projects/plugins/wpcomsh/composer.json @@ -130,7 +130,7 @@ "composer/installers": true, "roots/wordpress-core-installer": true }, - "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_28_1_alpha" + "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ4_0_0_alpha" }, "extra": { "mirror-repo": "Automattic/wpcom-site-helper", diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index 2ebb9b0c94840..5a26333c83db5 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -3,7 +3,7 @@ "name": "@automattic/jetpack-wpcomsh", "description": "A helper for connecting WordPress.com sites to external host infrastructure.", "homepage": "https://jetpack.com", - "version": "3.28.1-alpha", + "version": "4.0.0-alpha", "bugs": { "url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh" }, diff --git a/projects/plugins/wpcomsh/readme.txt b/projects/plugins/wpcomsh/readme.txt index dbd9478d48f04..fe8982f76a15a 100644 --- a/projects/plugins/wpcomsh/readme.txt +++ b/projects/plugins/wpcomsh/readme.txt @@ -1,7 +1,7 @@ === WP.com Site Helper === Contributors: lamosty, obenland, automattic Tags: WP.com -Requires at least: 6.4 +Requires at least: 6.5 Requires PHP: 7.4 Tested up to: 6.6 Stable tag: trunk diff --git a/projects/plugins/wpcomsh/wpcomsh.php b/projects/plugins/wpcomsh/wpcomsh.php index deb1ac2c10458..570a93247a016 100644 --- a/projects/plugins/wpcomsh/wpcomsh.php +++ b/projects/plugins/wpcomsh/wpcomsh.php @@ -2,14 +2,14 @@ /** * Plugin Name: WordPress.com Site Helper * Description: A helper for connecting WordPress.com sites to external host infrastructure. - * Version: 3.28.1-alpha + * Version: 4.0.0-alpha * Author: Automattic * Author URI: http://automattic.com/ * * @package wpcomsh */ -define( 'WPCOMSH_VERSION', '3.28.1-alpha' ); +define( 'WPCOMSH_VERSION', '4.0.0-alpha' ); // If true, Typekit fonts will be available in addition to Google fonts add_filter( 'jetpack_fonts_enable_typekit', '__return_true' ); diff --git a/tools/cli/commands/generate.js b/tools/cli/commands/generate.js index ee24f703bfe8f..72d90ea8577f4 100644 --- a/tools/cli/commands/generate.js +++ b/tools/cli/commands/generate.js @@ -956,7 +956,7 @@ function createReadMeTxt( answers ) { `=== Jetpack ${ answers.name } ===\n` + 'Contributors: automattic,\n' + 'Tags: jetpack, stuff\n' + - 'Requires at least: 6.4\n' + + 'Requires at least: 6.5\n' + 'Requires PHP: 7.0\n' + 'Tested up to: 6.6\n' + `Stable tag: ${ answers.version }\n` + From b4e1648cdbe3fcd4498dede1f0ebd2ffc6520948 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donncha=20=C3=93=20Caoimh?= <5656673+donnchawp@users.noreply.github.com> Date: Wed, 17 Jul 2024 17:42:46 +0100 Subject: [PATCH 157/254] Super cache: check that is_utf8_charset exists (#38383) * Check for is_utf8_charset, WP 6.6 bug * changelog --- .../changelog/super-cache-fix-is_utf8_charset-missing | 4 ++++ projects/plugins/super-cache/wp-cache-phase2.php | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 projects/plugins/super-cache/changelog/super-cache-fix-is_utf8_charset-missing diff --git a/projects/plugins/super-cache/changelog/super-cache-fix-is_utf8_charset-missing b/projects/plugins/super-cache/changelog/super-cache-fix-is_utf8_charset-missing new file mode 100644 index 0000000000000..83ebe922d6192 --- /dev/null +++ b/projects/plugins/super-cache/changelog/super-cache-fix-is_utf8_charset-missing @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +WP Super Cache: fixed problem with is_utf8_charset missing in WP 6.6 diff --git a/projects/plugins/super-cache/wp-cache-phase2.php b/projects/plugins/super-cache/wp-cache-phase2.php index 989072f06b28f..392d25bf258d0 100644 --- a/projects/plugins/super-cache/wp-cache-phase2.php +++ b/projects/plugins/super-cache/wp-cache-phase2.php @@ -265,7 +265,7 @@ function wp_cache_serve_cache_file() { } else { header( 'Cache-Control: max-age=3, must-revalidate' ); } - $size = function_exists( 'mb_strlen' ) ? mb_strlen( $cachefiledata, '8bit' ) : strlen( $cachefiledata ); + $size = ( function_exists( 'mb_strlen' ) && function_exists( 'is_utf8_charset' ) ) ? mb_strlen( $cachefiledata, '8bit' ) : strlen( $cachefiledata ); if ( $wp_cache_gzip_encoding ) { if ( isset( $wpsc_served_header ) && $wpsc_served_header ) { header( 'X-WP-Super-Cache: Served supercache gzip file from PHP' ); @@ -356,7 +356,7 @@ function wp_cache_serve_cache_file() { 6, FORCE_GZIP ); - $size = function_exists( 'mb_strlen' ) ? mb_strlen( $cache, '8bit' ) : strlen( $cache ); + $size = ( function_exists( 'mb_strlen' ) && function_exists( 'is_utf8_charset' ) ) ? mb_strlen( $cache, '8bit' ) : strlen( $cache ); wp_cache_debug( 'Sending Header: Content-Length: ' . $size ); header( 'Content-Length: ' . $size ); } @@ -2441,7 +2441,7 @@ function wp_cache_get_ob( &$buffer ) { wp_cache_debug( 'Gzipping dynamic buffer for display.', 5 ); wp_cache_add_to_buffer( $buffer, 'Compression = gzip' ); $gzdata = gzencode( $buffer, 6, FORCE_GZIP ); - $gzsize = function_exists( 'mb_strlen' ) ? mb_strlen( $gzdata, '8bit' ) : strlen( $gzdata ); + $gzsize = ( function_exists( 'mb_strlen' ) && function_exists( 'is_utf8_charset' ) ) ? mb_strlen( $gzdata, '8bit' ) : strlen( $gzdata ); } } else { if ( defined( 'WPSC_VARY_HEADER' ) ) { @@ -2460,7 +2460,7 @@ function wp_cache_get_ob( &$buffer ) { wp_cache_debug( 'Gzipping buffer.', 5 ); wp_cache_add_to_buffer( $buffer, 'Compression = gzip' ); $gzdata = gzencode( $buffer, 6, FORCE_GZIP ); - $gzsize = function_exists( 'mb_strlen' ) ? mb_strlen( $gzdata, '8bit' ) : strlen( $gzdata ); + $gzsize = ( function_exists( 'mb_strlen' ) && function_exists( 'is_utf8_charset' ) ) ? mb_strlen( $gzdata, '8bit' ) : strlen( $gzdata ); $wp_cache_meta['headers']['Content-Encoding'] = 'Content-Encoding: ' . $wp_cache_gzip_encoding; // Return uncompressed data & store compressed for later use From ebfa7d323cd6e440401488641b7830c5ac545cf3 Mon Sep 17 00:00:00 2001 From: arthur791004 Date: Thu, 18 Jul 2024 00:59:13 +0800 Subject: [PATCH 158/254] Admin Bar: Make it consistent between Calypso and WP Admin regardless of the value of Admin Interface Style (#38362) --- .../packages/jetpack-mu-wpcom/changelog/feat-unify-masterbar | 4 ++++ .../src/features/wpcom-admin-bar/wpcom-admin-bar.php | 4 +--- projects/packages/masterbar/changelog/feat-unify-masterbar | 4 ++++ projects/packages/masterbar/composer.json | 2 +- projects/packages/masterbar/package.json | 2 +- .../src/admin-color-schemes/class-admin-color-schemes.php | 2 +- .../masterbar/src/admin-menu/class-base-admin-menu.php | 4 ++-- projects/packages/masterbar/src/class-main.php | 4 ++-- projects/plugins/jetpack/changelog/feat-unify-masterbar | 5 +++++ projects/plugins/jetpack/composer.lock | 4 ++-- .../plugins/mu-wpcom-plugin/changelog/feat-unify-masterbar | 5 +++++ projects/plugins/mu-wpcom-plugin/composer.lock | 4 ++-- projects/plugins/wpcomsh/changelog/feat-unify-masterbar | 5 +++++ projects/plugins/wpcomsh/composer.lock | 4 ++-- 14 files changed, 37 insertions(+), 16 deletions(-) create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/feat-unify-masterbar create mode 100644 projects/packages/masterbar/changelog/feat-unify-masterbar create mode 100644 projects/plugins/jetpack/changelog/feat-unify-masterbar create mode 100644 projects/plugins/mu-wpcom-plugin/changelog/feat-unify-masterbar create mode 100644 projects/plugins/wpcomsh/changelog/feat-unify-masterbar diff --git a/projects/packages/jetpack-mu-wpcom/changelog/feat-unify-masterbar b/projects/packages/jetpack-mu-wpcom/changelog/feat-unify-masterbar new file mode 100644 index 0000000000000..d4b1a1df72511 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/feat-unify-masterbar @@ -0,0 +1,4 @@ +Significance: minor +Type: changed + +Admin Bar: Make it consistent between Calypso and WP Admin regardless of the value of Admin Interface Style diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php index 7edefbba95a1d..67034c150207c 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php @@ -9,9 +9,7 @@ use Automattic\Jetpack\Jetpack_Mu_Wpcom; -if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { - return; -} +define( 'WPCOM_ADMIN_BAR_UNIFICATION', true ); /** * Enqueue assets needed by the WordPress.com admin bar. diff --git a/projects/packages/masterbar/changelog/feat-unify-masterbar b/projects/packages/masterbar/changelog/feat-unify-masterbar new file mode 100644 index 0000000000000..d4b1a1df72511 --- /dev/null +++ b/projects/packages/masterbar/changelog/feat-unify-masterbar @@ -0,0 +1,4 @@ +Significance: minor +Type: changed + +Admin Bar: Make it consistent between Calypso and WP Admin regardless of the value of Admin Interface Style diff --git a/projects/packages/masterbar/composer.json b/projects/packages/masterbar/composer.json index 1fe51f0f329bd..e2cbf86669f9e 100644 --- a/projects/packages/masterbar/composer.json +++ b/projects/packages/masterbar/composer.json @@ -63,7 +63,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.3.x-dev" + "dev-trunk": "0.4.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-masterbar/compare/v${old}...v${new}" diff --git a/projects/packages/masterbar/package.json b/projects/packages/masterbar/package.json index 3ad06a70ef3c1..ab1c27242d3a0 100644 --- a/projects/packages/masterbar/package.json +++ b/projects/packages/masterbar/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-masterbar", - "version": "0.3.1", + "version": "0.4.0-alpha", "description": "The WordPress.com Toolbar feature replaces the default admin bar and offers quick links to the Reader, all your sites, your WordPress.com profile, and notifications.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/masterbar/#readme", "bugs": { diff --git a/projects/packages/masterbar/src/admin-color-schemes/class-admin-color-schemes.php b/projects/packages/masterbar/src/admin-color-schemes/class-admin-color-schemes.php index 5e3edd926a915..42a9c0f32fa78 100644 --- a/projects/packages/masterbar/src/admin-color-schemes/class-admin-color-schemes.php +++ b/projects/packages/masterbar/src/admin-color-schemes/class-admin-color-schemes.php @@ -32,7 +32,7 @@ public function __construct() { add_action( 'rest_api_init', array( $this, 'register_admin_color_meta' ) ); } - if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { // Classic sites. + if ( ( defined( 'WPCOM_ADMIN_BAR_UNIFICATION' ) && WPCOM_ADMIN_BAR_UNIFICATION ) || get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { // Classic sites. add_filter( 'css_do_concat', array( $this, 'disable_css_concat_for_color_schemes' ), 10, 2 ); add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_color_scheme_for_sidebar_notice' ) ); } else { // Default and self-hosted sites. diff --git a/projects/packages/masterbar/src/admin-menu/class-base-admin-menu.php b/projects/packages/masterbar/src/admin-menu/class-base-admin-menu.php index 2b638b8159073..0a82ee4ac89fa 100644 --- a/projects/packages/masterbar/src/admin-menu/class-base-admin-menu.php +++ b/projects/packages/masterbar/src/admin-menu/class-base-admin-menu.php @@ -276,8 +276,8 @@ public function enqueue_scripts() { ) ); - // Load nav unification styles when the user isn't using wp-admin interface style. - if ( ! $this->use_wp_admin_interface() ) { + // Load nav unification styles for the admin bar when the user isn't using wp-admin interface style. + if ( ! $this->use_wp_admin_interface() && ! ( defined( 'WPCOM_ADMIN_BAR_UNIFICATION' ) && WPCOM_ADMIN_BAR_UNIFICATION ) ) { Assets::register_script( 'jetpack-admin-nav-unification', $assets_base_path . 'admin-menu-nav-unification.js', diff --git a/projects/packages/masterbar/src/class-main.php b/projects/packages/masterbar/src/class-main.php index 078111fcb5d93..db738fc5f55a2 100644 --- a/projects/packages/masterbar/src/class-main.php +++ b/projects/packages/masterbar/src/class-main.php @@ -14,7 +14,7 @@ */ class Main { - const PACKAGE_VERSION = '0.3.1'; + const PACKAGE_VERSION = '0.4.0-alpha'; /** * Initializer. @@ -29,7 +29,7 @@ public static function init() { new Admin_Color_Schemes(); - if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { + if ( ( defined( 'WPCOM_ADMIN_BAR_UNIFICATION' ) && WPCOM_ADMIN_BAR_UNIFICATION ) || get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { return; } diff --git a/projects/plugins/jetpack/changelog/feat-unify-masterbar b/projects/plugins/jetpack/changelog/feat-unify-masterbar new file mode 100644 index 0000000000000..a1c1831fa1ef7 --- /dev/null +++ b/projects/plugins/jetpack/changelog/feat-unify-masterbar @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated composer.lock. + + diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index 9d153dcda4aa0..3eed656c37093 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -1661,7 +1661,7 @@ "dist": { "type": "path", "url": "../../packages/masterbar", - "reference": "6425113a40fc707923278fa64aeb59aac96f1c3e" + "reference": "7eb8932228fd440df85d5459043a7203adf08e35" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1689,7 +1689,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.3.x-dev" + "dev-trunk": "0.4.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-masterbar/compare/v${old}...v${new}" diff --git a/projects/plugins/mu-wpcom-plugin/changelog/feat-unify-masterbar b/projects/plugins/mu-wpcom-plugin/changelog/feat-unify-masterbar new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/mu-wpcom-plugin/changelog/feat-unify-masterbar @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/mu-wpcom-plugin/composer.lock b/projects/plugins/mu-wpcom-plugin/composer.lock index c91bb09395b7c..fe27908d1c6f7 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.lock +++ b/projects/plugins/mu-wpcom-plugin/composer.lock @@ -926,7 +926,7 @@ "dist": { "type": "path", "url": "../../packages/masterbar", - "reference": "6425113a40fc707923278fa64aeb59aac96f1c3e" + "reference": "7eb8932228fd440df85d5459043a7203adf08e35" }, "require": { "automattic/jetpack-assets": "@dev", @@ -954,7 +954,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.3.x-dev" + "dev-trunk": "0.4.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-masterbar/compare/v${old}...v${new}" diff --git a/projects/plugins/wpcomsh/changelog/feat-unify-masterbar b/projects/plugins/wpcomsh/changelog/feat-unify-masterbar new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/feat-unify-masterbar @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index ea894c030f6a4..cd77f47d65202 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -1063,7 +1063,7 @@ "dist": { "type": "path", "url": "../../packages/masterbar", - "reference": "6425113a40fc707923278fa64aeb59aac96f1c3e" + "reference": "7eb8932228fd440df85d5459043a7203adf08e35" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1091,7 +1091,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.3.x-dev" + "dev-trunk": "0.4.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-masterbar/compare/v${old}...v${new}" From 320f46b66680901727f517d2d0e52b47b5dda0d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donncha=20=C3=93=20Caoimh?= <5656673+donnchawp@users.noreply.github.com> Date: Wed, 17 Jul 2024 18:11:28 +0100 Subject: [PATCH 159/254] Changelog and readme.txt edits. (#38384) --- projects/plugins/super-cache/CHANGELOG.md | 8 ++++++++ .../changelog/super-cache-fix-is_utf8_charset-missing | 4 ---- .../super-cache/changelog/update-minimum-wp-to-6.5 | 4 ---- projects/plugins/super-cache/composer.json | 2 +- projects/plugins/super-cache/package.json | 2 +- projects/plugins/super-cache/readme.txt | 8 +++++--- projects/plugins/super-cache/wp-cache.php | 2 +- 7 files changed, 16 insertions(+), 14 deletions(-) delete mode 100644 projects/plugins/super-cache/changelog/super-cache-fix-is_utf8_charset-missing delete mode 100644 projects/plugins/super-cache/changelog/update-minimum-wp-to-6.5 diff --git a/projects/plugins/super-cache/CHANGELOG.md b/projects/plugins/super-cache/CHANGELOG.md index e0cdcde5e0ec1..22bcc1f332c5c 100644 --- a/projects/plugins/super-cache/CHANGELOG.md +++ b/projects/plugins/super-cache/CHANGELOG.md @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.12.4] - 2024-07-17 +### Removed +- General: update WordPress version requirements to WordPress 6.5. [#38382] + +### Fixed +- Fixed problem with is_utf8_charset missing in WP 6.6 [#38383] + ## [1.12.3] - 2024-07-10 ### Fixed - Don't delete the log viewer when doing garbage collection [#38276] @@ -757,6 +764,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Misc fixes +[1.12.4]: https://github.com/Automattic/wp-super-cache/compare/v1.12.3...v1.12.4 [1.12.3]: https://github.com/Automattic/wp-super-cache/compare/v1.12.2...v1.12.3 [1.12.2]: https://github.com/Automattic/wp-super-cache/compare/v1.12.1...v1.12.2 [1.12.1]: https://github.com/Automattic/wp-super-cache/compare/v1.12.0...v1.12.1 diff --git a/projects/plugins/super-cache/changelog/super-cache-fix-is_utf8_charset-missing b/projects/plugins/super-cache/changelog/super-cache-fix-is_utf8_charset-missing deleted file mode 100644 index 83ebe922d6192..0000000000000 --- a/projects/plugins/super-cache/changelog/super-cache-fix-is_utf8_charset-missing +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -WP Super Cache: fixed problem with is_utf8_charset missing in WP 6.6 diff --git a/projects/plugins/super-cache/changelog/update-minimum-wp-to-6.5 b/projects/plugins/super-cache/changelog/update-minimum-wp-to-6.5 deleted file mode 100644 index 324db53ba465c..0000000000000 --- a/projects/plugins/super-cache/changelog/update-minimum-wp-to-6.5 +++ /dev/null @@ -1,4 +0,0 @@ -Significance: major -Type: removed - -General: update WordPress version requirements to WordPress 6.5. diff --git a/projects/plugins/super-cache/composer.json b/projects/plugins/super-cache/composer.json index e11388a9a7205..5d67763b610ff 100644 --- a/projects/plugins/super-cache/composer.json +++ b/projects/plugins/super-cache/composer.json @@ -51,6 +51,6 @@ "wp-svn-autopublish": true }, "config": { - "autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ2_0_0_alpha" + "autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_4" } } diff --git a/projects/plugins/super-cache/package.json b/projects/plugins/super-cache/package.json index e0bcd6ccc7621..8ed695628f84f 100644 --- a/projects/plugins/super-cache/package.json +++ b/projects/plugins/super-cache/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-super-cache", - "version": "2.0.0-alpha", + "version": "1.12.4", "description": "A very fast caching engine for WordPress that produces static html files.", "homepage": "https://jetpack.com", "bugs": { diff --git a/projects/plugins/super-cache/readme.txt b/projects/plugins/super-cache/readme.txt index 3e98dcd91c9ee..c6dd882e926b7 100644 --- a/projects/plugins/super-cache/readme.txt +++ b/projects/plugins/super-cache/readme.txt @@ -268,10 +268,12 @@ Your theme is probably responsive which means it resizes the page to suit whatev == Changelog == -### 1.12.3 - 2024-07-10 +### 1.12.4 - 2024-07-17 +#### Removed +- General: update WordPress version requirements to WordPress 6.5. + #### Fixed -- Don't delete the log viewer when doing garbage collection -- Fix clearing the cache when scheduled posts are published +- Fixed problem with is_utf8_charset missing in WP 6.6 -------- diff --git a/projects/plugins/super-cache/wp-cache.php b/projects/plugins/super-cache/wp-cache.php index 55762222c5f01..41bfc5ff46f0b 100644 --- a/projects/plugins/super-cache/wp-cache.php +++ b/projects/plugins/super-cache/wp-cache.php @@ -3,7 +3,7 @@ * Plugin Name: WP Super Cache * Plugin URI: https://wordpress.org/plugins/wp-super-cache/ * Description: Very fast caching plugin for WordPress. - * Version: 2.0.0-alpha + * Version: 1.12.4 * Author: Automattic * Author URI: https://automattic.com/ * License: GPL2+ From 3c929a5ba0d5ae89ef3b4b61ec92eedf75d7fb91 Mon Sep 17 00:00:00 2001 From: Christian Gastrell Date: Wed, 17 Jul 2024 15:40:23 -0300 Subject: [PATCH 160/254] make dash item content align to top for consistency (#38371) --- projects/plugins/jetpack/_inc/client/at-a-glance/style.scss | 5 +++++ .../changelog/fix-jetpack-dashboard-dash-item-alignment | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 projects/plugins/jetpack/changelog/fix-jetpack-dashboard-dash-item-alignment diff --git a/projects/plugins/jetpack/_inc/client/at-a-glance/style.scss b/projects/plugins/jetpack/_inc/client/at-a-glance/style.scss index c838f80baf82c..c02e78ef720a4 100644 --- a/projects/plugins/jetpack/_inc/client/at-a-glance/style.scss +++ b/projects/plugins/jetpack/_inc/client/at-a-glance/style.scss @@ -405,6 +405,11 @@ .jp-dash-item { .dops-card { flex-grow: 1; + align-items: flex-start; + + &.dops-section-header { + align-items: center + } } .dops-card.is-compact { flex-grow: 0; diff --git a/projects/plugins/jetpack/changelog/fix-jetpack-dashboard-dash-item-alignment b/projects/plugins/jetpack/changelog/fix-jetpack-dashboard-dash-item-alignment new file mode 100644 index 0000000000000..eb72a2738de0f --- /dev/null +++ b/projects/plugins/jetpack/changelog/fix-jetpack-dashboard-dash-item-alignment @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +Jetpack Dashboard: use flex-start alignment for dash item cards for more consistent header-content spacing From d88fc410325e13ed3e164f20661bc83594d05609 Mon Sep 17 00:00:00 2001 From: Gabriel Demichelis Date: Wed, 17 Jul 2024 17:00:32 -0300 Subject: [PATCH 161/254] =?UTF-8?q?Revert=20"Admin=20Bar:=20Make=20it=20co?= =?UTF-8?q?nsistent=20between=20Calypso=20and=20WP=20Admin=20regardless?= =?UTF-8?q?=E2=80=A6"=20(#38389)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit ebfa7d323cd6e440401488641b7830c5ac545cf3. --- .../packages/jetpack-mu-wpcom/changelog/feat-unify-masterbar | 4 ---- .../src/features/wpcom-admin-bar/wpcom-admin-bar.php | 4 +++- projects/packages/masterbar/changelog/feat-unify-masterbar | 4 ---- projects/packages/masterbar/composer.json | 2 +- projects/packages/masterbar/package.json | 2 +- .../src/admin-color-schemes/class-admin-color-schemes.php | 2 +- .../masterbar/src/admin-menu/class-base-admin-menu.php | 4 ++-- projects/packages/masterbar/src/class-main.php | 4 ++-- projects/plugins/jetpack/changelog/feat-unify-masterbar | 5 ----- projects/plugins/jetpack/composer.lock | 4 ++-- .../plugins/mu-wpcom-plugin/changelog/feat-unify-masterbar | 5 ----- projects/plugins/mu-wpcom-plugin/composer.lock | 4 ++-- projects/plugins/wpcomsh/changelog/feat-unify-masterbar | 5 ----- projects/plugins/wpcomsh/composer.lock | 4 ++-- 14 files changed, 16 insertions(+), 37 deletions(-) delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/feat-unify-masterbar delete mode 100644 projects/packages/masterbar/changelog/feat-unify-masterbar delete mode 100644 projects/plugins/jetpack/changelog/feat-unify-masterbar delete mode 100644 projects/plugins/mu-wpcom-plugin/changelog/feat-unify-masterbar delete mode 100644 projects/plugins/wpcomsh/changelog/feat-unify-masterbar diff --git a/projects/packages/jetpack-mu-wpcom/changelog/feat-unify-masterbar b/projects/packages/jetpack-mu-wpcom/changelog/feat-unify-masterbar deleted file mode 100644 index d4b1a1df72511..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/feat-unify-masterbar +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: changed - -Admin Bar: Make it consistent between Calypso and WP Admin regardless of the value of Admin Interface Style diff --git a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php index 67034c150207c..7edefbba95a1d 100644 --- a/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php +++ b/projects/packages/jetpack-mu-wpcom/src/features/wpcom-admin-bar/wpcom-admin-bar.php @@ -9,7 +9,9 @@ use Automattic\Jetpack\Jetpack_Mu_Wpcom; -define( 'WPCOM_ADMIN_BAR_UNIFICATION', true ); +if ( get_option( 'wpcom_admin_interface' ) !== 'wp-admin' ) { + return; +} /** * Enqueue assets needed by the WordPress.com admin bar. diff --git a/projects/packages/masterbar/changelog/feat-unify-masterbar b/projects/packages/masterbar/changelog/feat-unify-masterbar deleted file mode 100644 index d4b1a1df72511..0000000000000 --- a/projects/packages/masterbar/changelog/feat-unify-masterbar +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: changed - -Admin Bar: Make it consistent between Calypso and WP Admin regardless of the value of Admin Interface Style diff --git a/projects/packages/masterbar/composer.json b/projects/packages/masterbar/composer.json index e2cbf86669f9e..1fe51f0f329bd 100644 --- a/projects/packages/masterbar/composer.json +++ b/projects/packages/masterbar/composer.json @@ -63,7 +63,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.4.x-dev" + "dev-trunk": "0.3.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-masterbar/compare/v${old}...v${new}" diff --git a/projects/packages/masterbar/package.json b/projects/packages/masterbar/package.json index ab1c27242d3a0..3ad06a70ef3c1 100644 --- a/projects/packages/masterbar/package.json +++ b/projects/packages/masterbar/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-masterbar", - "version": "0.4.0-alpha", + "version": "0.3.1", "description": "The WordPress.com Toolbar feature replaces the default admin bar and offers quick links to the Reader, all your sites, your WordPress.com profile, and notifications.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/masterbar/#readme", "bugs": { diff --git a/projects/packages/masterbar/src/admin-color-schemes/class-admin-color-schemes.php b/projects/packages/masterbar/src/admin-color-schemes/class-admin-color-schemes.php index 42a9c0f32fa78..5e3edd926a915 100644 --- a/projects/packages/masterbar/src/admin-color-schemes/class-admin-color-schemes.php +++ b/projects/packages/masterbar/src/admin-color-schemes/class-admin-color-schemes.php @@ -32,7 +32,7 @@ public function __construct() { add_action( 'rest_api_init', array( $this, 'register_admin_color_meta' ) ); } - if ( ( defined( 'WPCOM_ADMIN_BAR_UNIFICATION' ) && WPCOM_ADMIN_BAR_UNIFICATION ) || get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { // Classic sites. + if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { // Classic sites. add_filter( 'css_do_concat', array( $this, 'disable_css_concat_for_color_schemes' ), 10, 2 ); add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_color_scheme_for_sidebar_notice' ) ); } else { // Default and self-hosted sites. diff --git a/projects/packages/masterbar/src/admin-menu/class-base-admin-menu.php b/projects/packages/masterbar/src/admin-menu/class-base-admin-menu.php index 0a82ee4ac89fa..2b638b8159073 100644 --- a/projects/packages/masterbar/src/admin-menu/class-base-admin-menu.php +++ b/projects/packages/masterbar/src/admin-menu/class-base-admin-menu.php @@ -276,8 +276,8 @@ public function enqueue_scripts() { ) ); - // Load nav unification styles for the admin bar when the user isn't using wp-admin interface style. - if ( ! $this->use_wp_admin_interface() && ! ( defined( 'WPCOM_ADMIN_BAR_UNIFICATION' ) && WPCOM_ADMIN_BAR_UNIFICATION ) ) { + // Load nav unification styles when the user isn't using wp-admin interface style. + if ( ! $this->use_wp_admin_interface() ) { Assets::register_script( 'jetpack-admin-nav-unification', $assets_base_path . 'admin-menu-nav-unification.js', diff --git a/projects/packages/masterbar/src/class-main.php b/projects/packages/masterbar/src/class-main.php index db738fc5f55a2..078111fcb5d93 100644 --- a/projects/packages/masterbar/src/class-main.php +++ b/projects/packages/masterbar/src/class-main.php @@ -14,7 +14,7 @@ */ class Main { - const PACKAGE_VERSION = '0.4.0-alpha'; + const PACKAGE_VERSION = '0.3.1'; /** * Initializer. @@ -29,7 +29,7 @@ public static function init() { new Admin_Color_Schemes(); - if ( ( defined( 'WPCOM_ADMIN_BAR_UNIFICATION' ) && WPCOM_ADMIN_BAR_UNIFICATION ) || get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { + if ( get_option( 'wpcom_admin_interface' ) === 'wp-admin' ) { return; } diff --git a/projects/plugins/jetpack/changelog/feat-unify-masterbar b/projects/plugins/jetpack/changelog/feat-unify-masterbar deleted file mode 100644 index a1c1831fa1ef7..0000000000000 --- a/projects/plugins/jetpack/changelog/feat-unify-masterbar +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: other -Comment: Updated composer.lock. - - diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index 3eed656c37093..9d153dcda4aa0 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -1661,7 +1661,7 @@ "dist": { "type": "path", "url": "../../packages/masterbar", - "reference": "7eb8932228fd440df85d5459043a7203adf08e35" + "reference": "6425113a40fc707923278fa64aeb59aac96f1c3e" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1689,7 +1689,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.4.x-dev" + "dev-trunk": "0.3.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-masterbar/compare/v${old}...v${new}" diff --git a/projects/plugins/mu-wpcom-plugin/changelog/feat-unify-masterbar b/projects/plugins/mu-wpcom-plugin/changelog/feat-unify-masterbar deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/mu-wpcom-plugin/changelog/feat-unify-masterbar +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/mu-wpcom-plugin/composer.lock b/projects/plugins/mu-wpcom-plugin/composer.lock index fe27908d1c6f7..c91bb09395b7c 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.lock +++ b/projects/plugins/mu-wpcom-plugin/composer.lock @@ -926,7 +926,7 @@ "dist": { "type": "path", "url": "../../packages/masterbar", - "reference": "7eb8932228fd440df85d5459043a7203adf08e35" + "reference": "6425113a40fc707923278fa64aeb59aac96f1c3e" }, "require": { "automattic/jetpack-assets": "@dev", @@ -954,7 +954,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.4.x-dev" + "dev-trunk": "0.3.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-masterbar/compare/v${old}...v${new}" diff --git a/projects/plugins/wpcomsh/changelog/feat-unify-masterbar b/projects/plugins/wpcomsh/changelog/feat-unify-masterbar deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/wpcomsh/changelog/feat-unify-masterbar +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index cd77f47d65202..ea894c030f6a4 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -1063,7 +1063,7 @@ "dist": { "type": "path", "url": "../../packages/masterbar", - "reference": "7eb8932228fd440df85d5459043a7203adf08e35" + "reference": "6425113a40fc707923278fa64aeb59aac96f1c3e" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1091,7 +1091,7 @@ "extra": { "autotagger": true, "branch-alias": { - "dev-trunk": "0.4.x-dev" + "dev-trunk": "0.3.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-masterbar/compare/v${old}...v${new}" From e9e60462f8906c097433a4e8dc14b7cee89333ea Mon Sep 17 00:00:00 2001 From: Renato Augusto Gama dos Santos Date: Wed, 17 Jul 2024 17:18:57 -0300 Subject: [PATCH 162/254] AI Proofread: Get and apply suggestions (#38344) * AI Proofread: Get suggestions * AI Proofread: Comment unused feature * AI Proofread: Set suggestions and layout for it * changelog * AI Proofread: Set suggestion * AI Proofread: Pass revisedText on fixes * AI Proofread: Put on initial stable version * AI Proofread: Stable suggestions * AI Client: Bump version * AI Proofread: Use Button and set extension as true on tables * AI Proofread: Update request type map * AI Proofread: Remove offset from Popover * AI Proofread: MD5 correct text * fix types * only apply fixes to specific blocks * fix table fix * remove comments * do not update the anchor if popover is already on hover state * AI Proofread: Improve unique store of suggestions --------- Co-authored-by: Douglas --- pnpm-lock.yaml | 8 + .../changelog/update-ask-question-sync | 4 + projects/js-packages/ai-client/package.json | 2 +- .../ai-client/src/ask-question/sync.ts | 49 +++-- .../src/hooks/use-image-generator/index.ts | 2 +- projects/js-packages/ai-client/src/index.ts | 1 + .../js-packages/ai-client/src/libs/index.ts | 1 + .../ai-client/src/libs/markdown/index.ts | 4 +- .../src/libs/markdown/markdown-to-html.ts | 23 ++- .../changelog/add-proofread-get-suggestions | 4 + .../breve/features/complex-words/index.ts | 2 + .../components/breve/features/events.ts | 12 +- .../components/breve/features/index.ts | 3 +- .../components/breve/highlight/highlight.ts | 25 +-- .../components/breve/highlight/index.tsx | 170 ++++++++++++++---- .../components/breve/highlight/style.scss | 36 +++- .../components/breve/store/actions.ts | 67 +++++++ .../components/breve/store/reducer.ts | 59 +++++- .../components/breve/store/selectors.ts | 14 ++ .../components/breve/types.ts | 40 +++++ .../breve/utils/getRequestMessages.js | 38 ---- .../breve/utils/getRequestMessages.ts | 36 ++++ projects/plugins/jetpack/package.json | 1 + 23 files changed, 474 insertions(+), 127 deletions(-) create mode 100644 projects/js-packages/ai-client/changelog/update-ask-question-sync create mode 100644 projects/plugins/jetpack/changelog/add-proofread-get-suggestions delete mode 100644 projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getRequestMessages.js create mode 100644 projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getRequestMessages.ts diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 51ffa2b2d383e..89ec5a814eaeb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3733,6 +3733,9 @@ importers: copy-webpack-plugin: specifier: 11.0.0 version: 11.0.0(webpack@5.76.0(webpack-cli@4.9.1)) + crypto-js: + specifier: 4.2.0 + version: 4.2.0 debug: specifier: 4.3.4 version: 4.3.4 @@ -8994,6 +8997,9 @@ packages: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} + crypto-js@4.2.0: + resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} + crypto-random-string@2.0.0: resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} engines: {node: '>=8'} @@ -21404,6 +21410,8 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 + crypto-js@4.2.0: {} + crypto-random-string@2.0.0: {} crypto-random-string@4.0.0: diff --git a/projects/js-packages/ai-client/changelog/update-ask-question-sync b/projects/js-packages/ai-client/changelog/update-ask-question-sync new file mode 100644 index 0000000000000..9f2ba30a1ee14 --- /dev/null +++ b/projects/js-packages/ai-client/changelog/update-ask-question-sync @@ -0,0 +1,4 @@ +Significance: minor +Type: changed + +Update and export askQuestionSync diff --git a/projects/js-packages/ai-client/package.json b/projects/js-packages/ai-client/package.json index f590d520dd38f..fb709a3455184 100644 --- a/projects/js-packages/ai-client/package.json +++ b/projects/js-packages/ai-client/package.json @@ -1,7 +1,7 @@ { "private": false, "name": "@automattic/jetpack-ai-client", - "version": "0.14.6", + "version": "0.15.0-alpha", "description": "A JS client for consuming Jetpack AI services", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/ai-client/#readme", "bugs": { diff --git a/projects/js-packages/ai-client/src/ask-question/sync.ts b/projects/js-packages/ai-client/src/ask-question/sync.ts index 62c54718d38bb..4bbbd7f571d6d 100644 --- a/projects/js-packages/ai-client/src/ask-question/sync.ts +++ b/projects/js-packages/ai-client/src/ask-question/sync.ts @@ -12,13 +12,7 @@ import type { PromptProp } from '../types.js'; /** * The response data from the AI assistant when doing a sync, not-streamed question. */ -export type ResponseData = { - choices: Array< { - message: { - content: string; - }; - } >; -}; +export type ResponseData = string; const debug = debugFactory( 'jetpack-ai-client:ask-question-sync' ); @@ -41,13 +35,9 @@ const debug = debugFactory( 'jetpack-ai-client:ask-question-sync' ); */ export default async function askQuestionSync( question: PromptProp, - { postId = null, feature, model }: AskQuestionOptionsArgProps = {} + options: AskQuestionOptionsArgProps = {} ): Promise< ResponseData > { - debug( 'Asking question with no streaming: %o. options: %o', question, { - postId, - feature, - model, - } ); + debug( 'Asking question with no streaming: %o. options: %o', question, options ); /** * The URL to the AI assistant query endpoint. @@ -63,12 +53,12 @@ export default async function askQuestionSync( return Promise.reject( error ); } + const messages = Array.isArray( question ) ? { messages: question } : { question: question }; + const body = { - question: question, + ...messages, + ...options, stream: false, - postId, - feature, - model, }; const headers = { @@ -76,16 +66,21 @@ export default async function askQuestionSync( 'Content-Type': 'application/json', }; - const data = await fetch( URL, { - method: 'POST', - headers, - body: JSON.stringify( body ), - } ).then( response => response.json() ); + try { + const data = await fetch( URL, { + method: 'POST', + headers, + body: JSON.stringify( body ), + } ).then( response => response.json() ); - if ( data?.data?.status && data?.data?.status > 200 ) { - debug( 'Error generating prompt: %o', data ); - return Promise.reject( data ); - } + if ( data?.data?.status && data?.data?.status > 200 ) { + debug( 'Error generating prompt: %o', data ); + return Promise.reject( data ); + } - return data as ResponseData; + return data.choices?.[ 0 ]?.message?.content as string; + } catch ( error ) { + debug( 'Error asking question: %o', error ); + return Promise.reject( error ); + } } diff --git a/projects/js-packages/ai-client/src/hooks/use-image-generator/index.ts b/projects/js-packages/ai-client/src/hooks/use-image-generator/index.ts index e39e8eab1d111..b5fee88814e53 100644 --- a/projects/js-packages/ai-client/src/hooks/use-image-generator/index.ts +++ b/projects/js-packages/ai-client/src/hooks/use-image-generator/index.ts @@ -150,7 +150,7 @@ const getStableDiffusionImageGenerationPrompt = async ( */ const data = await askQuestionSync( prompt, { feature } ); - return data.choices?.[ 0 ]?.message?.content; + return data; }; const useImageGenerator = () => { diff --git a/projects/js-packages/ai-client/src/index.ts b/projects/js-packages/ai-client/src/index.ts index b92dafb6040c3..c3325f1919c93 100644 --- a/projects/js-packages/ai-client/src/index.ts +++ b/projects/js-packages/ai-client/src/index.ts @@ -4,6 +4,7 @@ export { default as requestJwt } from './jwt/index.js'; export { default as SuggestionsEventSource } from './suggestions-event-source/index.js'; export { default as askQuestion } from './ask-question/index.js'; +export { default as askQuestionSync } from './ask-question/sync.js'; export { default as transcribeAudio } from './audio-transcription/index.js'; /* diff --git a/projects/js-packages/ai-client/src/libs/index.ts b/projects/js-packages/ai-client/src/libs/index.ts index 31f354e87d07f..a73828a0c8853 100644 --- a/projects/js-packages/ai-client/src/libs/index.ts +++ b/projects/js-packages/ai-client/src/libs/index.ts @@ -3,6 +3,7 @@ export { HTMLToMarkdown, renderHTMLFromMarkdown, renderMarkdownFromHTML, + fixes, } from './markdown/index.js'; export type { RenderHTMLRules } from './markdown/index.js'; diff --git a/projects/js-packages/ai-client/src/libs/markdown/index.ts b/projects/js-packages/ai-client/src/libs/markdown/index.ts index d0a811f4e3507..024123327ca9f 100644 --- a/projects/js-packages/ai-client/src/libs/markdown/index.ts +++ b/projects/js-packages/ai-client/src/libs/markdown/index.ts @@ -2,7 +2,7 @@ * Internal dependencies */ import HTMLToMarkdown from './html-to-markdown.js'; -import MarkdownToHTML from './markdown-to-html.js'; +import MarkdownToHTML, { fixes } from './markdown-to-html.js'; /** * Types */ @@ -29,4 +29,4 @@ const renderMarkdownFromHTML = ( { content }: { content: string } ) => { return defaultHTMLConverter.render( { content } ); }; -export { MarkdownToHTML, HTMLToMarkdown, renderHTMLFromMarkdown, renderMarkdownFromHTML }; +export { MarkdownToHTML, HTMLToMarkdown, renderHTMLFromMarkdown, renderMarkdownFromHTML, fixes }; diff --git a/projects/js-packages/ai-client/src/libs/markdown/markdown-to-html.ts b/projects/js-packages/ai-client/src/libs/markdown/markdown-to-html.ts index c1e07e9969406..54924cbce4ff6 100644 --- a/projects/js-packages/ai-client/src/libs/markdown/markdown-to-html.ts +++ b/projects/js-packages/ai-client/src/libs/markdown/markdown-to-html.ts @@ -7,7 +7,7 @@ import MarkdownIt from 'markdown-it'; */ import type { Options } from 'markdown-it'; -export type Fix = 'list' | 'paragraph' | 'listItem'; +export type Fix = 'list' | 'paragraph' | 'listItem' | 'table'; const addListComments = ( content: string ) => { return ( @@ -30,9 +30,13 @@ const addListComments = ( content: string ) => { }; type Fixes = { - [ key in Fix ]: ( content: string, extension?: boolean ) => string; + [ key in Fix ]: ( + content: string, + extension?: boolean, + options?: { [ key: string ]: unknown } + ) => string; }; -const fixes: Fixes = { +export const fixes: Fixes = { list: ( content: string, extension = false ) => { // Fix list indentation const fixedIndentation = content @@ -61,6 +65,19 @@ const fixes: Fixes = { // Fix encoding of
      tags return content.replaceAll( /\s*<br \/>\s*/g, '
      ' ); }, + table: ( content: string, extension = false, { hasFixedLayout = false } ) => { + if ( ! extension ) { + return content; + } + + if ( content.startsWith( '${ content }`; + }, }; const defaultMarkdownItOptions: Options = { diff --git a/projects/plugins/jetpack/changelog/add-proofread-get-suggestions b/projects/plugins/jetpack/changelog/add-proofread-get-suggestions new file mode 100644 index 0000000000000..7ac6584a824c6 --- /dev/null +++ b/projects/plugins/jetpack/changelog/add-proofread-get-suggestions @@ -0,0 +1,4 @@ +Significance: minor +Type: other + +Add suggestions handling on AI Proofread diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts index 83b509c14bcee..fdb9f8d6818ea 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/complex-words/index.ts @@ -8,6 +8,8 @@ import phrases from './phrases'; */ import type { BreveFeatureConfig, HighlightedText } from '../../types'; +export const dictionary = phrases; + export const COMPLEX_WORDS: BreveFeatureConfig = { name: 'complex-words', title: 'Complex words', diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts index 143891bd085fd..0fca5868ecc19 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/events.ts @@ -1,7 +1,7 @@ /** * External dependencies */ -import { dispatch } from '@wordpress/data'; +import { dispatch, select } from '@wordpress/data'; /** * Internal dependencies */ @@ -10,7 +10,7 @@ import features from './index'; /** * Types */ -import type { BreveDispatch, Anchor } from '../types'; +import type { BreveDispatch, Anchor, BreveSelect } from '../types'; let highlightTimeout: number; let anchorTimeout: number; @@ -19,7 +19,15 @@ function handleMouseEnter( e: MouseEvent ) { clearTimeout( highlightTimeout ); clearTimeout( anchorTimeout ); + const breveSelect = select( 'jetpack/ai-breve' ) as BreveSelect; + anchorTimeout = setTimeout( () => { + const isPopoverHover = breveSelect.isPopoverHover(); + + if ( isPopoverHover ) { + return; + } + const el = e.target as HTMLElement; let virtual = el; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts index a5a700d0c2f9b..d3482c8b75fc2 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/features/index.ts @@ -2,7 +2,7 @@ * Features */ import ambiguousWords, { AMBIGUOUS_WORDS } from './ambiguous-words'; -import complexWords, { COMPLEX_WORDS } from './complex-words'; +import complexWords, { COMPLEX_WORDS, dictionary as dicComplex } from './complex-words'; import longSentences, { LONG_SENTENCES } from './long-sentences'; /** * Types @@ -14,6 +14,7 @@ const features: Array< BreveFeature > = [ { config: COMPLEX_WORDS, highlight: complexWords, + dictionary: dicComplex, }, { config: LONG_SENTENCES, diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts index eff3dba14211a..ce1a2060f71d7 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/highlight.ts @@ -2,15 +2,17 @@ * External dependencies */ import { applyFormat } from '@wordpress/rich-text'; +import md5 from 'crypto-js/md5'; /** * Types */ +import type { HighlightedText } from '../types'; import type { RichTextFormat, RichTextValue } from '@wordpress/rich-text/build-types/types'; export type HighlightProps = { content: RichTextValue; type: string; - indexes: Array< { startIndex: number; endIndex: number } >; + indexes: Array< HighlightedText >; attributes?: { [ key: string ]: string }; }; @@ -23,20 +25,21 @@ const applyHighlightFormat = ( { let newContent = content; if ( indexes.length > 0 ) { - newContent = indexes.reduce( - ( - acc: RichTextValue, - { startIndex, endIndex }: { startIndex: number; endIndex: number } - ) => { + newContent = indexes + .map( highlightedText => { + const { startIndex, endIndex, text } = highlightedText; + return { start: startIndex, end: endIndex, text } as RichTextValue; + } ) + .reduce( ( acc: RichTextValue, { start, end, text }: RichTextValue ) => { + const currentAttr = { ...attributes, 'data-id': md5( `${ text }-${ start }-${ end }` ) }; + const format = { type, - attributes, + attributes: currentAttr, } as RichTextFormat; - return applyFormat( acc, format, startIndex, endIndex ); - }, - content - ); + return applyFormat( acc, format, start, end ); + }, content ); } return newContent; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx index 07942dc3f2da9..ff535af40ea5d 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/index.tsx @@ -1,10 +1,13 @@ /** * External dependencies */ -import { Button, Popover } from '@wordpress/components'; +import { fixes } from '@automattic/jetpack-ai-client'; +import { rawHandler } from '@wordpress/blocks'; +import { Button, Popover, Spinner } from '@wordpress/components'; import { select as globalSelect, useDispatch, useSelect } from '@wordpress/data'; import { __ } from '@wordpress/i18n'; import { registerFormatType, removeFormat, RichTextValue } from '@wordpress/rich-text'; +import clsx from 'clsx'; import React from 'react'; /** * Internal dependencies @@ -18,41 +21,77 @@ import './style.scss'; * Types */ import type { BreveDispatch, BreveSelect } from '../types'; +import type { Block } from '@automattic/jetpack-ai-client'; import type { WPFormat } from '@wordpress/rich-text/build-types/register-format-type'; import type { RichTextFormatList } from '@wordpress/rich-text/build-types/types'; +type CoreBlockEditorSelect = { + getBlock: ( clientId: string ) => Block; +}; + // Setup the Breve highlights export default function Highlight() { - const { setPopoverHover } = useDispatch( 'jetpack/ai-breve' ) as BreveDispatch; + const { setPopoverHover, setSuggestions } = useDispatch( 'jetpack/ai-breve' ) as BreveDispatch; + const { updateBlockAttributes } = useDispatch( 'core/block-editor' ); + const { getBlock } = useSelect( select => { + const selector = select( 'core/block-editor' ) as CoreBlockEditorSelect; - const popoverOpen = useSelect( select => { - const store = select( 'jetpack/ai-breve' ) as BreveSelect; - const isPopoverHover = store.isPopoverHover(); - const isHighlightHover = store.isHighlightHover(); - return isHighlightHover || isPopoverHover; + return { getBlock: selector.getBlock }; }, [] ); - const { target: anchor, virtual } = useSelect( select => { - return ( - ( select( 'jetpack/ai-breve' ) as BreveSelect ).getPopoverAnchor() ?? { + const { anchor, virtual, popoverOpen, id, feature, blockId, title, loading, suggestions } = + useSelect( select => { + const breveSelect = select( 'jetpack/ai-breve' ) as BreveSelect; + + // Popover + const isPopoverHover = breveSelect.isPopoverHover(); + const isHighlightHover = breveSelect.isHighlightHover(); + + // Anchor data + const { target: anchorEl, virtual: virtualEl } = breveSelect.getPopoverAnchor() ?? { target: null, virtual: null, - } - ); - }, [] ); + }; + const anchorFeature = anchorEl?.getAttribute?.( 'data-type' ) as string; + const anchorId = anchorEl?.getAttribute?.( 'data-id' ) as string; + const anchorBlockId = anchorEl?.getAttribute?.( 'data-block' ) as string; + + const config = features?.find?.( ftr => ftr.config.name === anchorFeature )?.config ?? { + name: '', + title: '', + }; + + // Suggestions + const loadingSuggestions = breveSelect.getSuggestionsLoading( { + feature: anchorFeature, + id: anchorId, + blockId: anchorBlockId, + } ); + + const suggestionsData = breveSelect.getSuggestions( { + feature: anchorFeature, + id: anchorId, + blockId: anchorBlockId, + } ); + + return { + config, + anchor: anchorEl, + virtual: virtualEl, + title: config?.title, + feature: anchorFeature, + id: anchorId, + blockId: anchorBlockId, + popoverOpen: isHighlightHover || isPopoverHover, + loading: loadingSuggestions, + suggestions: suggestionsData, + }; + }, [] ); const isPopoverOpen = popoverOpen && virtual; + const hasSuggestions = Boolean( suggestions?.suggestion ); - const selectedFeatured = anchor ? ( anchor as HTMLElement )?.getAttribute?.( 'data-type' ) : null; - - const featureConfig = features?.find?.( feature => feature.config.name === selectedFeatured ) - ?.config ?? { - name: '', - title: '', - }; - - const handleMouseEnter = ( e: React.MouseEvent ) => { - e.stopPropagation(); + const handleMouseEnter = () => { setPopoverHover( true ); }; @@ -61,6 +100,43 @@ export default function Highlight() { setPopoverHover( false ); }; + const handleSuggestions = () => { + const target = ( anchor as HTMLElement )?.innerText; + const sentence = ( anchor as HTMLElement )?.parentElement?.innerText as string; + + setSuggestions( { + id, + target, + feature, + sentence, + blockId, + } ); + }; + + const handleApplySuggestion = () => { + const block = getBlock( blockId ); + + if ( ! block ) { + return; + } + + let render = suggestions?.html; + + // Apply known fixes for table and list-item blocks + if ( block.name === 'core/table' ) { + render = fixes.table( suggestions?.html, true, { + hasFixedLayout: block.attributes?.hasFixedLayout, + } ); + } + + if ( block.name === 'core/list-item' ) { + render = fixes.listItem( suggestions?.html, true ); + } + + const [ newBlock ] = rawHandler( { HTML: render } ); + updateBlockAttributes( blockId, newBlock.attributes ); + }; + return ( <> { isPopoverOpen && ( @@ -68,21 +144,43 @@ export default function Highlight() { anchor={ virtual } placement="bottom" className="highlight-popover" - offset={ 2 } variant="tooltip" animate={ false } focusOnMount={ false } onMouseEnter={ handleMouseEnter } onMouseLeave={ handleMouseLeave } > -
      +
      -
      -
      { featureConfig?.title }
      -
      -
      - +
      +
      { title }
      + { hasSuggestions ? ( +
      + +
      + { __( 'Click on a suggestion to insert it.', 'jetpack' ) } +
      +
      + ) : ( +
      + { loading ? ( +
      + +
      + ) : ( + + ) } +
      + ) }
      ) } @@ -114,18 +212,24 @@ export function registerBreveHighlights() { }, __experimentalCreatePrepareEditableTree( { isProofreadEnabled, isFeatureEnabled }, - { blockClientId } + { blockClientId, richTextIdentifier } ) { return ( formats: Array< RichTextFormatList >, text: string ) => { const record = { formats, text } as RichTextValue; const type = formatName; if ( text && isProofreadEnabled && isFeatureEnabled ) { + const highlights = featureHighlight( text ); + const applied = highlight( { content: record, type, - indexes: featureHighlight( record.text ), - attributes: { 'data-type': config.name }, + indexes: highlights, + attributes: { + 'data-type': config.name, + 'data-identifier': richTextIdentifier ?? 'none', + 'data-block': blockClientId, + }, } ); setTimeout( () => { diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss index 5bebebabd2e20..907b6055a74a2 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/highlight/style.scss @@ -20,6 +20,18 @@ justify-content: space-between; gap: 32px; + &.has-suggestions { + align-items: flex-start; + flex-direction: column; + padding-top: 8px; + gap: 8px; + } + + .title, + .action { + padding: 8px 12px; + } + .title { display: flex; align-items: center; @@ -27,6 +39,7 @@ gap: 8px; font-size: 14px; font-weight: 500; + white-space: nowrap; .color { width: 24px; @@ -55,13 +68,22 @@ fill: #0277a8; } } - } - & div.components-popover__content { - align-items: center; - column-gap: 12px; - display: flex; - padding: 8px 12px; - white-space: nowrap; + .suggestion-container { + display: flex; + flex-direction: column; + border-top: 1px solid #dcdcde; + + .helper { + padding: 8px; + background-color: #f6f7f7; + white-space: nowrap; + color: #646970; + } + + .components-button.is-tertiary { + color: #000000; + } + } } } diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts index c03a1cf98a8d0..8afc706d24f7f 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/actions.ts @@ -1,7 +1,9 @@ /** * External dependencies */ +import { askQuestionSync } from '@automattic/jetpack-ai-client'; import { select } from '@wordpress/data'; +import { getRequestMessages } from '../utils/getRequestMessages'; // ACTIONS @@ -45,3 +47,68 @@ export function toggleFeature( feature: string, force?: boolean ) { feature, }; } + +export function setSuggestions( { + id, + feature, + target, + sentence, + blockId, +}: { + id: string; + feature: string; + target: string; + sentence: string; + blockId: string; +} ) { + return ( { dispatch } ) => { + dispatch( { + type: 'SET_SUGGESTIONS_LOADING', + id, + feature, + blockId, + loading: true, + } ); + + askQuestionSync( + getRequestMessages( { + feature, + target, + sentence, + blockId, + } ), + { + feature: 'jetpack-ai-breve', + } + ) + .then( response => { + try { + const suggestions = JSON.parse( response ); + dispatch( { + type: 'SET_SUGGESTIONS', + id, + feature, + suggestions, + blockId, + } ); + } catch ( e ) { + dispatch( { + type: 'SET_SUGGESTIONS_LOADING', + id, + feature, + blockId, + loading: false, + } ); + } + } ) + .catch( () => { + dispatch( { + type: 'SET_SUGGESTIONS_LOADING', + id, + feature, + blockId, + loading: false, + } ); + } ); + }; +} diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts index 5af40c075ce6c..fbb06d81dae4c 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/reducer.ts @@ -94,4 +94,61 @@ export function popover( return state; } -export default combineReducers( { popover, configuration } ); +export function suggestions( + state = {}, + action: { + type: string; + id: string; + feature: string; + blockId: string; + loading: boolean; + suggestions?: { + revisedText: string; + suggestion: string; + }; + } +) { + const { id, feature, blockId } = action ?? {}; + const current = { ...state }; + const currentBlock = current?.[ feature ]?.[ blockId ] ?? {}; + const currentItem = current?.[ feature ]?.[ blockId ]?.[ id ] || {}; + + switch ( action.type ) { + case 'SET_SUGGESTIONS_LOADING': { + return { + ...current, + [ feature ]: { + ...( current[ feature ] ?? {} ), + [ blockId ]: { + ...currentBlock, + [ id ]: { + ...currentItem, + loading: action.loading, + }, + }, + }, + }; + } + + case 'SET_SUGGESTIONS': { + return { + ...current, + [ feature ]: { + ...( current[ feature ] ?? {} ), + [ blockId ]: { + ...currentBlock, + [ id ]: { + ...currentItem, + loading: false, + suggestions: action.suggestions, + }, + }, + }, + }; + } + } + + return state; +} + +export default combineReducers( { popover, configuration, suggestions } ); diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts index 3ca8adb85aba7..1e0ac738b5b79 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/store/selectors.ts @@ -34,3 +34,17 @@ export function isFeatureEnabled( state: BreveState, feature: string ) { export function getDisabledFeatures( state: BreveState ) { return state.configuration?.disabled; } + +export function getSuggestionsLoading( + state: BreveState, + { feature, id, blockId }: { feature: string; id: string; blockId: string } +) { + return state.suggestions?.[ feature ]?.[ blockId ]?.[ id ]?.loading; +} + +export function getSuggestions( + state: BreveState, + { feature, id, blockId }: { feature: string; id: string; blockId: string } +) { + return state.suggestions?.[ feature ]?.[ blockId ]?.[ id ]?.suggestions; +} diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/types.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/types.ts index 63332f02f4007..4c08cc6dadb9a 100644 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/types.ts +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/types.ts @@ -19,6 +19,17 @@ export type BreveState = { enabled?: boolean; disabled?: Array< string >; }; + suggestions?: { + [ key: string ]: { + [ key: string ]: { + loading: boolean; + suggestions: { + html: string; + suggestion: string; + }; + }; + }; + }; }; export type BreveSelect = { @@ -29,6 +40,27 @@ export type BreveSelect = { isProofreadEnabled: () => boolean; isFeatureEnabled: ( feature: string ) => boolean; getDisabledFeatures: () => Array< string >; + getSuggestionsLoading: ( { + feature, + id, + blockId, + }: { + feature: string; + id: string; + blockId: string; + } ) => boolean; + getSuggestions: ( { + feature, + id, + blockId, + }: { + feature: string; + id: string; + blockId: string; + } ) => { + html: string; + suggestion: string; + }; }; export type BreveDispatch = { @@ -39,6 +71,13 @@ export type BreveDispatch = { decreasePopoverLevel: () => void; toggleProofread: ( force?: boolean ) => void; toggleFeature: ( feature: string, force?: boolean ) => void; + setSuggestions: ( suggestions: { + id: string; + feature: string; + target: string; + sentence: string; + blockId: string; + } ) => void; }; export type BreveFeatureConfig = { @@ -51,6 +90,7 @@ export type BreveFeatureConfig = { export type BreveFeature = { config: BreveFeatureConfig; highlight: ( text: string ) => Array< HighlightedText >; + dictionary?: { [ key: string ]: string }; }; export type HighlightedText = { diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getRequestMessages.js b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getRequestMessages.js deleted file mode 100644 index 726d70d5edc56..0000000000000 --- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getRequestMessages.js +++ /dev/null @@ -1,38 +0,0 @@ -/** - * Internal dependencies - */ -import config from '../dictionaries/dictionaries-config.js'; - -// Map of types to the corresponding AI Assistant request type. -const requestTypeMap = { - phrase: 'breve-phrase', - 'long-sentence': 'breve-long-sentence', - weasel: 'breve-weasel', - adverb: 'breve-adverb', - adjective: 'breve-adjective', -}; - -export const getRequestMessages = ( { target, type, sentence, blockText } ) => { - const dictConfig = config.dictionaries[ type ]; - - if ( ! dictConfig ) { - throw new Error( `Invalid type: ${ type }.` ); - } - - const paragraph = blockText; - const replacement = - dictConfig.type === 'key-value' ? dictConfig.dictionary[ target.toLowerCase() ] || '' : null; - - return [ - { - role: 'jetpack-ai', - context: { - type: requestTypeMap[ type ], - target, - replacement, - sentence, - paragraph, - }, - }, - ]; -}; diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getRequestMessages.ts b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getRequestMessages.ts new file mode 100644 index 0000000000000..179535b57d3a6 --- /dev/null +++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/breve/utils/getRequestMessages.ts @@ -0,0 +1,36 @@ +/** + * Internal dependencies + */ +import { getBlockContent } from '@wordpress/blocks'; +import { select } from '@wordpress/data'; +import features from '../features/index.js'; + +// Map of types to the corresponding AI Assistant request type. +const requestTypeMap = { + 'complex-words': 'breve-phrase', + // TODO: Return as soon start to support these features + // 'ambiguous-words': 'breve-weasel', + // 'long-sentence': 'breve-long-sentence', + // adverb: 'breve-adverb', + // adjective: 'breve-adjective', +}; + +export const getRequestMessages = ( { feature, target, sentence, blockId } ) => { + const block = select( 'core/block-editor' ).getBlock( blockId ); + const html = getBlockContent( block ); + const dictionary = features?.find?.( ftr => ftr.config.name === feature )?.dictionary || {}; + const replacement = dictionary[ target.toLowerCase() ] || null; + + return [ + { + role: 'jetpack-ai' as const, + context: { + type: requestTypeMap[ feature ], + target, + sentence, + html, + replacement, + }, + }, + ]; +}; diff --git a/projects/plugins/jetpack/package.json b/projects/plugins/jetpack/package.json index fc848ce7bc1f3..8d42a3fad0f79 100644 --- a/projects/plugins/jetpack/package.json +++ b/projects/plugins/jetpack/package.json @@ -86,6 +86,7 @@ "component-uid": "0.0.2", "cookie": "0.4.1", "copy-webpack-plugin": "11.0.0", + "crypto-js": "4.2.0", "debug": "4.3.4", "email-validator": "2.0.4", "events": "3.3.0", From 742a6b23a41b9a19aea37c1382853e7f663584b6 Mon Sep 17 00:00:00 2001 From: dkmyta <43220201+dkmyta@users.noreply.github.com> Date: Wed, 17 Jul 2024 13:34:43 -0700 Subject: [PATCH 163/254] Protect: Add IP block and allow list toggles (#38265) * Add individual controls for toggling the IP block and allow lists. * Add block and allow list toggles * Remove missed export * Disable save when lists haven't changed * Unify styling * Add changelog entry * Add handling for when WAF is disabled * Fix tests * Add changelog * Optimize * Remove is_enabled check that is no longer necessary * Revert test changes * Revert WAF changes * changelog * Remove WAF changelog * Adjustments * Remove block list disable useEffect and ensure consistency of lists in disabled state --------- Co-authored-by: Nate Weller --- ...dd-protect-ip-block-and-allow-list-toggles | 4 + .../js/components/firewall-header/index.jsx | 27 +- .../src/js/hooks/use-waf-data/index.jsx | 29 +- .../protect/src/js/routes/firewall/index.jsx | 464 ++++++++---------- .../src/js/routes/firewall/styles.module.scss | 23 +- 5 files changed, 270 insertions(+), 277 deletions(-) create mode 100644 projects/plugins/protect/changelog/add-protect-ip-block-and-allow-list-toggles diff --git a/projects/plugins/protect/changelog/add-protect-ip-block-and-allow-list-toggles b/projects/plugins/protect/changelog/add-protect-ip-block-and-allow-list-toggles new file mode 100644 index 0000000000000..f8b16d94b75e2 --- /dev/null +++ b/projects/plugins/protect/changelog/add-protect-ip-block-and-allow-list-toggles @@ -0,0 +1,4 @@ +Significance: minor +Type: added + +Adds dedicated WAF allow and block list toggles diff --git a/projects/plugins/protect/src/js/components/firewall-header/index.jsx b/projects/plugins/protect/src/js/components/firewall-header/index.jsx index 5ca34c7f74931..50cbb0af60d2c 100644 --- a/projects/plugins/protect/src/js/components/firewall-header/index.jsx +++ b/projects/plugins/protect/src/js/components/firewall-header/index.jsx @@ -98,17 +98,19 @@ const FirewallSubheadingContent = ( { className, text = '', popover = false, chi }; const FirewallSubheading = ( { + jetpackWafIpBlockListEnabled, + jetpackWafIpAllowListEnabled, hasRequiredPlan, automaticRulesAvailable, - jetpackWafIpList, jetpackWafAutomaticRules, bruteForceProtectionIsEnabled, wafSupported, } ) => { - const allRules = wafSupported && jetpackWafAutomaticRules && jetpackWafIpList; - const automaticRules = wafSupported && jetpackWafAutomaticRules && ! jetpackWafIpList; - const manualRules = wafSupported && ! jetpackWafAutomaticRules && jetpackWafIpList; - const noRules = wafSupported && ! jetpackWafAutomaticRules && ! jetpackWafIpList; + const allowOrBlockListEnabled = jetpackWafIpBlockListEnabled || jetpackWafIpAllowListEnabled; + const allRules = wafSupported && jetpackWafAutomaticRules && allowOrBlockListEnabled; + const automaticRules = wafSupported && jetpackWafAutomaticRules && ! allowOrBlockListEnabled; + const manualRules = wafSupported && ! jetpackWafAutomaticRules && allowOrBlockListEnabled; + const noRules = wafSupported && ! jetpackWafAutomaticRules && ! allowOrBlockListEnabled; return ( <> @@ -157,7 +159,8 @@ const FirewallHeader = ( { hasRequiredPlan, automaticRulesEnabled, automaticRulesAvailable, - jetpackWafIpList, + jetpackWafIpBlockListEnabled, + jetpackWafIpAllowListEnabled, jetpackWafAutomaticRules, bruteForceProtectionIsEnabled, wafSupported, @@ -193,7 +196,8 @@ const FirewallHeader = ( { ) ) } { const { config: { jetpackWafAutomaticRules, - jetpackWafIpList, + jetpackWafIpBlockListEnabled, + jetpackWafIpAllowListEnabled, standaloneMode, automaticRulesAvailable, bruteForceProtection, @@ -269,7 +275,8 @@ const ConnectedFirewallHeader = () => { hasRequiredPlan={ hasRequiredPlan } automaticRulesEnabled={ jetpackWafAutomaticRules } automaticRulesAvailable={ automaticRulesAvailable } - jetpackWafIpList={ jetpackWafIpList } + jetpackWafIpBlockListEnabled={ jetpackWafIpBlockListEnabled } + jetpackWafIpAllowListEnabled={ jetpackWafIpAllowListEnabled } jetpackWafAutomaticRules={ jetpackWafAutomaticRules } bruteForceProtectionIsEnabled={ bruteForceProtection } wafSupported={ wafSupported } diff --git a/projects/plugins/protect/src/js/hooks/use-waf-data/index.jsx b/projects/plugins/protect/src/js/hooks/use-waf-data/index.jsx index c82694fc967a7..08c8b21523be7 100644 --- a/projects/plugins/protect/src/js/hooks/use-waf-data/index.jsx +++ b/projects/plugins/protect/src/js/hooks/use-waf-data/index.jsx @@ -74,16 +74,32 @@ const useWafData = () => { }, [ ensureModuleIsEnabled, refreshWaf, setWafIsUpdating, waf.config.jetpackWafAutomaticRules ] ); /** - * Toggle Manual Rules + * Toggle IP Allow List * - * Flips the switch on the WAF IP list feature, and then refreshes the data. + * Flips the switch on the WAF IP allow list feature, and then refreshes the data. */ - const toggleManualRules = useCallback( () => { + const toggleIpAllowList = useCallback( () => { setWafIsUpdating( true ); - return API.updateWaf( { jetpack_waf_ip_list: ! waf.config.jetpackWafIpList } ) + return API.updateWaf( { + jetpack_waf_ip_allow_list_enabled: ! waf.config.jetpackWafIpAllowListEnabled, + } ) .then( refreshWaf ) .finally( () => setWafIsUpdating( false ) ); - }, [ refreshWaf, setWafIsUpdating, waf.config.jetpackWafIpList ] ); + }, [ refreshWaf, setWafIsUpdating, waf.config.jetpackWafIpAllowListEnabled ] ); + + /** + * Toggle IP Block List + * + * Flips the switch on the WAF IP block list feature, and then refreshes the data. + */ + const toggleIpBlockList = useCallback( () => { + setWafIsUpdating( true ); + return API.updateWaf( { + jetpack_waf_ip_block_list_enabled: ! waf.config.jetpackWafIpBlockListEnabled, + } ) + .then( refreshWaf ) + .finally( () => setWafIsUpdating( false ) ); + }, [ refreshWaf, setWafIsUpdating, waf.config.jetpackWafIpBlockListEnabled ] ); /** * Toggle Brute Force Protection @@ -152,7 +168,8 @@ const useWafData = () => { refreshWaf, toggleWaf, toggleAutomaticRules, - toggleManualRules, + toggleIpAllowList, + toggleIpBlockList, toggleBruteForceProtection, toggleShareData, toggleShareDebugData, diff --git a/projects/plugins/protect/src/js/routes/firewall/index.jsx b/projects/plugins/protect/src/js/routes/firewall/index.jsx index 923f4d1cd425b..8b7b58391de6e 100644 --- a/projects/plugins/protect/src/js/routes/firewall/index.jsx +++ b/projects/plugins/protect/src/js/routes/firewall/index.jsx @@ -11,8 +11,8 @@ import { useProductCheckoutWorkflow } from '@automattic/jetpack-connection'; import { ExternalLink, Popover } from '@wordpress/components'; import { useDispatch } from '@wordpress/data'; import { createInterpolateElement } from '@wordpress/element'; -import { __, sprintf, _n } from '@wordpress/i18n'; -import { Icon, arrowLeft, closeSmall } from '@wordpress/icons'; +import { __, sprintf } from '@wordpress/i18n'; +import { Icon, closeSmall } from '@wordpress/icons'; import moment from 'moment'; import { useCallback, useEffect, useState, useMemo } from 'react'; import API from '../../api'; @@ -38,7 +38,8 @@ const FirewallPage = () => { const { config: { jetpackWafAutomaticRules, - jetpackWafIpList, + jetpackWafIpBlockListEnabled, + jetpackWafIpAllowListEnabled, jetpackWafIpBlockList, jetpackWafIpAllowList, automaticRulesAvailable, @@ -51,9 +52,10 @@ const FirewallPage = () => { displayUpgradeBadge, wafSupported, isUpdating, - stats: { ipAllowListCount, ipBlockListCount, automaticRulesLastUpdated }, + stats: { automaticRulesLastUpdated }, toggleAutomaticRules, - toggleManualRules, + toggleIpAllowList, + toggleIpBlockList, toggleBruteForceProtection, toggleWaf, updateConfig, @@ -82,25 +84,19 @@ const FirewallPage = () => { */ const [ formState, setFormState ] = useState( { jetpack_waf_automatic_rules: jetpackWafAutomaticRules, - jetpack_waf_ip_list: jetpackWafIpList, + jetpack_waf_ip_block_list_enabled: jetpackWafIpBlockListEnabled, + jetpack_waf_ip_allow_list_enabled: jetpackWafIpAllowListEnabled, jetpack_waf_ip_block_list: jetpackWafIpBlockList, jetpack_waf_ip_allow_list: jetpackWafIpAllowList, brute_force_protection: bruteForceProtection, } ); - /** - * Form Is Submitting State - * - * @member {boolean} formIsSubmitting - Whether or not the form is submitting. - */ const [ formIsSubmitting, setFormIsSubmitting ] = useState( false ); + const [ ipAllowListIsUpdating, setIpAllowListIsUpdating ] = useState( false ); + const [ ipBlockListIsUpdating, setIpBlockListIsUpdating ] = useState( false ); - /** - * Show Manual Rules State - * - * @member {boolean} showManualRules Whether or not to display the manual rules sub-section. - */ - const [ showManualRules, setShowManualRules ] = useState( false ); + const ipAllowListHasChanges = formState.jetpack_waf_ip_allow_list !== jetpackWafIpAllowList; + const ipBlockListHasChanges = formState.jetpack_waf_ip_block_list !== jetpackWafIpBlockList; /** * Get a custom error message based on the error code. @@ -159,24 +155,53 @@ const FirewallPage = () => { ); /** - * Save WAF Changes + * Save IP Allow List Changes * * Updates the WAF settings with the current form state values. * * @returns void */ - const saveChanges = useCallback( () => { + const saveIpAllowListChanges = useCallback( () => { setFormIsSubmitting( true ); + setIpAllowListIsUpdating( true ); updateConfig( formState ) .then( () => setNotice( { type: 'success', duration: SUCCESS_NOTICE_DURATION, - message: __( 'Changes saved.', 'jetpack-protect' ), + message: __( 'Allow list changes saved.', 'jetpack-protect' ), } ) ) .catch( handleApiError ) - .finally( () => setFormIsSubmitting( false ) ); + .finally( () => { + setFormIsSubmitting( false ); + setIpAllowListIsUpdating( false ); + } ); + }, [ updateConfig, formState, handleApiError, setNotice ] ); + + /** + * Save IP Block List Changes + * + * Updates the WAF settings with the current form state values. + * + * @returns void + */ + const saveIpBlockListChanges = useCallback( () => { + setFormIsSubmitting( true ); + setIpBlockListIsUpdating( true ); + updateConfig( formState ) + .then( () => + setNotice( { + type: 'success', + duration: SUCCESS_NOTICE_DURATION, + message: __( 'Block list changes saved.', 'jetpack-protect' ), + } ) + ) + .catch( handleApiError ) + .finally( () => { + setFormIsSubmitting( false ); + setIpBlockListIsUpdating( false ); + } ); }, [ updateConfig, formState, handleApiError, setNotice ] ); /** @@ -288,49 +313,80 @@ const FirewallPage = () => { }, [ formState, toggleBruteForceProtection, handleApiError, setNotice, recordEvent ] ); /** - * Handle Manual Rules Change + * Handle IP Allow List Change * - * Toggles the WAF's manual rules option. + * Toggles the WAF's IP allow list option. * * @returns void */ - const handleManualRulesChange = useCallback( () => { - const newManualRulesStatus = ! formState.jetpack_waf_ip_list; + const handleIpAllowListChange = useCallback( () => { + const newIpAllowListStatus = ! formState.jetpack_waf_ip_allow_list_enabled; setFormIsSubmitting( true ); - setFormState( { ...formState, jetpack_waf_ip_list: newManualRulesStatus } ); - toggleManualRules() + setIpAllowListIsUpdating( true ); + setFormState( { ...formState, jetpack_waf_ip_allow_list_enabled: newIpAllowListStatus } ); + toggleIpAllowList() .then( () => { setNotice( { type: 'success', duration: SUCCESS_NOTICE_DURATION, - message: newManualRulesStatus - ? __( 'Manual rules are active.', 'jetpack-protect' ) + message: newIpAllowListStatus + ? __( 'Allow list active.', 'jetpack-protect' ) : __( - 'Manual rules are disabled.', + 'Allow list is disabled.', 'jetpack-protect', /* dummy arg to avoid bad minification */ 0 ), } ); recordEvent( - newManualRulesStatus - ? 'jetpack_protect_manual_rules_enabled' - : 'jetpack_protect_manual_rules_disabled' + newIpAllowListStatus + ? 'jetpack_protect_ip_allow_list_enabled' + : 'jetpack_protect_ip_allow_list_disabled' ); } ) .catch( handleApiError ) - .finally( () => setFormIsSubmitting( false ) ); - }, [ formState, toggleManualRules, handleApiError, setNotice, recordEvent ] ); + .finally( () => { + setFormIsSubmitting( false ); + setIpAllowListIsUpdating( false ); + } ); + }, [ formState, toggleIpAllowList, handleApiError, setNotice, recordEvent ] ); /** - * Handle Show Manual Rules Click + * Handle IP Block List Change * - * Toggles showManualRules. + * Toggles the WAF's IP block list option. * * @returns void */ - const handleShowManualRulesClick = useCallback( () => { - setShowManualRules( ! showManualRules ); - }, [ showManualRules, setShowManualRules ] ); + const handleIpBlockListChange = useCallback( () => { + const newIpBlockListStatus = ! formState.jetpack_waf_ip_block_list_enabled; + setFormIsSubmitting( true ); + setIpBlockListIsUpdating( true ); + setFormState( { ...formState, jetpack_waf_ip_block_list_enabled: newIpBlockListStatus } ); + toggleIpBlockList() + .then( () => { + setNotice( { + type: 'success', + duration: SUCCESS_NOTICE_DURATION, + message: newIpBlockListStatus + ? __( 'Block list is active.', 'jetpack-protect' ) + : __( + 'Block list is disabled.', + 'jetpack-protect', + /* dummy arg to avoid bad minification */ 0 + ), + } ); + recordEvent( + newIpBlockListStatus + ? 'jetpack_protect_ip_block_list_enabled' + : 'jetpack_protect_ip_block_list_disabled' + ); + } ) + .catch( handleApiError ) + .finally( () => { + setFormIsSubmitting( false ); + setIpBlockListIsUpdating( false ); + } ); + }, [ formState, toggleIpBlockList, handleApiError, setNotice, recordEvent ] ); /** * Handle Close Popover Click @@ -377,14 +433,16 @@ const FirewallPage = () => { if ( ! isUpdating ) { setFormState( { jetpack_waf_automatic_rules: jetpackWafAutomaticRules, - jetpack_waf_ip_list: jetpackWafIpList, + jetpack_waf_ip_block_list_enabled: jetpackWafIpBlockListEnabled, + jetpack_waf_ip_allow_list_enabled: jetpackWafIpAllowListEnabled, jetpack_waf_ip_block_list: jetpackWafIpBlockList, jetpack_waf_ip_allow_list: jetpackWafIpAllowList, brute_force_protection: bruteForceProtection, } ); } }, [ - jetpackWafIpList, + jetpackWafIpBlockListEnabled, + jetpackWafIpAllowListEnabled, jetpackWafIpBlockList, jetpackWafIpAllowList, jetpackWafAutomaticRules, @@ -576,218 +634,117 @@ const FirewallPage = () => { ); - const bruteForceAllowListSettings = ( - <> -
      -